diff --git a/Det/RichDet/include/RichDet/DeRichBase.h b/Det/RichDet/include/RichDet/DeRichBase.h
index 0023cab263f3c7633a34fd0f5c4eb28bbf20cf8b..99abff850da8341eda0a076c28b972e48207530f 100644
--- a/Det/RichDet/include/RichDet/DeRichBase.h
+++ b/Det/RichDet/include/RichDet/DeRichBase.h
@@ -21,10 +21,6 @@
 
 #pragma once
 
-// STL
-#include <memory>
-#include <mutex>
-
 // Gaudi
 #include "GaudiKernel/MsgStream.h"
 
@@ -41,9 +37,17 @@
 // Utils
 #include "RichUtils/RichSIMDTypes.h"
 
+// STL
+#include <memory>
+#include <mutex>
+
 class DeRichSystem;
 
-// Some defines for debug/verbose messages...
+// Some defines for info/debug/verbose messages...
+#ifndef _ri_info
+#  define _ri_info                                                                                                     \
+    if ( msgLevel( MSG::INFO ) ) info()
+#endif
 #ifndef _ri_debug
 #  define _ri_debug                                                                                                    \
     if ( msgLevel( MSG::DEBUG ) ) debug()
diff --git a/Det/RichDet/include/RichDet/DeRichBeamPipe.h b/Det/RichDet/include/RichDet/DeRichBeamPipe.h
index 0592831c8843caedc698492a5c9e2b4ac84d1f5e..8e6ab8facc275a3564d3848c22be7aa99c14f8b1 100644
--- a/Det/RichDet/include/RichDet/DeRichBeamPipe.h
+++ b/Det/RichDet/include/RichDet/DeRichBeamPipe.h
@@ -19,10 +19,6 @@
 
 #pragma once
 
-// STL
-#include <array>
-#include <memory>
-
 // Utils
 #include "RichUtils/RichSIMDTypes.h"
 
@@ -34,6 +30,11 @@
 // Local
 #include "RichDet/DeRichBase.h"
 
+// STL
+#include <array>
+#include <memory>
+#include <type_traits>
+
 // External declarations
 extern const CLID CLID_DERichBeamPipe;
 
@@ -54,8 +55,7 @@ public:
   /// Enum describing the various possible types of intersection
   enum BeamPipeIntersectionType {
     NoIntersection = 0, ///< Did not intersect the beam pipe at all
-    FrontAndBackFace,   ///< Entered via the front face and left via the back face (i.e. totally
-                        ///< inside the beampipe)
+    FrontAndBackFace,   ///< Entered via the front face and left via the back face
     FrontFaceAndCone,   ///< Entered via the front face and left via the cone surface
     BackFaceAndCone,    ///< Entered via the cone surafece and left via the backface
     ConeOnly            ///< Entered via the cone surafece and left via the cone surface
@@ -157,8 +157,9 @@ public:
    */
   template <typename POINT,
             typename std::enable_if<!std::is_arithmetic<typename POINT::Scalar>::value>::type* = nullptr>
-  inline decltype( auto ) testForIntersection( const POINT& start, const POINT& end,
-                                               typename POINT::Scalar::mask_type mask ) const {
+  inline decltype( auto )
+  testForIntersection( const POINT& start, const POINT& end,
+                       typename POINT::Scalar::mask_type mask = typename POINT::Scalar::mask_type{true} ) const {
 
     using namespace LHCb::SIMD;
 
@@ -243,7 +244,19 @@ private:
     }
   }
 
-private: // data
+public:
+  // access pipe parmaeters
+
+  inline auto        startRadius() const noexcept { return m_startRadius; }
+  inline auto        endRadius() const noexcept { return m_endRadius; }
+  inline const auto& startAxisPoint() const noexcept { return m_startPGlo; }
+  inline const auto& endAxisPoint() const noexcept { return m_endPGlo; }
+  inline auto        startZ() const noexcept { return startAxisPoint().z(); }
+  inline auto        endZ() const noexcept { return endAxisPoint().z(); }
+
+private:
+  // data
+
   /// SIMD Global position on the z axis for the start of the beampipe
   Rich::SIMD::Point<Rich::SIMD::DefaultScalarFP> m_startPGloSIMD;
 
@@ -256,13 +269,21 @@ private: // data
   /// SIMD 'toLocal' transformation
   Rich::SIMD::Transform3D<Rich::SIMD::DefaultScalarFP> m_toLocalMatrixSIMD;
 
-private: // data
+private:
+  // data
+
   /// The RICH detector
   Rich::DetectorType m_rich = Rich::InvalidDetector;
 
   /// A copy of the beam pipe cone that is solid (not hollow)
   std::unique_ptr<SolidCons> m_localCone;
 
+  /// Cone radius at start z
+  double m_startRadius{};
+
+  /// Cone radius at end z
+  double m_endRadius{};
+
   /// Global position on the z axis for the start of the beampipe
   Gaudi::XYZPoint m_startPGlo;
 
diff --git a/Det/RichDet/src/Lib/DeRichBeamPipe.cpp b/Det/RichDet/src/Lib/DeRichBeamPipe.cpp
index b185eedd585d01ef4a69741192ea405d6c5e805d..80d7266613c2291f793376f52832a653a3f1585b 100644
--- a/Det/RichDet/src/Lib/DeRichBeamPipe.cpp
+++ b/Det/RichDet/src/Lib/DeRichBeamPipe.cpp
@@ -59,10 +59,16 @@ StatusCode DeRichBeamPipe::initialize() {
     if ( solid->typeName() == "SolidCons" ) {
       const auto* coneSolid = dynamic_cast<const SolidCons*>( solid );
       if ( coneSolid ) {
+
+        // cone radii
+        m_startRadius = coneSolid->outerRadiusAtMinusZ();
+        m_endRadius   = coneSolid->outerRadiusAtPlusZ();
+        _ri_debug << "Start R      = " << m_startRadius << endmsg;
+        _ri_debug << "End R        = " << m_endRadius << endmsg;
+
         // make the cone object
         const auto cname = ( Rich::Rich1 == m_rich ? "LocalRich1Cone" : "LocalRich2Cone" );
-        m_localCone = std::make_unique<SolidCons>( cname, coneSolid->zHalfLength(), coneSolid->outerRadiusAtMinusZ(),
-                                                   coneSolid->outerRadiusAtPlusZ() );
+        m_localCone      = std::make_unique<SolidCons>( cname, coneSolid->zHalfLength(), m_startRadius, m_endRadius );
 
         // beam pipe size tolerance factor for 'fast' check
         const auto tolF = ( Rich::Rich1 == m_rich ? 2.0 : 1.75 );
@@ -70,8 +76,6 @@ StatusCode DeRichBeamPipe::initialize() {
         // get the start and end radius square + some tolerence factor
         const auto startRad2 = tolF * std::pow( coneSolid->outerRadiusAtMinusZ(), 2 );
         const auto endRad2   = tolF * std::pow( coneSolid->outerRadiusAtPlusZ(), 2 );
-        _ri_debug << "Start R^2    = " << startRad2 << endmsg;
-        _ri_debug << "End R^2      = " << endRad2 << endmsg;
 
         // Start and end point of the cone axis in local coordinates
         const auto startPLoc = Gaudi::XYZPoint( 0, 0, -( coneSolid->zHalfLength() ) );
diff --git a/Det/RichDet/src/Lib/DeRichGasRadiator.cpp b/Det/RichDet/src/Lib/DeRichGasRadiator.cpp
index c4a11e84810e0244a92ed564b4976818cd910dab..7b82b6e7d14c13e476bd9cd8f96691f0833f2862 100644
--- a/Det/RichDet/src/Lib/DeRichGasRadiator.cpp
+++ b/Det/RichDet/src/Lib/DeRichGasRadiator.cpp
@@ -186,6 +186,9 @@ StatusCode DeRichGasRadiator::updateProperties() {
 
 StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& momVect, TabulatedProperty* tabProp,
                                                     const SmartRef<Condition>& gasParamCond ) const {
+
+  _ri_debug << endmsg << "In calcSellmeirRefIndex : Condition " << gasParamCond.path() << endmsg;
+
   // test the tab property pointer
   if ( !tabProp ) {
     error() << "nullptr TabulatedProperty pointer" << endmsg;
@@ -197,6 +200,7 @@ StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& m
   if ( gasParamCond ) {
     curPressure = gasParamCond->param<double>( "Pressure" ) * 0.001 * Gaudi::Units::bar; // convert to bar
     curTemp     = gasParamCond->param<double>( "Temperature" ) * Gaudi::Units::kelvin;
+    _ri_verbo << "Using gasParamCond Condition for P/T info" << endmsg;
   } else // use the old conditions
   {
     if ( m_pressureCond ) {
@@ -310,6 +314,12 @@ StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& m
     GasMolWeight            = param<double>( "GasMolWeightParam" );
     GasRhoCur =
         ( RhoEffectiveSellDefault * ( curPressure / Gaudi::Units::STP_Pressure ) * ( RefTemperature / curTemp ) );
+
+    _ri_debug << "Classic E1=" << SellE1 << " E2=" << SellE2 << " F1=" << SellF1 << " F2=" << SellF2
+              << " MolW=" << GasMolWeight << endmsg;
+    _ri_debug << "RefTemperature=" << RefTemperature << " RefPressure=" << Gaudi::Units::STP_Pressure << endmsg;
+    _ri_debug << "RhoEffectiveSellDefault " << RhoEffectiveSellDefault << " RhoCur=" << GasRhoCur << endmsg;
+
   } else if ( CF4_SingleTerm == curRadMedium ) {
 
     AParam      = param<double>( "CF4SellMeirAFactor" );
@@ -321,6 +331,7 @@ StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& m
       EphyZSq = ( MomConvWave / aWaveZero ) * ( MomConvWave / aWaveZero );
     }
     GasRhoCur = ( ( curPressure / Gaudi::Units::STP_Pressure ) * ( Gaudi::Units::STP_Temperature / curTemp ) );
+
   } else if ( C3F8_SingleTerm == curRadMedium ) {
 
     AParam      = param<double>( "C3F8SellMeirAFactor" );
@@ -332,6 +343,7 @@ StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& m
       EphyZSq = ( MomConvWave / aWaveZero ) * ( MomConvWave / aWaveZero );
     }
     GasRhoCur = ( ( curPressure / Gaudi::Units::STP_Pressure ) * ( Gaudi::Units::STP_Temperature / curTemp ) );
+
   } else if ( mixture == curRadMedium ) {
 
     // same as above but need to get the papameters from the CondDB
@@ -341,6 +353,7 @@ StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& m
       aWaveZeroVect  = compCond->paramVect<double>( "SellMeirLambdaZeroFactors" );
       MomConvWave    = param<double>( "PhotonMomentumWaveLengthConvFact" );
       GasRhoCur      = ( ( curPressure / Gaudi::Units::STP_Pressure ) * ( Gaudi::Units::STP_Temperature / curTemp ) );
+
       if ( numOfGases > aWaveZeroVect.size() ) {
         error() << "aWaveZeroVect size != # Gases=" << numOfGases << endmsg;
         return StatusCode::FAILURE;
@@ -365,7 +378,7 @@ StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& m
       const double pfe  = ( ( SellF1 / ( ( SellE1 * SellE1 ) - ( epho * epho ) ) ) +
                            ( SellF2 / ( ( SellE2 * SellE2 ) - ( epho * epho ) ) ) );
       const double cpfe = SellLorGasFac * ( GasRhoCur / GasMolWeight ) * pfe;
-      nMinus1           = scaleFactor * ( std::sqrt( ( 1.0 + 2 * cpfe ) / ( 1.0 - cpfe ) ) - 1.0 );
+      nMinus1           = scaleFactor * ( std::sqrt( ( 1.0 + ( 2.0 * cpfe ) ) / ( 1.0 - cpfe ) ) - 1.0 );
     } else if ( ( CF4_SingleTerm == curRadMedium ) || ( C3F8_SingleTerm == curRadMedium ) ) {
 
       nMinus1 =
@@ -388,6 +401,8 @@ StatusCode DeRichGasRadiator::calcSellmeirRefIndex( const std::vector<double>& m
 
     } // end if on ref index options
 
+    _ri_verbo << " -> En=" << e << " RefIndx=" << ( nMinus1 + 1.0 ) << endmsg;
+
     aTable.emplace_back( e, 1.0 + nMinus1 );
 
   } // end loop over bins of photon energy
@@ -423,6 +438,9 @@ StatusCode DeRichGasRadiator::updateHltProperties() {
     return StatusCode::FAILURE;
   }
 
+  _ri_debug << "HLT PhotonMinimumEnergy= " << photonEnergyLowLimit << " PhotonMaximumEnergy=" << photonEnergyHighLimit
+            << " PhotonEnergyNumBins=" << photonEnergyNumBins << endmsg;
+
   std::vector<double> photonMomentumVect;
   StatusCode          sc =
       prepareMomentumVector( photonMomentumVect, photonEnergyLowLimit, photonEnergyHighLimit, photonEnergyNumBins );
diff --git a/Kernel/LHCbMath/include/LHCbMath/SIMDTypes.h b/Kernel/LHCbMath/include/LHCbMath/SIMDTypes.h
index c805a5d102effadedc89db353254dce101e8b2f8..d0dddc35acc2b8e960beda95a5ef253c715aa708 100644
--- a/Kernel/LHCbMath/include/LHCbMath/SIMDTypes.h
+++ b/Kernel/LHCbMath/include/LHCbMath/SIMDTypes.h
@@ -623,4 +623,15 @@ namespace LHCb {
 namespace std {
   using LHCb::SIMD::VE::round;
   using LHCb::SIMD::VE::sqrt;
+  // mimic clamp for SIMD floating point types
+  inline auto clamp( LHCb::SIMD::FPF x, const LHCb::SIMD::FPF& low, const LHCb::SIMD::FPF& high ) {
+    x( x < low )  = low;
+    x( x > high ) = high;
+    return x;
+  }
+  inline auto clamp( LHCb::SIMD::FPD x, const LHCb::SIMD::FPD& low, const LHCb::SIMD::FPD& high ) {
+    x( x < low )  = low;
+    x( x > high ) = high;
+    return x;
+  }
 } // namespace std
diff --git a/Rich/RichDetectors/include/RichDetectors/Rich1.h b/Rich/RichDetectors/include/RichDetectors/Rich1.h
index 3df5696f955f6a8124d501b96403699f7d2d8902..1c84cf278abb5805d0da2a7aba1c762ecd1bce0d 100644
--- a/Rich/RichDetectors/include/RichDetectors/Rich1.h
+++ b/Rich/RichDetectors/include/RichDetectors/Rich1.h
@@ -60,10 +60,6 @@ namespace Rich::Detector {
       /// Default constructor
       Rich1() = default;
 
-      /// temporary constructor that takes both old and dd4hep detelem
-      template <typename OLDRICH>
-      Rich1( const DETELEM& deRich, const OLDRICH& oldRich ) : RichX<BASEDETELEM>( deRich, oldRich ) {}
-
       /// Constructor from detector element
       Rich1( const DETELEM& deRich ) : RichX<BASEDETELEM>( deRich ) {}
 
@@ -98,18 +94,7 @@ namespace Rich::Detector {
         MsgStream log( msgSvc, Name );
         log << MSG::DEBUG << "Creating instance from " << (void*)&r1 << " name='" << r1.name() << "' loc='"
             << DeRichLocations::location<DETELEM>() << "' access()=" << (void*)r1.access() << endmsg;
-        if constexpr ( std::is_base_of_v<DetectorElement, DETELEM> ) {
-          return Rich1{r1};
-        } else {
-          // whilst comissioning dd4hep 'side' load old DetDesc class
-          // pass to constructor as well as dd4hep object for comparison etc.
-          log << MSG::WARNING << "Some functionality is still being accessed from DetDesc DeRich1" << endmsg;
-          auto detSvc = Gaudi::svcLocator()->service<IDataProviderSvc>( "DetectorDataSvc" );
-          assert( detSvc );
-          const auto oldr1 = Gaudi::Utils::getFromTS<DeRich1>( detSvc, DeRichLocations::location<DeRich1>() );
-          assert( oldr1 );
-          return Rich1{r1, *oldr1};
-        }
+        return Rich1{r1};
       }
 
       /// Creates a condition derivation for the given key
diff --git a/Rich/RichDetectors/include/RichDetectors/Rich1Gas.h b/Rich/RichDetectors/include/RichDetectors/Rich1Gas.h
index 6be8d7e492d1229d9ac89913b0d7075f51a99a0b..d0e61ec24aaa8305ad25ebf0f0b3ece6a3ece052 100644
--- a/Rich/RichDetectors/include/RichDetectors/Rich1Gas.h
+++ b/Rich/RichDetectors/include/RichDetectors/Rich1Gas.h
@@ -25,8 +25,9 @@
 #ifdef USE_DD4HEP
 #  include "Detector/Rich1/DetElemAccess/DeRich1.h"
 #  include "Detector/Rich1/DetElemAccess/DeRich1RadiatorGas.h"
+#else
+#  include "RichDet/DeRichRadiator.h"
 #endif
-#include "RichDet/DeRichRadiator.h"
 
 // STL
 #include <array>
@@ -65,11 +66,7 @@ namespace Rich::Detector {
 
       /// Constructor from Det Elem
       template <typename RAD>
-      Rich1Gas( const RAD& rad ) : Radiator<DETELEM>( rad ) {}
-
-      /// temporary constructor that takes both old and dd4hep detelem
-      template <typename RAD, typename OLDRAD>
-      Rich1Gas( const RAD& rad, const OLDRAD& oldrad ) : Radiator<BASEDETELEM>( rad, oldrad ) {}
+      Rich1Gas( const RAD& rad ) : Base( rad ) {}
 
     public:
       // messaging
@@ -98,19 +95,7 @@ namespace Rich::Detector {
         MsgStream log( msgSvc, Name );
         log << MSG::DEBUG << "Creating instance from " << (void*)&g << " name='" << g.name() << "' loc='"
             << DeRichLocations::location<DETELEM>( Rich::Rich1Gas ) << "' access()=" << (void*)g.access() << endmsg;
-        if constexpr ( std::is_base_of_v<DetectorElement, DETELEM> ) {
-          return Rich1Gas{g};
-        } else {
-          // whilst comissioning dd4hep 'side' load old DetDesc class
-          // pass to constructor as well as dd4hep object for comparison etc.
-          log << MSG::WARNING << "Some functionality is still being accessed from DetDesc DeRich1Gas" << endmsg;
-          auto detSvc = Gaudi::svcLocator()->service<IDataProviderSvc>( "DetectorDataSvc" );
-          assert( detSvc );
-          const auto oldg = Gaudi::Utils::getFromTS<DeRichRadiator>(
-              detSvc, DeRichLocations::location<DeRichRadiator>( Rich::Rich1Gas ) );
-          assert( oldg );
-          return Rich1Gas{g, *oldg};
-        }
+        return Rich1Gas{g};
       }
 
 #ifdef USE_DD4HEP
@@ -146,12 +131,10 @@ namespace Rich::Detector {
 
   } // namespace details
 
-  using OldRich1Gas = details::Rich1Gas<DeRichRadiator, DeRichRadiator>;
 #ifdef USE_DD4HEP
-  using DD4Rich1Gas = details::Rich1Gas<LHCb::Detector::DeRich1Gas, DeRichRadiator>;
-  using Rich1Gas    = DD4Rich1Gas;
+  using Rich1Gas = details::Rich1Gas<LHCb::Detector::DeRich1Gas, LHCb::Detector::detail::DeRichRadiatorObject>;
 #else
-  using Rich1Gas = OldRich1Gas;
+  using Rich1Gas = details::Rich1Gas<DeRichRadiator, DeRichRadiator>;
 #endif
 
 } // namespace Rich::Detector
diff --git a/Rich/RichDetectors/include/RichDetectors/Rich2.h b/Rich/RichDetectors/include/RichDetectors/Rich2.h
index 63b09631b37096062d8c00d6cd2a43de1da9684d..28a81f0a6a6ee12902d19a2e7ef54b81649e3d62 100644
--- a/Rich/RichDetectors/include/RichDetectors/Rich2.h
+++ b/Rich/RichDetectors/include/RichDetectors/Rich2.h
@@ -60,10 +60,6 @@ namespace Rich::Detector {
       /// Default constructor
       Rich2() = default;
 
-      /// temporary constructor that takes both old and dd4hep detelem
-      template <typename OLDRICH>
-      Rich2( const DETELEM& deRich, const OLDRICH& oldRich ) : RichX<BASEDETELEM>( deRich, oldRich ) {}
-
       /// Constructor from detector element
       Rich2( const DETELEM& deRich ) : RichX<BASEDETELEM>( deRich ) {}
 
@@ -80,7 +76,7 @@ namespace Rich::Detector {
       }
 
       /// Overload ostream operator
-      friend auto& operator<<( std::ostream& s, const Rich2<DETELEM, BASEDETELEM>& r ) {
+      friend inline auto& operator<<( std::ostream& s, const Rich2<DETELEM, BASEDETELEM>& r ) {
         s << Name << " ";
         return r.fillStream( s );
       }
@@ -98,18 +94,7 @@ namespace Rich::Detector {
         MsgStream log( msgSvc, Name );
         log << MSG::DEBUG << "Creating instance from " << (void*)&r2 << " name='" << r2.name() << "' loc='"
             << DeRichLocations::location<DETELEM>() << "' access()=" << (void*)r2.access() << endmsg;
-        if constexpr ( std::is_base_of_v<DetectorElement, DETELEM> ) {
-          return Rich2{r2};
-        } else {
-          // whilst comissioning dd4hep 'side' load old DetDesc class
-          // pass to constructor as well as dd4hep object for comparison etc.
-          log << MSG::WARNING << "Some functionality is still being accessed from DetDesc DeRich2" << endmsg;
-          auto detSvc = Gaudi::svcLocator()->service<IDataProviderSvc>( "DetectorDataSvc" );
-          assert( detSvc );
-          const auto oldr2 = Gaudi::Utils::getFromTS<DeRich2>( detSvc, DeRichLocations::location<DeRich2>() );
-          assert( oldr2 );
-          return Rich2{r2, *oldr2};
-        }
+        return Rich2{r2};
       }
 
       /// Creates a condition derivation for the given key
diff --git a/Rich/RichDetectors/include/RichDetectors/Rich2Gas.h b/Rich/RichDetectors/include/RichDetectors/Rich2Gas.h
index 0d3c80e1d47e2df893e8cc6cb6576f6ed4cbc8ea..7715158edc7433e090f9bed2f3ea21b846be17b3 100644
--- a/Rich/RichDetectors/include/RichDetectors/Rich2Gas.h
+++ b/Rich/RichDetectors/include/RichDetectors/Rich2Gas.h
@@ -25,8 +25,9 @@
 #ifdef USE_DD4HEP
 #  include "Detector/Rich2/DetElemAccess/DeRich2.h"
 #  include "Detector/Rich2/DetElemAccess/DeRich2RadiatorGas.h"
+#else
+#  include "RichDet/DeRichRadiator.h"
 #endif
-#include "RichDet/DeRichRadiator.h"
 
 // STL
 #include <array>
@@ -65,11 +66,7 @@ namespace Rich::Detector {
 
       /// Constructor from Det Elem
       template <typename RAD>
-      Rich2Gas( const RAD& rad ) : Radiator<DETELEM>( rad ) {}
-
-      /// temporary constructor that takes both old and dd4hep detelem
-      template <typename RAD, typename OLDRAD>
-      Rich2Gas( const RAD& rad, const OLDRAD& oldrad ) : Radiator<BASEDETELEM>( rad, oldrad ) {}
+      Rich2Gas( const RAD& rad ) : Base( rad ) {}
 
     public:
       // messaging
@@ -98,19 +95,7 @@ namespace Rich::Detector {
         MsgStream log( msgSvc, Name );
         log << MSG::DEBUG << "Creating instance from " << (void*)&g << " name='" << g.name() << "' loc='"
             << DeRichLocations::location<DETELEM>( Rich::Rich2Gas ) << "' access()=" << (void*)g.access() << endmsg;
-        if constexpr ( std::is_base_of_v<DetectorElement, DETELEM> ) {
-          return Rich2Gas{g};
-        } else {
-          // whilst comissioning dd4hep 'side' load old DetDesc class
-          // pass to constructor as well as dd4hep object for comparison etc.
-          log << MSG::WARNING << "Some functionality is still being accessed from DetDesc DeRich2Gas" << endmsg;
-          auto detSvc = Gaudi::svcLocator()->service<IDataProviderSvc>( "DetectorDataSvc" );
-          assert( detSvc );
-          const auto oldg = Gaudi::Utils::getFromTS<DeRichRadiator>(
-              detSvc, DeRichLocations::location<DeRichRadiator>( Rich::Rich2Gas ) );
-          assert( oldg );
-          return Rich2Gas{g, *oldg};
-        }
+        return Rich2Gas{g};
       }
 
 #ifdef USE_DD4HEP
@@ -146,12 +131,10 @@ namespace Rich::Detector {
 
   } // namespace details
 
-  using OldRich2Gas = details::Rich2Gas<DeRichRadiator, DeRichRadiator>;
 #ifdef USE_DD4HEP
-  using DD4Rich2Gas = details::Rich2Gas<LHCb::Detector::DeRich2Gas, DeRichRadiator>;
-  using Rich2Gas    = DD4Rich2Gas;
+  using Rich2Gas = details::Rich2Gas<LHCb::Detector::DeRich2Gas, LHCb::Detector::detail::DeRichRadiatorObject>;
 #else
-  using Rich2Gas = OldRich2Gas;
+  using Rich2Gas = details::Rich2Gas<DeRichRadiator, DeRichRadiator>;
 #endif
 
 } // namespace Rich::Detector
diff --git a/Rich/RichDetectors/include/RichDetectors/RichBeamPipe.h b/Rich/RichDetectors/include/RichDetectors/RichBeamPipe.h
new file mode 100644
index 0000000000000000000000000000000000000000..7b91f3e8446768b6795f5c5749737136923803f5
--- /dev/null
+++ b/Rich/RichDetectors/include/RichDetectors/RichBeamPipe.h
@@ -0,0 +1,299 @@
+/*****************************************************************************\
+* (c) Copyright 2000-2022 CERN for the benefit of the LHCb Collaboration      *
+*                                                                             *
+* This software is distributed under the terms of the GNU General Public      *
+* Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING".   *
+*                                                                             *
+* In applying this licence, CERN does not waive the privileges and immunities *
+* granted to it by virtue of its status as an Intergovernmental Organization  *
+* or submit itself to any jurisdiction.                                       *
+\*****************************************************************************/
+
+#pragma once
+
+// LHCbMath
+#include "LHCbMath/FastMaths.h"
+#include "LHCbMath/SIMDTypes.h"
+
+// local
+#include "RichDetectors/Utilities.h"
+
+// STL
+#include <algorithm>
+#include <cassert>
+#include <cmath>
+#include <cstdint>
+#include <optional>
+#include <type_traits>
+#include <utility>
+
+namespace Rich::Detector {
+
+  /** Basic beampipe object for fast intersection checks
+   *  Simplied to a conical section around the z axis in global coordinates.
+   *  Strictly not 100% correct (slight tilt in RICH2) but good enough and
+   *  allows the checks to be fast without need for reference frame
+   *  transformations etc. */
+  class BeamPipe final {
+
+  public:
+    // types
+
+    /// Enum describing the various possible types of intersection
+    enum BeamPipeIntersectionType : std::uint8_t {
+      NoIntersection = 0, ///< Did not intersect the beam pipe at all
+      FrontAndBackFace,   ///< Entered via the front face and left via the back face
+      FrontFaceAndCone,   ///< Entered via the front face and left via the cone surface
+      BackFaceAndCone,    ///< Entered via the cone surafece and left via the backface
+      ConeOnly            ///< Entered via the cone surafece and left via the cone surface
+    };
+
+    /// SIMD array for beam intersection types
+    using SIMDBeamIntersects = Rich::SIMD::STDArray<BeamPipeIntersectionType>;
+
+    /// SIMD float type
+    using SIMDFP = Rich::SIMD::FP<Rich::SIMD::DefaultScalarFP>;
+
+  private:
+    /// Get the beam pipe R at the given z position
+    template <typename TYPE>
+    inline auto getRatZ( const TYPE z ) const noexcept {
+      // Use linear parameterisation  R = a.z + b
+      if constexpr ( std::is_arithmetic_v<TYPE> ) {
+        return ( scalar( m_a ) * z ) + scalar( m_b );
+      } else {
+        return ( m_a * z ) + m_b;
+      }
+    }
+
+    /// Propagate a given trajectory (POINT,VECTOR pair) to a given z
+    template <typename POINT, typename VECTOR, typename FP = typename POINT::Scalar>
+    inline auto propagateToZ( const POINT& ptn, const VECTOR& dir, const FP& z ) const noexcept {
+      // Distance in z
+      const auto zDiff = z - ptn.z();
+      // form new point at requested shift in z
+      return ptn + ( ( zDiff / dir.z() ) * dir );
+    }
+
+  public:
+    /// Constructor from conical section parameters
+    BeamPipe( const double startZ, const double endZ, //
+              const double startR, const double endR )
+        : m_startZ( startZ )
+        , m_endZ( endZ )
+        , m_startR2( startR * startR )
+        , m_endR2( endR * endR )
+        , m_zmin( startZ )
+        , m_zmax( endZ )
+        , m_r2min( startR * startR )
+        , m_r2max( endR * endR )
+        , m_rmin( startR )
+        , m_rmax( endR ) {
+      m_a = SIMDFP( m_rmin - m_rmax ) / SIMDFP( m_zmin - m_zmax );
+      m_b = SIMDFP( m_rmin ) - ( m_a * SIMDFP( m_zmin ) );
+    }
+
+    /// Constructor from a detector element object
+    template <typename DETELEM>
+    BeamPipe( const DETELEM& bp ) : BeamPipe( bp.startZ(), bp.endZ(), bp.startRadius(), bp.endRadius() ) {}
+
+  public:
+    /** Gets the intersection points for a given trajectory
+     *  for now only need to support scalar version here.
+     *  SIMD support could be added if/when needed */
+    inline auto intersectionPoints( const Gaudi::XYZPoint& start,      //
+                                    const Gaudi::XYZPoint& end,        //
+                                    Gaudi::XYZPoint&       entryPoint, //
+                                    Gaudi::XYZPoint&       exitPoint ) const {
+
+      // Default to fully outside the cone
+      BeamPipeIntersectionType intType = NoIntersection;
+
+      // direction vector
+      const auto dir = ( end - start );
+
+      // Track is represented by the linear equations   y(z) = m.z + c
+      //                                                x(z) = n.z + d
+      const auto zDiffInv = 1.0 / ( start.z() - end.z() );
+      const auto m        = ( start.y() - end.y() ) * zDiffInv;
+      const auto n        = ( start.x() - end.x() ) * zDiffInv;
+      const auto c        = start.y() - ( m * start.z() );
+      const auto d        = start.x() - ( n * start.z() );
+
+      // Compute z position at which P.O.C.A. occurs, clamped to valid z range
+      // computed by finding z which makes d(r^2)/dz = 0
+      // where r is the track radial distance from the z axis, i.e. r^2 = x^2 + y^2
+      const auto closestZ = std::clamp( -1.0 * ( ( d * n ) + ( m * c ) ) / ( ( n * n ) + ( m * m ) ), m_zmin, m_zmax );
+      // check the poca to see if we need to perform more detailed checks.
+      // get poca z position, clamped to the min max range for given RICH
+      const auto pocaPtn = propagateToZ( start, dir, closestZ );
+      const auto pocaR2  = std::pow( pocaPtn.x(), 2 ) + std::pow( pocaPtn.y(), 2 );
+      // Get beampipe R at this z position
+      const auto curPipeR  = getRatZ( closestZ );
+      const auto isfarAway = ( pocaR2 > ( curPipeR * curPipeR ) );
+      if ( !isfarAway ) {
+
+        // Cone distance from beam line R^2 = x^2 + y^2  is linear, R = a.z + b
+        // Functor to compute the intersection(s) (if they exist) with the beam pipe cone
+        // algorithm then solves for z when R^2 = x^2 + y^2 (track) which leads to a quadratic
+        // equation that either has two real solutions (when the track intersections the
+        // cone, or no real solutions when it does not.
+        // Returns a pair of z values for where the track crosses the sides, sorted in z.
+        // Note both values are optional, as even if there is a mathematical solution
+        // yield real values, if they outside the z range of the cone segment no value is returned.
+        // quadratic equation is    A.z^2 + B.z + C = 0
+        // where                    A = n^2 + m^2 - a^2
+        //                          B = 2( n.d - m.c - a.b )
+        //                          C = d^2 + c^2 - b^2
+        auto intersectConeSides = [&]() {
+          // could maybe cache some of the parameters here later on for performance..
+          const auto A = ( ( n * n ) + ( m * m ) - scalar( m_a * m_a ) );
+          const auto B = 2.0 * ( ( n * d ) + ( m * c ) - scalar( m_a * m_b ) );
+          const auto C = ( d * d ) + ( c * c ) - scalar( m_b * m_b );
+          // Do we have real solutions ?
+          const auto XX2 = ( B * B ) - ( 4.0 * A * C );
+          // return values are optional (i.e. no solutions are possible)
+          std::pair<std::optional<double>, std::optional<double>> z_vals;
+          if ( XX2 >= 0 ) {
+            const auto XX    = std::sqrt( XX2 );
+            const auto denom = 0.5 / A;
+            auto       z1    = ( -B - XX ) * denom;
+            auto       z2    = ( -B + XX ) * denom;
+            // ensure sorted
+            if ( z1 > z2 ) { std::swap( z1, z2 ); }
+            // only set the values if they are in the valid z range for the beam pipe
+            if ( z1 > m_zmin && z1 < m_zmax ) { z_vals.first = z1; }
+            if ( z2 > m_zmin && z2 < m_zmax ) { z_vals.second = z2; }
+          }
+          return z_vals;
+        };
+
+        // get the starting values for the entry and exit points
+        entryPoint = propagateToZ( start, dir, m_zmin );
+        exitPoint  = propagateToZ( start, dir, m_zmax );
+
+        // Are these points inside the cone radius at these points ?
+        const auto entryR2   = std::pow( entryPoint.x(), 2 ) + std::pow( entryPoint.y(), 2 );
+        const auto exitR2    = std::pow( exitPoint.x(), 2 ) + std::pow( exitPoint.y(), 2 );
+        const auto isInStart = entryR2 < m_r2min;
+        const auto isInEnd   = exitR2 < m_r2max;
+
+        if ( isInStart && isInEnd ) {
+          // fully inside the cone
+          intType = FrontAndBackFace;
+        } else if ( isInStart && !isInEnd ) {
+          const auto z_sides = intersectConeSides();
+          if ( z_sides.second.has_value() ) {
+            // hits front face and passes out through side
+            intType = FrontFaceAndCone;
+            // Move exit point to cone side intersection point
+            exitPoint = propagateToZ( start, dir, z_sides.second.value() );
+          }
+        } else if ( !isInStart && isInEnd ) {
+          const auto z_sides = intersectConeSides();
+          if ( z_sides.first.has_value() ) {
+            // hits side and passes out through end face
+            intType = BackFaceAndCone;
+            // Move entry point to cone side intersection point
+            entryPoint = propagateToZ( start, dir, z_sides.first.value() );
+          }
+        } else {
+          // test if the track hits the cone at all
+          const auto z_sides = intersectConeSides();
+          if ( z_sides.first.has_value() && z_sides.second.has_value() ) {
+            // goes in and out of the cone side
+            intType = ConeOnly;
+            // move both points
+            entryPoint = propagateToZ( start, dir, z_sides.first.value() );
+            exitPoint  = propagateToZ( start, dir, z_sides.second.value() );
+          } else {
+            // no intersections in the valid z range
+            entryPoint = {0, 0, 0};
+            exitPoint  = {0, 0, 0};
+          }
+        }
+
+      } else {
+        // track is far far away from beam pipe so skip any further checks
+        entryPoint = {0, 0, 0};
+        exitPoint  = {0, 0, 0};
+      }
+
+      return intType;
+    }
+
+    /** Tests if a given direction, given by start and end pints, intersects the pipe.
+     *  Similar to, but simplier than, intersectionPoints as it does not have to
+     *  provide the 3D intersection points, just if the trajectory intersects or not. */
+    template <typename POINT>
+    inline auto testForIntersection( const POINT& start, const POINT& end ) const {
+
+      // FP type (scalar or SIMD)
+      using FP = typename POINT::Scalar;
+
+      // direction vector
+      const auto dir = ( end - start );
+
+      // Track is represented by the linear equations   y(z) = m.z + c
+      //                                                x(z) = n.z + d
+      const auto zDiffInv = FP( 1.0 ) / ( start.z() - end.z() );
+      const auto m        = ( start.y() - end.y() ) * zDiffInv;
+      const auto n        = ( start.x() - end.x() ) * zDiffInv;
+      const auto c        = start.y() - ( m * start.z() );
+      const auto d        = start.x() - ( n * start.z() );
+
+      // Compute z position at which P.O.C.A. occurs, clamped to valid z range
+      // computed by finding z which makes d(r^2)/dz = 0
+      // where r is the track radial distance from the z axis, i.e. r^2 = x^2 + y^2
+      const auto closestZ = std::clamp( FP( -1.0 ) * ( ( d * n ) + ( m * c ) ) / ( ( n * n ) + ( m * m ) ), //
+                                        FP( m_zmin ), FP( m_zmax ) );
+
+      // Check R value at POCA to see if inside beam pipe
+      const auto pocaPtn  = propagateToZ( start, dir, closestZ );
+      const auto pocaR2   = ( pocaPtn.x() * pocaPtn.x() ) + ( pocaPtn.y() * pocaPtn.y() );
+      const auto curPipeR = getRatZ( closestZ );
+      return pocaR2 <= ( curPipeR * curPipeR );
+    }
+
+  private:
+    /// messaging
+    template <typename STREAM>
+    STREAM& fillStream( STREAM& s ) const {
+      return s << "{ BeamPipe |"
+               << " StartZ=" << m_zmin << " EndZ=" << m_zmax << " StartR=" << m_rmin << " EndR=" << m_rmax << " }";
+    }
+
+  public:
+    // messaging
+
+    /// Overload MsgStream operator
+    friend inline auto& operator<<( MsgStream& s, const BeamPipe& bp ) { return bp.fillStream( s ); }
+
+    /// Overload ostream operator
+    friend inline auto& operator<<( std::ostream& s, const BeamPipe& bp ) { return bp.fillStream( s ); }
+
+  private:
+    // data
+
+    /// z position of the start of the cone
+    SIMDFP m_startZ{};
+    /// z position of the end of the cone
+    SIMDFP m_endZ{};
+    /// Cone radius^2 at start z
+    SIMDFP m_startR2{};
+    /// Cone radius^2 at end z
+    SIMDFP m_endR2{};
+    // beam pipe cone parameterisation | R = a.z + b
+    SIMDFP m_a{};
+    SIMDFP m_b{};
+
+    // cache of scalar values
+    double m_zmin{};
+    double m_zmax{};
+    double m_r2min{};
+    double m_r2max{};
+    double m_rmin{};
+    double m_rmax{};
+  };
+
+} // namespace Rich::Detector
diff --git a/Rich/RichDetectors/include/RichDetectors/RichPD.h b/Rich/RichDetectors/include/RichDetectors/RichPD.h
index 4205c9420c30d4305ec0c2680f1a70394750a854..7384b13450ec501fe72cdfc9c4ed3d5cf6852a27 100644
--- a/Rich/RichDetectors/include/RichDetectors/RichPD.h
+++ b/Rich/RichDetectors/include/RichDetectors/RichPD.h
@@ -14,8 +14,10 @@
 // Detector description
 #ifdef USE_DD4HEP
 #  include "Detector/Rich/DeRichMapmt.h"
+#else
+#  include "RichDet/DeRichPD.h"
 #endif
-#include "RichDet/DeRichPD.h"
+
 // eventually should be moved elsewhere
 #include "RichDet/Rich1DTabProperty.h"
 
@@ -36,7 +38,6 @@
 // STL
 #include <algorithm>
 #include <cstdint>
-#include <optional>
 #include <ostream>
 #include <type_traits>
 
@@ -211,7 +212,7 @@ namespace Rich::Detector {
       toSIMDTrans( m_locToGloM, m_locToGloMSIMD );
       // parameters for SmartID -> global position
       using namespace LHCb::Detector::detail;
-      m_localZcoord = SIMDFP( dd4hep_param<FP>( "RhPMTPhCathodeZPos" ) +
+      m_localZcoord = SIMDFP( dd4hep_param<FP>( "RhPMTPhCathodeZPos" ) + dd4hep_param<FP>( "RhPMTQuartzThickness" ) +
                               ( FP( 0.5 ) * dd4hep_param<FP>( "RhPMTPhCathodeZThickness" ) ) );
       if ( isHType() ) {
         m_NumPixColFrac       = SIMDFP( FP( 0.5 ) * FP( dd4hep_param<int>( "RhGrandPMTNumPixelsInCol" ) - 1 ) );
@@ -242,8 +243,8 @@ namespace Rich::Detector {
       const auto p1   = localToGlobal() * refP;
       auto       vG   = p1 - p0;
       vG.SetX( 0 ); // only use (y,z) projection to compute rotation about x axis
-      const auto cosT = vG.Dot( refP ) / std::sqrt( vG.Mag2() );
-      return LHCb::Math::fast_acos( cosT );
+      const auto vGMag2 = vG.Mag2();
+      return ( vGMag2 > 0 ? LHCb::Math::fast_acos( vG.Dot( refP ) / std::sqrt( vGMag2 ) ) : 0.0 );
     }
     /// Computes the rotation of the PMT reference frame, around the PMT local frame Y axis, in the global Frame
     inline auto yAxisRotationInGlobal() const noexcept {
@@ -252,8 +253,8 @@ namespace Rich::Detector {
       const auto p1   = localToGlobal() * refP;
       auto       vG   = p1 - p0;
       vG.SetY( 0 ); // only use (x,z) projection to compute rotation about y axis
-      const auto cosT = vG.Dot( refP ) / std::sqrt( vG.Mag2() );
-      return LHCb::Math::fast_acos( cosT );
+      const auto vGMag2 = vG.Mag2();
+      return ( vGMag2 > 0 ? LHCb::Math::fast_acos( vG.Dot( refP ) / std::sqrt( vGMag2 ) ) : 0.0 );
     }
     /// Computes the rotation of the PMT reference frame, around the PMT local frame Z axis, in the global Frame
     inline auto zAxisRotationInGlobal() const noexcept {
@@ -262,8 +263,8 @@ namespace Rich::Detector {
       const auto p1   = localToGlobal() * refP;
       auto       vG   = p1 - p0;
       vG.SetZ( 0 ); // only use (x,y) projection to compute rotation about z axis
-      const auto cosT = vG.Dot( refP ) / std::sqrt( vG.Mag2() );
-      return LHCb::Math::fast_acos( cosT );
+      const auto vGMag2 = vG.Mag2();
+      return ( vGMag2 > 0 ? LHCb::Math::fast_acos( vG.Dot( refP ) / std::sqrt( vGMag2 ) ) : 0.0 );
     }
 
     /// Overload ostream operator
diff --git a/Rich/RichDetectors/include/RichDetectors/RichPDPanel.h b/Rich/RichDetectors/include/RichDetectors/RichPDPanel.h
index b3d42a8716ea89181a0a0a2d01bd7b0270714ec6..0228fe63cf341f4a24ac5b7f949ce7249dfe99e4 100644
--- a/Rich/RichDetectors/include/RichDetectors/RichPDPanel.h
+++ b/Rich/RichDetectors/include/RichDetectors/RichPDPanel.h
@@ -266,16 +266,20 @@ namespace Rich::Detector {
       // global <-> local transform with additional offset translation for each panel
       // Note logic here is cloned from DeRichPMTPanel class in RichDet
       {
-        const auto aPon       = localToGlobal() * GP{0, 0, m_zShift};
-        const auto sign       = ( ( m_rich == Rich::Rich1 && m_side == Rich::top ) || //
+        const auto aPon = localToGlobal() * GP{0, 0, m_zShift};
+        const auto sign = ( ( m_rich == Rich::Rich1 && m_side == Rich::top ) || //
                                     ( m_rich == Rich::Rich2 && m_side == Rich::left )
                                 ? 1
                                 : -1 );
-        const auto panelSizes = ( m_rich == Rich::Rich1                                        //
-                                      ? std::array{dd4hep_param<double>( "Rh1PhDetSupXSize" ), //
-                                                   dd4hep_param<double>( "Rh1PhDetSupYSize" )} //
-                                      : std::array{dd4hep_param<double>( "Rh2PDPanelSizeX" ),  //
-                                                   dd4hep_param<double>( "Rh2PDPanelSizeY" )} );
+        // const auto panelSizes =
+        //     ( m_rich == Rich::Rich1                                                                         //
+        //           ? std::array{FP( 2 ) * fabs( dd4hep_param<double>( "Rh1PMTModulePlaneXEdgeTop" ) ),       //
+        //                        FP( 2 ) * fabs( dd4hep_param<double>( "Rh1PMTModulePlaneYEdgeTop" ) )}       //
+        //           : std::array{FP( 2 ) * fabs( dd4hep_param<double>( "Rh2MixedPMTModulePlaneXEdgeLeft" ) ), //
+        //                        FP( 2 ) * fabs( dd4hep_param<double>( "Rh2MixedPMTModulePlaneYEdgeLeft" ) )} );
+        // for now hardcode parameters as per DetDesc
+        const auto panelSizes = ( m_rich == Rich::Rich1 ? std::array{1344.0, 621.5} //
+                                                        : std::array{678.0, 1344.0} );
         const auto aOffset    = fabs( FP( 0.5 ) * panelSizes[Rich::Rich1 == m_rich ? 1 : 0] );
         const auto detPlaneZ  = m_zShift;
         const auto localTranslation =
diff --git a/Rich/RichDetectors/include/RichDetectors/RichRadiator.h b/Rich/RichDetectors/include/RichDetectors/RichRadiator.h
index 80244e43fe81701d0b25f697c7a61a9c2d46c962..c9db58e2a105cb8efab66dfc84192228fc0dfd2c 100644
--- a/Rich/RichDetectors/include/RichDetectors/RichRadiator.h
+++ b/Rich/RichDetectors/include/RichDetectors/RichRadiator.h
@@ -14,8 +14,12 @@
 // Gaudi
 #include "GaudiKernel/SystemOfUnits.h"
 
-// RichDet
-#include "RichDet/DeRichRadiator.h"
+// Detector description
+#ifdef USE_DD4HEP
+#  include "Detector/Rich/DeRichRadiator.h"
+#else
+#  include "RichDet/DeRichRadiator.h"
+#endif
 
 // local
 #include "RichDetectors/Utilities.h"
@@ -53,21 +57,23 @@ namespace Rich::Detector {
       /// Default Constructor
       Radiator() = default;
 
-      /// Constructor from Det Elem
+#ifdef USE_DD4HEP
+      /// Constructor from DD4HEP
       template <typename DET>
       Radiator( const DET& rad )
           : m_radiatorID( rad.radiatorID() ) //
           , m_rich( rad.rich() )             //
-          , m_radiator( rad )                //
-          , m_refIndex( rad.refIndex() ) {}
-
-      /// Constructor from Det Elem and old object (for dd4hep comissioning)
-      template <typename DET, typename OLDDET>
-      Radiator( const DET& rad, const OLDDET& oldrad )
+          , m_radiator( rad.access() )
+          , m_refIndex( std::make_shared<const Rich::TabulatedFunction1D>( rad.GasRefIndex() ) ) {}
+#else
+      /// Constructor from DetDesc
+      template <typename DET>
+      Radiator( const DET& rad )
           : m_radiatorID( rad.radiatorID() ) //
           , m_rich( rad.rich() )             //
-          , m_radiator( oldrad )
-          , m_refIndex( std::make_shared<const Rich::TabulatedFunction1D>( rad.GasRefIndex() ) ) {}
+          , m_radiator( &rad )               //
+          , m_refIndex( rad.refIndex() ) {}
+#endif
 
     private:
       /// Get access to the underlying object
@@ -93,8 +99,7 @@ namespace Rich::Detector {
       }
 
     public:
-      // methods forwarded to Det Elem
-      // to be implemented locally eventually
+      // methods forwarded to the underlying Det Elem
 
       FORWARD_TO_DET_OBJ( intersectionPoints )
       FORWARD_TO_DET_OBJ( isInside )
@@ -117,7 +122,7 @@ namespace Rich::Detector {
       Rich::DetectorType m_rich = Rich::InvalidDetector;
 
       /// DetDesc panel object
-      Handle<DETELEM> m_radiator;
+      const DETELEM* m_radiator = nullptr;
 
       /// Refractive index
       std::shared_ptr<const Rich::TabulatedFunction1D> m_refIndex;
@@ -125,12 +130,10 @@ namespace Rich::Detector {
 
   } // namespace details
 
-  using OldRadiator = details::Radiator<DeRichRadiator>;
 #ifdef USE_DD4HEP
-  // using DD4Radiator = details::Radiator<...>;
-  using Radiator = OldRadiator; // TODO: Change for equivalent DD4HEP class
+  using Radiator = details::Radiator<LHCb::Detector::detail::DeRichRadiatorObject>;
 #else
-  using Radiator = OldRadiator;
+  using Radiator = details::Radiator<DeRichRadiator>;
 #endif
 
 } // namespace Rich::Detector
diff --git a/Rich/RichDetectors/include/RichDetectors/RichX.h b/Rich/RichDetectors/include/RichDetectors/RichX.h
index 88066d7da1b8e97872273ae891c518bdfd1bc3d4..1645c43b72ba66d46fe88ef1d7a9925f40802ede 100644
--- a/Rich/RichDetectors/include/RichDetectors/RichX.h
+++ b/Rich/RichDetectors/include/RichDetectors/RichX.h
@@ -35,6 +35,7 @@
 #include "RichUtils/ZipRange.h"
 
 // Local
+#include "RichDetectors/RichBeamPipe.h"
 #include "RichDetectors/RichMirror.h"
 #include "RichDetectors/RichPD.h"
 #include "RichDetectors/RichPDPanel.h"
@@ -81,8 +82,8 @@ namespace Rich::Detector {
       /// The PD type to use in public API
       using PD = Rich::Detector::PD;
 
-      /// @todo fix for dd4hep.
-      using BeamPipe = DeRichBeamPipe;
+      /// Beampipe
+      using BeamPipe = Rich::Detector::BeamPipe;
 
       /// type for SIMD ray tracing result
       using SIMDRayTResult = PDPanel::SIMDRayTResult;
@@ -141,8 +142,8 @@ namespace Rich::Detector {
       /// absorption length of the quartz gas window
       std::shared_ptr<TabFunc> m_gasWinAbsLength;
 
-      /// Beampipe object
-      Handle<BeamPipe> m_beampipe;
+      /// Owned beampipe object
+      std::unique_ptr<BeamPipe> m_beampipe;
 
     protected:
       // data
@@ -164,9 +165,8 @@ namespace Rich::Detector {
 
 #ifdef USE_DD4HEP
       /// Constructor from DD4HEP object
-      template <typename DET, typename OLDDET>
-      RichX( const DET& det, const OLDDET& olddet )
-          : m_type( det.rich() ), m_rich( det.access() ), m_beampipe( *olddet.beampipe() ) {
+      template <typename DET>
+      RichX( const DET& det ) : m_type( det.rich() ), m_rich( det.access() ) {
 
         // owned mirrors
         m_primaryMirrors   = convertMirrors( det.primaryMirrors() );
@@ -219,11 +219,26 @@ namespace Rich::Detector {
           m_nominalCentresOfCurvatureSIMD[side] = c;
         }
         m_sphMirrorRadiusSIMD = SIMDFP( det.sphMirrorRadius() );
+        // beampipe
+        using namespace LHCb::Detector::detail;
+        if ( Rich::Rich1 == m_type ) {
+          m_beampipe = std::make_unique<BeamPipe>( dd4hep_param<double>( "Rh1BeamPipeConeBeginInLHCbZ" ),
+                                                   dd4hep_param<double>( "Rh1BeamPipeConeEndInLHCbZ" ),
+                                                   dd4hep_param<double>( "Rh1BeamPipeConeOuterRad1" ),
+                                                   dd4hep_param<double>( "Rh1BeamPipeConeOuterRad2" ) );
+
+        } else {
+          const auto coneStartZ = dd4hep_param<double>( "Rh2BeamHoleConeZBeginInLHCb" );
+          const auto coneSizeZ  = dd4hep_param<double>( "Rh2BeamHoleConeZSize" );
+          m_beampipe            = std::make_unique<BeamPipe>( coneStartZ, coneStartZ + coneSizeZ,
+                                                   dd4hep_param<double>( "Rh2MirrBeamHoleConeUpstreamRadius" ),
+                                                   dd4hep_param<double>( "Rh2MirrBeamHoleConeDownstreamRadius" ) );
+        }
       }
 #else
       /// Constructor from DetDesc object
       template <typename DET>
-      RichX( const DET& det ) : m_type( det.rich() ), m_rich( &det ), m_beampipe( *det.beampipe() ) {
+      RichX( const DET& det ) : m_type( det.rich() ), m_rich( &det ) {
         // mirror parameters
         m_sphMirrorRadiusSIMD = det.sphMirrorRadiusSIMD();
         for ( const auto side : Rich::sides() ) {
@@ -250,6 +265,8 @@ namespace Rich::Detector {
         m_nominalSphMirrorRefl = det.nominalSphMirrorRefl();
         m_nominalSecMirrorRefl = det.nominalSecMirrorRefl();
         m_gasWinAbsLength      = det.gasWinAbsLength();
+        // beampipe
+        m_beampipe = std::make_unique<BeamPipe>( *det.beampipe() );
       }
 #endif
 
@@ -257,7 +274,10 @@ namespace Rich::Detector {
       // methods
 
       /// Get access to the underlying object
-      inline auto get() const noexcept { return m_rich; }
+      inline auto get() const noexcept {
+        assert( m_rich );
+        return m_rich;
+      }
 
       /// Creates wrapped instances of the mirror objects
       template <typename MIRRORS>
@@ -281,8 +301,11 @@ namespace Rich::Detector {
     public:
       // Accessors
 
-      /// Beam pipe
-      inline auto beampipe() const noexcept { return m_beampipe; }
+      /// Beampipe
+      inline const auto& beampipe() const noexcept {
+        assert( m_beampipe.get() );
+        return *m_beampipe.get();
+      }
 
       /// primary mirrors
       inline const auto& primaryMirrors() const noexcept { return m_primaryMirrors; }
@@ -466,26 +489,26 @@ namespace Rich::Detector {
       // ray tracing
 
       /// Ray trace a given direction with the given PD panel (scalar)
-      auto rayTrace( const Rich::Side          side,    //
-                     const Gaudi::XYZPoint&    pGlobal, //
-                     const Gaudi::XYZVector&   vGlobal, //
-                     const LHCb::RichTraceMode mode ) const {
+      inline auto rayTrace( const Rich::Side          side,    //
+                            const Gaudi::XYZPoint&    pGlobal, //
+                            const Gaudi::XYZVector&   vGlobal, //
+                            const LHCb::RichTraceMode mode ) const {
         return m_panels[side].detIntersect( pGlobal, vGlobal, mode );
       }
 
       /// Ray trace a given direction with the given PD panel (SIMD)
-      auto rayTrace( const Rich::Side              side,    //
-                     const Rich::SIMD::Point<FP>&  pGlobal, //
-                     const Rich::SIMD::Vector<FP>& vGlobal, //
-                     const LHCb::RichTraceMode     mode ) const {
+      inline auto rayTrace( const Rich::Side              side,    //
+                            const Rich::SIMD::Point<FP>&  pGlobal, //
+                            const Rich::SIMD::Vector<FP>& vGlobal, //
+                            const LHCb::RichTraceMode     mode ) const {
         return m_panels[side].detIntersectSIMD( pGlobal, vGlobal, mode );
       }
 
       /// Ray trace a given direction with the correct PD panel (SIMD)
-      PDPanel::RayTStructSIMD rayTrace( const Rich::SIMD::Sides&      sides,   //
-                                        const Rich::SIMD::Point<FP>&  pGlobal, //
-                                        const Rich::SIMD::Vector<FP>& vGlobal, //
-                                        const LHCb::RichTraceMode     mode ) const {
+      inline PDPanel::RayTStructSIMD rayTrace( const Rich::SIMD::Sides&      sides,   //
+                                               const Rich::SIMD::Point<FP>&  pGlobal, //
+                                               const Rich::SIMD::Vector<FP>& vGlobal, //
+                                               const LHCb::RichTraceMode     mode ) const {
         using namespace LHCb::SIMD;
 
         // If all sides are the same, shortcut to a single call
@@ -586,6 +609,7 @@ namespace Rich::Detector {
             }
           }
         }
+        s << " " << beampipe() << mend();
         using Names = std::vector<std::string>;
         // Yes, some CF4 parameters are being read from DeRich1. For some reason this is how things
         // are set up for DetDesc. Once DetDesc is dropped they can be moved back to DeRich2.
diff --git a/Rich/RichDetectors/src/component/RichDetectorTests.cpp b/Rich/RichDetectors/src/component/RichDetectorTests.cpp
index f404cd23ab72ef1d0b827c9736c478e81c899d53..de875338808c91b78898f3acdbea27304aba41cb 100644
--- a/Rich/RichDetectors/src/component/RichDetectorTests.cpp
+++ b/Rich/RichDetectors/src/component/RichDetectorTests.cpp
@@ -27,8 +27,17 @@
 // DAQ
 #include "RichFutureDAQ/RichTel40CableMapping.h"
 
+// Utils
+#include "RichFutureUtils/RichDecodedData.h"
+#include "RichFutureUtils/RichSmartIDs.h"
+
+// Boost
+#include "boost/format.hpp"
+
 // STL
 #include <string>
+#include <utility>
+#include <vector>
 
 using namespace Rich::Future::DAQ;
 using namespace Rich::Detector;
@@ -158,6 +167,57 @@ namespace Rich::Future {
     }
   };
 
+  class TestRadiatorIntersections final
+      : public Consumer<void( const Detector::Rich1Gas&, const Detector::Rich2Gas& ),
+                        LHCb::DetDesc::usesBaseAndConditions<AlgBase<>, //
+                                                             Detector::Rich1Gas, Detector::Rich2Gas>> {
+  public:
+    /// Standard constructor
+    TestRadiatorIntersections( const std::string& name, ISvcLocator* pSvcLocator )
+        : Consumer( name, pSvcLocator,
+                    {KeyValue{"Rich1Gas", Detector::Rich1Gas::DefaultConditionKey},
+                     KeyValue{"Rich2Gas", Detector::Rich2Gas::DefaultConditionKey}} ) {}
+
+    StatusCode initialize() override {
+      return Consumer::initialize().andThen( [&] {
+        auto sc = setProperty( "OutputLevel", MSG::VERBOSE );
+        Detector::Rich1Gas::addConditionDerivation( this );
+        Detector::Rich2Gas::addConditionDerivation( this );
+        return sc;
+      } );
+    }
+
+    void operator()( const Detector::Rich1Gas& g1, const Detector::Rich2Gas& g2 ) const override {
+
+      using TrajData                     = std::pair<Gaudi::XYZPoint, Gaudi::XYZVector>;
+      const std::vector<TrajData> r1Traj = {{{4.8339, -29.1795, 990}, {0.00492716, -0.0340466, 1}},
+                                            {{-98.3335, 17.5605, 990}, {-0.160749, 0.0358936, 1}},
+                                            {{2.9279, -9.9783, 990}, {0.00322774, -0.0103524, 1}},
+                                            {{-40.8416, 14.2797, 990}, {-0.0587384, 0.00969204, 1}},
+                                            {{197.9, -182.212, 990}, {0.204637, -0.188133, 1}}};
+      const std::vector<TrajData> r2Traj = {{{-211.711, -52.4182, 9450}, {-0.0398052, -0.00558938, 1}},
+                                            {{877.05, 91.0958, 9500}, {0.285066, 0.00889497, 1}},
+                                            {{2933.82, -1818.83, 9450}, {0.44724, -0.189439, 1}},
+                                            {{1567.06, -230.439, 9500}, {0.280539, -0.0236485, 1}},
+                                            {{-671.092, -96.1549, 9450}, {-0.133261, -0.0101545, 1}}};
+
+      auto testIntersects = [&]( const auto& trajs, const auto& rad ) {
+        for ( const auto& t : trajs ) {
+          Gaudi::XYZPoint entry, exit;
+          const auto      ok = rad.intersectionPoints( t.first, t.second, entry, exit );
+          info() << endmsg;
+          info() << "Trajectory " << t.first << " " << t.second << endmsg;
+          info() << " -> intersects = " << ok << endmsg;
+          info() << " -> entry      = " << entry << endmsg;
+          info() << " -> exit       = " << exit << endmsg;
+        }
+      };
+
+      testIntersects( r1Traj, g1 );
+      testIntersects( r2Traj, g2 );
+    }
+  };
+
   // Example of algorithm accessing conditions
   struct TestConds
       : Gaudi::Functional::Consumer<void( const Rich::Detector::Condition& ),
@@ -175,9 +235,61 @@ namespace Rich::Future {
     }
   };
 
+  // Test RICH decoding and SmartIDs
+  struct TestDecodeAndIDs
+      : Gaudi::Functional::Consumer<void( const DAQ::DecodedData&, //
+                                          const Rich::Utils::RichSmartIDs& ),
+                                    LHCb::DetDesc::usesBaseAndConditions<AlgBase<>, Rich::Utils::RichSmartIDs>> {
+    // Standard constructor
+    TestDecodeAndIDs( const std::string& name, ISvcLocator* pSvcLocator )
+        : Consumer( name, pSvcLocator,
+                    // input data
+                    {KeyValue{"DecodedDataLocation", DAQ::DecodedDataLocation::Default},
+                     // input conditions data
+                     KeyValue{"RichSmartIDs", Rich::Utils::RichSmartIDs::DefaultConditionKey}} ) {}
+
+    StatusCode initialize() override {
+      return Consumer::initialize().andThen( [&] { Rich::Utils::RichSmartIDs::addConditionDerivation( this ); } );
+    }
+
+    void operator()( const DAQ::DecodedData& data, const Rich::Utils::RichSmartIDs& smartIDs ) const override {
+      // RICHes loop
+      for ( const auto& rD : data ) {
+        // RICH panels
+        for ( const auto& pD : rD ) {
+          // PD modules
+          for ( const auto& mD : pD ) {
+            // PDs per module
+            for ( const auto& PD : mD ) {
+              // PD ID
+              const auto pdID = PD.pdID();
+              if ( pdID.isValid() ) {
+                // loop over IDs
+                for ( const auto& id : PD.smartIDs() ) {
+                  const auto gPos = smartIDs.globalPosition( id );
+                  const auto lPos = smartIDs.globalToPDPanel( gPos );
+                  // print to 2 d.p. only to avoid small diffs between DetDesc and dd4hep
+                  info() << id
+                         << boost::format( " GPos=( %.2f, %.2f, %.2f ) LPos=( %.2f, %.2f, %.2f )" ) //
+                                % gPos.X() % gPos.Y() % gPos.Z()                                    //
+                                % lPos.X() % lPos.Y() % lPos.Z()
+                         << endmsg;
+                }
+              } else {
+                warning() << "INVALID PD ID " << pdID << endmsg;
+              }
+            }
+          }
+        }
+      }
+    }
+  };
+
   DECLARE_COMPONENT( TestDBAccess )
   DECLARE_COMPONENT( TestDerivedElem )
   DECLARE_COMPONENT( TestDerivedDetObjects )
+  DECLARE_COMPONENT( TestRadiatorIntersections )
   DECLARE_COMPONENT( TestConds )
+  DECLARE_COMPONENT( TestDecodeAndIDs )
 
 } // namespace Rich::Future
diff --git a/Rich/RichDetectors/tests/options/decode-and-spacepoints.py b/Rich/RichDetectors/tests/options/decode-and-spacepoints.py
new file mode 100644
index 0000000000000000000000000000000000000000..261809ff69df9a5d886659de4fcfab83b4cd183d
--- /dev/null
+++ b/Rich/RichDetectors/tests/options/decode-and-spacepoints.py
@@ -0,0 +1,88 @@
+###############################################################################
+# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration      #
+#                                                                             #
+# This software is distributed under the terms of the GNU General Public      #
+# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING".   #
+#                                                                             #
+# In applying this licence, CERN does not waive the privileges and immunities #
+# granted to it by virtue of its status as an Intergovernmental Organization  #
+# or submit itself to any jurisdiction.                                       #
+###############################################################################
+
+from Gaudi.Configuration import *
+from GaudiConfig.ControlFlow import seq
+from Configurables import CondDB, LHCbApp, GaudiSequencer, DDDBConf
+import os
+from Configurables import Rich__Future__TestDecodeAndIDs as TestDecodeAndIDs
+from Configurables import createODIN, FPEAuditor
+from Configurables import Gaudi__Hive__FetchDataFromFile as FetchDataFromFile
+
+# Event numbers
+nEvents = 1
+EventSelector().PrintFreq = 1
+
+# Just to initialise
+DDDBConf()
+CondDB()
+LHCbApp()
+
+# Auditors
+AuditorSvc().Auditors += ["FPEAuditor"]
+FPEAuditor().ActivateAt = ["Execute"]
+
+# The overall sequence. Filled below.
+all = GaudiSequencer("All", MeasureTime=False)
+
+# Finally set up the application
+app = ApplicationMgr(
+    TopAlg=[all],
+    EvtMax=nEvents,
+    ExtSvc=['ToolSvc', 'AuditorSvc'],
+    AuditAlgorithms=True)
+
+# Are we using DD4Hep ?
+from DDDB.CheckDD4Hep import UseDD4Hep
+if UseDD4Hep:
+    from Configurables import LHCb__Det__LbDD4hep__DD4hepSvc as DD4hepSvc
+    dd4hep = DD4hepSvc(DetectorList=["/world", "Rich1", "Rich2"])
+    app.ExtSvc += [dd4hep]
+
+# --------------------------------------------------------------------------------------
+
+# Fetch required data from file
+fetcher = FetchDataFromFile('FetchDSTData')
+fetcher.DataKeys = ['Trigger/RawEvent', 'Rich/RawEvent']
+all.Members += [fetcher]
+
+# Unpack the ODIN raw event
+from Configurables import LHCb__UnpackRawEvent as UnpackRawEvent
+
+all.Members += [
+    UnpackRawEvent(
+        'UnpackODIN',
+        BankTypes=['ODIN'],
+        RawEventLocation='Trigger/RawEvent',
+        RawBankLocations=['DAQ/RawBanks/ODIN'])
+]
+
+odinDecode = createODIN("ODINFutureDecode")
+all.Members += [odinDecode]
+
+if UseDD4Hep:
+    from Configurables import LHCb__Det__LbDD4hep__IOVProducer as IOVProducer
+    all.Members += [
+        IOVProducer(
+            "ReserveIOVDD4hep",
+            ODIN=odinDecode.ODIN,
+            SliceLocation="IOVLockDD4hep")
+    ]
+
+# decoding
+from Configurables import Rich__Future__RawBankDecoder as RichDecoder
+
+richDecode = RichDecoder("RichFutureDecode")
+#richDecode.OutputLevel = 1
+all.Members += [richDecode]
+
+# scalar positions
+all.Members += [TestDecodeAndIDs("TestDecodeAndIDs")]
diff --git a/Rich/RichDetectors/tests/options/instanciate.py b/Rich/RichDetectors/tests/options/instanciate.py
index bfe662d4214dc29ed8e73a68073ee646702ac7b7..5415441acf05c530b640aa2ff1a45e3d86afe878 100644
--- a/Rich/RichDetectors/tests/options/instanciate.py
+++ b/Rich/RichDetectors/tests/options/instanciate.py
@@ -19,7 +19,7 @@ from Configurables import Rich__Future__TestDBAccess as TestDBAccess
 from Configurables import Rich__Future__TestDerivedElem as TestDerivedElem
 from Configurables import Rich__Future__TestDerivedDetObjects as TestDerivedDetObjects
 from Configurables import Rich__Future__TestConds as TestConds
-from Configurables import createODIN
+from Configurables import createODIN, FPEAuditor
 from Configurables import Gaudi__Hive__FetchDataFromFile as FetchDataFromFile
 
 # Event numbers
@@ -31,12 +31,19 @@ DDDBConf()
 CondDB()
 LHCbApp()
 
+# Auditors
+AuditorSvc().Auditors += ["FPEAuditor"]
+FPEAuditor().ActivateAt = ["Execute"]
+
 # The overall sequence. Filled below.
 all = GaudiSequencer("All", MeasureTime=False)
 
 # Finally set up the application
 app = ApplicationMgr(
-    TopAlg=[all], EvtMax=nEvents, ExtSvc=['ToolSvc'], AuditAlgorithms=False)
+    TopAlg=[all],
+    EvtMax=nEvents,
+    ExtSvc=['ToolSvc', 'AuditorSvc'],
+    AuditAlgorithms=True)
 
 # Are we using DD4Hep ?
 from DDDB.CheckDD4Hep import UseDD4Hep
diff --git a/Rich/RichDetectors/tests/options/pmt-detdesc-data.py b/Rich/RichDetectors/tests/options/pmt-detdesc-data.py
index 4b5fbf99589e027db3b7d09530b52627d13d9826..14ff2ff923c72084c9bb600e2f26f2cf15578546 100644
--- a/Rich/RichDetectors/tests/options/pmt-detdesc-data.py
+++ b/Rich/RichDetectors/tests/options/pmt-detdesc-data.py
@@ -21,7 +21,10 @@ LHCbApp().DDDBtag = "upgrade/dddb-20220111"
 LHCbApp().CondDBtag = "master"  # Needed for yaml DB for now
 
 data = [
-    "PFN:root://eoslhcb.cern.ch//eos/lhcb/user/j/jonrob/data/MC/Upgrade/NewPMTsSE/13104011/XDST/Brunel-Std-Upgrade-PmtArrayUpdate-SmtID-Pythia8-lumi20-Aug2019-0-000-100.xdst"
+    # Older sample created using 2019 DDDB tag
+    # "PFN:root://eoslhcb.cern.ch//eos/lhcb/user/j/jonrob/data/MC/Upgrade/NewPMTsSE/13104011/XDST/Brunel-Std-Upgrade-PmtArrayUpdate-SmtID-Pythia8-lumi20-Aug2019-0-000-100.xdst"
+    # Private sample created by Bartosz using DDDB tag "upgrade/dddb-20220111"
+    "PFN:root://eoslhcb.cern.ch//eos/lhcb/user/j/jonrob/data/MC/Run3/BM-20220111-DDDB/30000000/XDST/Brunel_100.xdst"
 ]
 IOHelper('ROOT').inputFiles(data, clear=True)
 FileCatalog().Catalogs = ['xmlcatalog_file:out.xml']
diff --git a/Rich/RichDetectors/tests/options/radiator-intersections.py b/Rich/RichDetectors/tests/options/radiator-intersections.py
new file mode 100644
index 0000000000000000000000000000000000000000..c9ebf96552d6363065b38de8671031fe25a7e1ee
--- /dev/null
+++ b/Rich/RichDetectors/tests/options/radiator-intersections.py
@@ -0,0 +1,83 @@
+###############################################################################
+# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration      #
+#                                                                             #
+# This software is distributed under the terms of the GNU General Public      #
+# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING".   #
+#                                                                             #
+# In applying this licence, CERN does not waive the privileges and immunities #
+# granted to it by virtue of its status as an Intergovernmental Organization  #
+# or submit itself to any jurisdiction.                                       #
+###############################################################################
+
+# --------------------------------------------------------------------------------------
+
+from Gaudi.Configuration import *
+from GaudiConfig.ControlFlow import seq
+from Configurables import CondDB, LHCbApp, GaudiSequencer, DDDBConf
+import os
+from Configurables import Rich__Future__TestRadiatorIntersections as TestRadInters
+from Configurables import createODIN, FPEAuditor
+from Configurables import Gaudi__Hive__FetchDataFromFile as FetchDataFromFile
+
+# Event numbers
+nEvents = 1
+EventSelector().PrintFreq = 1
+
+# Just to initialise
+DDDBConf()
+CondDB()
+LHCbApp()
+
+# Auditors
+AuditorSvc().Auditors += ["FPEAuditor"]
+FPEAuditor().ActivateAt = ["Execute"]
+
+# The overall sequence. Filled below.
+all = GaudiSequencer("All", MeasureTime=False)
+
+# Finally set up the application
+app = ApplicationMgr(
+    TopAlg=[all],
+    EvtMax=nEvents,
+    ExtSvc=['ToolSvc', 'AuditorSvc'],
+    AuditAlgorithms=True)
+
+# Are we using DD4Hep ?
+from DDDB.CheckDD4Hep import UseDD4Hep
+if UseDD4Hep:
+    from Configurables import LHCb__Det__LbDD4hep__DD4hepSvc as DD4hepSvc
+    dd4hep = DD4hepSvc(DetectorList=["/world", "Rich1", "Rich2"])
+    app.ExtSvc += [dd4hep]
+
+# --------------------------------------------------------------------------------------
+
+# Fetch required data from file
+fetcher = FetchDataFromFile('FetchDSTData')
+fetcher.DataKeys = ['Trigger/RawEvent', 'Rich/RawEvent']
+all.Members += [fetcher]
+
+# Unpack the ODIN raw event
+from Configurables import LHCb__UnpackRawEvent as UnpackRawEvent
+
+all.Members += [
+    UnpackRawEvent(
+        'UnpackODIN',
+        BankTypes=['ODIN'],
+        RawEventLocation='Trigger/RawEvent',
+        RawBankLocations=['DAQ/RawBanks/ODIN'])
+]
+
+odinDecode = createODIN("ODINFutureDecode")
+all.Members += [odinDecode]
+
+if UseDD4Hep:
+    from Configurables import LHCb__Det__LbDD4hep__IOVProducer as IOVProducer
+    all.Members += [
+        IOVProducer(
+            "ReserveIOVDD4hep",
+            ODIN=odinDecode.ODIN,
+            SliceLocation="IOVLockDD4hep")
+    ]
+
+# Trivial Tests for DetDesc/DD4Hep access
+all.Members += [TestRadInters("TestRadIntersects")]
diff --git a/Rich/RichDetectors/tests/qmtest/test-decode-and-spacepoints.qmt b/Rich/RichDetectors/tests/qmtest/test-decode-and-spacepoints.qmt
new file mode 100644
index 0000000000000000000000000000000000000000..a81276c5d2ac05cff040ba6db7ff5b1eefe70eaf
--- /dev/null
+++ b/Rich/RichDetectors/tests/qmtest/test-decode-and-spacepoints.qmt
@@ -0,0 +1,25 @@
+<?xml version="1.0" ?><!DOCTYPE extension  PUBLIC '-//QM/2.3/Extension//EN'  'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'>
+<!--
+    (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration
+
+    This software is distributed under the terms of the GNU General Public
+    Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING".
+
+    In applying this licence, CERN does not waive the privileges and immunities
+    granted to it by virtue of its status as an Intergovernmental Organization
+    or submit itself to any jurisdiction.
+-->
+<extension class="GaudiTest.GaudiExeTest" kind="test">
+  <argument name="program"><text>gaudirun.py</text></argument>
+  <argument name="timeout"><integer>600</integer></argument>
+  <argument name="args"><set>
+    <text>$RICHDETECTORSROOT/tests/options/decode-and-spacepoints.py</text>
+    <text>$RICHDETECTORSROOT/tests/options/pmt-detdesc-data.py</text>
+  </set></argument>
+  <argument name="reference"><text>../refs/decode-and-spacepoints.ref</text></argument>
+  <argument name="error_reference"><text>../refs/empty.ref</text></argument>
+  <argument name="validator"><text>
+from GaudiConf.QMTest.LHCbExclusions import preprocessor
+validateWithReference(preproc = preprocessor)
+</text></argument>
+</extension>
diff --git a/Rich/RichDetectors/tests/qmtest/test-radiator-volume-intersections.qmt b/Rich/RichDetectors/tests/qmtest/test-radiator-volume-intersections.qmt
new file mode 100644
index 0000000000000000000000000000000000000000..d697cc850d02bc6ea94895b38ec511392b6d0e1d
--- /dev/null
+++ b/Rich/RichDetectors/tests/qmtest/test-radiator-volume-intersections.qmt
@@ -0,0 +1,25 @@
+<?xml version="1.0" ?><!DOCTYPE extension  PUBLIC '-//QM/2.3/Extension//EN'  'http://www.codesourcery.com/qm/dtds/2.3/-//qm/2.3/extension//en.dtd'>
+<!--
+    (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration
+
+    This software is distributed under the terms of the GNU General Public
+    Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING".
+
+    In applying this licence, CERN does not waive the privileges and immunities
+    granted to it by virtue of its status as an Intergovernmental Organization
+    or submit itself to any jurisdiction.
+-->
+<extension class="GaudiTest.GaudiExeTest" kind="test">
+  <argument name="program"><text>gaudirun.py</text></argument>
+  <argument name="timeout"><integer>600</integer></argument>
+  <argument name="args"><set>
+    <text>$RICHDETECTORSROOT/tests/options/radiator-intersections.py</text>
+    <text>$RICHDETECTORSROOT/tests/options/pmt-detdesc-data.py</text>
+  </set></argument>
+  <argument name="reference"><text>../refs/radiator-volume-intersections.ref</text></argument>
+  <argument name="error_reference"><text>../refs/empty.ref</text></argument>
+  <argument name="validator"><text>
+from GaudiConf.QMTest.LHCbExclusions import preprocessor
+validateWithReference(preproc = preprocessor)
+</text></argument>
+</extension>
diff --git a/Rich/RichDetectors/tests/refs/decode-and-spacepoints.ref b/Rich/RichDetectors/tests/refs/decode-and-spacepoints.ref
new file mode 100644
index 0000000000000000000000000000000000000000..7c2fb7155cf21cfa50f203a91b38d15d824fa3ab
--- /dev/null
+++ b/Rich/RichDetectors/tests/refs/decode-and-spacepoints.ref
@@ -0,0 +1,13134 @@
+ApplicationMgr    SUCCESS
+====================================================================================================================================
+====================================================================================================================================
+ApplicationMgr       INFO Application Manager Configured successfully
+DetectorPersist...   INFO Added successfully Conversion service:XmlCnvSvc
+DetectorDataSvc   SUCCESS Detector description database: git:/lhcb.xml
+All                  INFO Member list: Gaudi::Hive::FetchDataFromFile/FetchDSTData, LHCb::UnpackRawEvent/UnpackODIN, createODIN/ODINFutureDecode, Rich::Future::RawBankDecoder/RichFutureDecode, Rich::Future::TestDecodeAndIDs/TestDecodeAndIDs
+RndmGenSvc.Engine    INFO Generator engine type:CLHEP::RanluxEngine
+RndmGenSvc.Engine    INFO Current Seed:1234567 Luxury:3
+RndmGenSvc           INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine>
+EventClockSvc.F...   INFO Event times generated from 0 with steps of 0
+EventPersistenc...   INFO Added successfully Conversion service:RootCnvSvc
+ApplicationMgr       INFO Application Manager Initialized successfully
+ApplicationMgr       INFO Application Manager Started successfully
+EventSelector     SUCCESS Reading Event record 1. Record number within stream 1: 1
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1555.48, 1405.27 ) LPos=( 556.06, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 519.44, 1544.75, 1422.30 ) LPos=( 519.44, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 522.31, 1567.33, 1386.45 ) LPos=( 522.31, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 516.56, 1567.33, 1386.45 ) LPos=( 516.56, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 444.06, 1562.74, 1393.74 ) LPos=( 444.06, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 438.31, 1568.87, 1384.01 ) LPos=( 438.31, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 416.06, 1553.95, 1407.71 ) LPos=( 416.06, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 407.44, 1544.75, 1422.30 ) LPos=( 407.44, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 416.06, 1565.80, 1388.88 ) LPos=( 416.06, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 416.06, 1562.74, 1393.74 ) LPos=( 416.06, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 407.44, 1564.27, 1391.31 ) LPos=( 407.44, 605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 385.19, 1552.41, 1410.14 ) LPos=( 385.19, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 385.19, 1564.27, 1391.31 ) LPos=( 385.19, 605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 370.81, 1568.87, 1384.01 ) LPos=( 370.81, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 367.94, 1568.87, 1384.01 ) LPos=( 367.94, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 342.81, 1552.41, 1410.14 ) LPos=( 342.81, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 354.31, 1570.40, 1381.58 ) LPos=( 354.31, 617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 332.06, 1568.87, 1384.01 ) LPos=( 332.06, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 298.31, 1555.48, 1405.27 ) LPos=( 298.31, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 286.81, 1549.35, 1415.00 ) LPos=( 286.81, 577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 295.44, 1544.75, 1422.30 ) LPos=( 295.44, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 304.06, 1544.75, 1422.30 ) LPos=( 304.06, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 276.06, 1552.41, 1410.14 ) LPos=( 276.06, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 273.19, 1559.67, 1398.61 ) LPos=( 273.19, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, 1561.21, 1396.18 ) LPos=( 248.06, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 242.31, 1559.67, 1398.61 ) LPos=( 242.31, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, 1544.75, 1422.30 ) LPos=( 177.69, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 189.19, 1567.33, 1386.45 ) LPos=( 189.19, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 186.31, 1559.67, 1398.61 ) LPos=( 186.31, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 171.94, 1565.80, 1388.88 ) LPos=( 171.94, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 146.81, 1546.29, 1419.87 ) LPos=( 146.81, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1559.67, 1398.61 ) LPos=( 152.56, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, 1559.67, 1398.61 ) LPos=( 149.69, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, 1564.27, 1391.31 ) LPos=( 152.56, 605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, 1555.48, 1405.27 ) LPos=( 136.06, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 136.06, 1553.95, 1407.71 ) LPos=( 136.06, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, 1552.41, 1410.14 ) LPos=( 127.44, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 133.19, 1552.41, 1410.14 ) LPos=( 133.19, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1552.41, 1410.14 ) LPos=( 136.06, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, 1550.88, 1412.57 ) LPos=( 115.94, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1550.88, 1412.57 ) LPos=( 124.56, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 136.06, 1550.88, 1412.57 ) LPos=( 136.06, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1546.29, 1419.87 ) LPos=( 124.56, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1570.40, 1381.58 ) LPos=( 115.94, 617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1559.67, 1398.61 ) LPos=( 93.69, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1561.21, 1396.18 ) LPos=( 102.31, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, 1562.74, 1393.74 ) LPos=( 93.69, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, 1565.80, 1388.88 ) LPos=( 59.94, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, 1559.67, 1398.61 ) LPos=( 40.56, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 46.31, 1561.21, 1396.18 ) LPos=( 46.31, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1565.80, 1388.88 ) LPos=( 52.06, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1567.33, 1386.45 ) LPos=( 43.44, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1553.95, 1407.71 ) LPos=( 21.19, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1547.82, 1417.44 ) LPos=( 12.56, 574.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, 1562.74, 1393.74 ) LPos=( -3.94, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -43.44, 1555.48, 1405.27 ) LPos=( -43.44, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1546.29, 1419.87 ) LPos=( -31.94, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1562.74, 1393.74 ) LPos=( -34.81, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, 1550.88, 1412.57 ) LPos=( -68.56, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -62.81, 1555.48, 1405.27 ) LPos=( -62.81, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -59.94, 1555.48, 1405.27 ) LPos=( -59.94, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, 1559.67, 1398.61 ) LPos=( -74.31, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -59.94, 1561.21, 1396.18 ) LPos=( -59.94, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, 1568.87, 1384.01 ) LPos=( -62.81, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, 1570.40, 1381.58 ) LPos=( -65.69, 617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, 1555.48, 1405.27 ) LPos=( -115.94, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, 1559.67, 1398.61 ) LPos=( -133.19, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, 1567.33, 1386.45 ) LPos=( -130.31, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -149.69, 1568.87, 1384.01 ) LPos=( -149.69, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -152.56, 1567.33, 1386.45 ) LPos=( -152.56, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -174.81, 1565.80, 1388.88 ) LPos=( -174.81, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -217.19, 1555.48, 1405.27 ) LPos=( -217.19, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, 1544.75, 1422.30 ) LPos=( -227.94, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -227.94, 1546.29, 1419.87 ) LPos=( -227.94, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, 1555.48, 1405.27 ) LPos=( -258.81, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -267.44, 1553.95, 1407.71 ) LPos=( -267.44, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -270.31, 1546.29, 1419.87 ) LPos=( -270.31, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -276.06, 1565.80, 1388.88 ) LPos=( -276.06, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -304.06, 1553.95, 1407.71 ) LPos=( -304.06, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -283.94, 1559.67, 1398.61 ) LPos=( -283.94, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -339.94, 1547.82, 1417.44 ) LPos=( -339.94, 574.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -348.56, 1559.67, 1398.61 ) LPos=( -348.56, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -401.69, 1555.48, 1405.27 ) LPos=( -401.69, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -432.56, 1555.48, 1405.27 ) LPos=( -432.56, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -426.81, 1544.75, 1422.30 ) LPos=( -426.81, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -423.94, 1565.80, 1388.88 ) LPos=( -423.94, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -497.19, 1544.75, 1422.30 ) LPos=( -497.19, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -488.56, 1544.75, 1422.30 ) LPos=( -488.56, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -525.19, 1550.88, 1412.57 ) LPos=( -525.19, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -513.69, 1544.75, 1422.30 ) LPos=( -513.69, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -513.69, 1550.88, 1412.57 ) LPos=( -513.69, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -538.81, 1555.48, 1405.27 ) LPos=( -538.81, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -550.31, 1553.95, 1407.71 ) LPos=( -550.31, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -541.69, 1562.74, 1393.74 ) LPos=( -541.69, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 594.81, 1537.23, 1434.26 ) LPos=( 594.81, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 569.69, 1523.84, 1455.52 ) LPos=( 569.69, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 566.81, 1522.31, 1457.95 ) LPos=( 566.81, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 547.44, 1522.31, 1457.95 ) LPos=( 547.44, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 556.06, 1514.65, 1470.11 ) LPos=( 556.06, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1525.37, 1453.08 ) LPos=( 556.06, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 507.94, 1535.70, 1436.69 ) LPos=( 507.94, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 429.69, 1529.57, 1446.42 ) LPos=( 429.69, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 432.56, 1532.63, 1441.55 ) LPos=( 432.56, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 432.56, 1534.16, 1439.12 ) LPos=( 432.56, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 426.81, 1535.70, 1436.69 ) LPos=( 426.81, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 426.81, 1540.29, 1429.39 ) LPos=( 426.81, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 388.06, 1523.84, 1455.52 ) LPos=( 388.06, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 379.44, 1537.23, 1434.26 ) LPos=( 379.44, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 342.81, 1522.31, 1457.95 ) LPos=( 342.81, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 329.19, 1529.57, 1446.42 ) LPos=( 329.19, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 320.56, 1540.29, 1429.39 ) LPos=( 320.56, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 283.94, 1522.31, 1457.95 ) LPos=( 283.94, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 258.81, 1519.24, 1462.81 ) LPos=( 258.81, 521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 261.69, 1522.31, 1457.95 ) LPos=( 261.69, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 273.19, 1522.31, 1457.95 ) LPos=( 273.19, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1540.29, 1429.39 ) LPos=( 267.44, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 199.94, 1519.24, 1462.81 ) LPos=( 199.94, 521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 202.81, 1514.65, 1470.11 ) LPos=( 202.81, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 205.69, 1523.84, 1455.52 ) LPos=( 205.69, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 217.19, 1517.71, 1465.25 ) LPos=( 217.19, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 186.31, 1525.37, 1453.08 ) LPos=( 186.31, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, 1522.31, 1457.95 ) LPos=( 186.31, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 192.06, 1520.77, 1460.38 ) LPos=( 192.06, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 183.44, 1517.71, 1465.25 ) LPos=( 183.44, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 189.19, 1529.57, 1446.42 ) LPos=( 189.19, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, 1520.77, 1460.38 ) LPos=( 155.44, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1517.71, 1465.25 ) LPos=( 130.31, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 124.56, 1537.23, 1434.26 ) LPos=( 124.56, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, 1534.16, 1439.12 ) LPos=( 124.56, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 124.56, 1531.10, 1443.99 ) LPos=( 124.56, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 62.81, 1522.31, 1457.95 ) LPos=( 62.81, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1520.77, 1460.38 ) LPos=( 71.44, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 80.06, 1517.71, 1465.25 ) LPos=( 80.06, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, 1514.65, 1470.11 ) LPos=( 62.81, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 74.31, 1538.76, 1431.82 ) LPos=( 74.31, 557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -18.31, 1525.37, 1453.08 ) LPos=( -18.31, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, 1523.84, 1455.52 ) LPos=( -15.44, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1522.31, 1457.95 ) LPos=( -12.56, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1520.77, 1460.38 ) LPos=( -9.69, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, 1522.31, 1457.95 ) LPos=( -9.69, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1538.76, 1431.82 ) LPos=( -15.44, 557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1532.63, 1441.55 ) LPos=( -34.81, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, 1531.10, 1443.99 ) LPos=( -34.81, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1532.63, 1441.55 ) LPos=( -37.69, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, 1532.63, 1441.55 ) LPos=( -40.56, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, 1532.63, 1441.55 ) LPos=( -43.44, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1532.63, 1441.55 ) LPos=( -46.31, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, 1516.18, 1467.68 ) LPos=( -68.56, 515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, 1519.24, 1462.81 ) LPos=( -65.69, 521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -62.81, 1523.84, 1455.52 ) LPos=( -62.81, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1532.63, 1441.55 ) LPos=( -59.94, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1534.16, 1439.12 ) LPos=( -80.06, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1537.23, 1434.26 ) LPos=( -90.81, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1537.23, 1434.26 ) LPos=( -102.31, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1531.10, 1443.99 ) LPos=( -102.31, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, 1522.31, 1457.95 ) LPos=( -133.19, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1522.31, 1457.95 ) LPos=( -130.31, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1523.84, 1455.52 ) LPos=( -130.31, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, 1522.31, 1457.95 ) LPos=( -127.44, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1523.84, 1455.52 ) LPos=( -127.44, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, 1525.37, 1453.08 ) LPos=( -115.94, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, 1531.10, 1443.99 ) LPos=( -124.56, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, 1532.63, 1441.55 ) LPos=( -121.69, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -127.44, 1532.63, 1441.55 ) LPos=( -127.44, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1534.16, 1439.12 ) LPos=( -127.44, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -130.31, 1534.16, 1439.12 ) LPos=( -130.31, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, 1535.70, 1436.69 ) LPos=( -127.44, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, 1535.70, 1436.69 ) LPos=( -130.31, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1535.70, 1436.69 ) LPos=( -133.19, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -118.81, 1537.23, 1434.26 ) LPos=( -118.81, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -127.44, 1537.23, 1434.26 ) LPos=( -127.44, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -118.81, 1540.29, 1429.39 ) LPos=( -118.81, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, 1540.29, 1429.39 ) LPos=( -136.06, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -152.56, 1525.37, 1453.08 ) LPos=( -152.56, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, 1525.37, 1453.08 ) LPos=( -143.94, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -143.94, 1517.71, 1465.25 ) LPos=( -143.94, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -146.81, 1514.65, 1470.11 ) LPos=( -146.81, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -149.69, 1537.23, 1434.26 ) LPos=( -149.69, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -174.81, 1538.76, 1431.82 ) LPos=( -174.81, 557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -230.81, 1532.63, 1441.55 ) LPos=( -230.81, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -230.81, 1535.70, 1436.69 ) LPos=( -230.81, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, 1535.70, 1436.69 ) LPos=( -236.56, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -258.81, 1523.84, 1455.52 ) LPos=( -258.81, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -267.44, 1522.31, 1457.95 ) LPos=( -267.44, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -267.44, 1520.77, 1460.38 ) LPos=( -267.44, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1520.77, 1460.38 ) LPos=( -264.56, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -255.94, 1531.10, 1443.99 ) LPos=( -255.94, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -258.81, 1531.10, 1443.99 ) LPos=( -258.81, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -258.81, 1529.57, 1446.42 ) LPos=( -258.81, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -292.56, 1514.65, 1470.11 ) LPos=( -292.56, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -292.56, 1517.71, 1465.25 ) LPos=( -292.56, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -286.81, 1516.18, 1467.68 ) LPos=( -286.81, 515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -301.19, 1534.16, 1439.12 ) LPos=( -301.19, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -317.69, 1525.37, 1453.08 ) LPos=( -317.69, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -317.69, 1520.77, 1460.38 ) LPos=( -317.69, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -317.69, 1517.71, 1465.25 ) LPos=( -317.69, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -311.94, 1532.63, 1441.55 ) LPos=( -311.94, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, 1529.57, 1446.42 ) LPos=( -311.94, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -320.56, 1529.57, 1446.42 ) LPos=( -320.56, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -329.19, 1535.70, 1436.69 ) LPos=( -329.19, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -354.31, 1516.18, 1467.68 ) LPos=( -354.31, 515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -345.69, 1532.63, 1441.55 ) LPos=( -345.69, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -339.94, 1540.29, 1429.39 ) LPos=( -339.94, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -376.56, 1514.65, 1470.11 ) LPos=( -376.56, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -367.94, 1537.23, 1434.26 ) LPos=( -367.94, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -367.94, 1534.16, 1439.12 ) LPos=( -367.94, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -388.06, 1540.29, 1429.39 ) LPos=( -388.06, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -410.31, 1540.29, 1429.39 ) LPos=( -410.31, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -416.06, 1540.29, 1429.39 ) LPos=( -416.06, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -457.69, 1529.57, 1446.42 ) LPos=( -457.69, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -463.44, 1540.29, 1429.39 ) LPos=( -463.44, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -485.69, 1517.71, 1465.25 ) LPos=( -485.69, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -553.19, 1522.31, 1457.95 ) LPos=( -553.19, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -566.81, 1529.57, 1446.42 ) LPos=( -566.81, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -603.44, 1514.65, 1470.11 ) LPos=( -603.44, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 563.94, 1490.67, 1508.19 ) LPos=( 563.94, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 581.19, 1502.52, 1489.36 ) LPos=( 581.19, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1495.26, 1500.89 ) LPos=( 556.06, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 550.31, 1499.46, 1494.23 ) LPos=( 550.31, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 550.31, 1508.65, 1479.63 ) LPos=( 550.31, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 510.81, 1486.07, 1515.49 ) LPos=( 510.81, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 519.44, 1486.07, 1515.49 ) LPos=( 519.44, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 516.56, 1505.59, 1484.50 ) LPos=( 516.56, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 479.94, 1493.73, 1503.33 ) LPos=( 479.94, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 488.56, 1499.46, 1494.23 ) LPos=( 488.56, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 488.56, 1502.52, 1489.36 ) LPos=( 488.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 482.81, 1508.65, 1479.63 ) LPos=( 482.81, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 485.69, 1510.18, 1477.20 ) LPos=( 485.69, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 479.94, 1510.18, 1477.20 ) LPos=( 479.94, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 451.94, 1508.65, 1479.63 ) LPos=( 451.94, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 444.06, 1490.67, 1508.19 ) LPos=( 444.06, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 438.31, 1499.46, 1494.23 ) LPos=( 438.31, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 438.31, 1505.59, 1484.50 ) LPos=( 438.31, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 423.94, 1505.59, 1484.50 ) LPos=( 423.94, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 401.69, 1495.26, 1500.89 ) LPos=( 401.69, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 395.94, 1492.20, 1505.76 ) LPos=( 395.94, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 407.44, 1507.12, 1482.07 ) LPos=( 407.44, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 395.94, 1502.52, 1489.36 ) LPos=( 395.94, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 367.94, 1486.07, 1515.49 ) LPos=( 367.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 373.69, 1484.54, 1517.92 ) LPos=( 373.69, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 376.56, 1487.60, 1513.06 ) LPos=( 376.56, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 388.06, 1489.14, 1510.62 ) LPos=( 388.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 379.44, 1505.59, 1484.50 ) LPos=( 379.44, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 388.06, 1508.65, 1479.63 ) LPos=( 388.06, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 360.06, 1493.73, 1503.33 ) LPos=( 360.06, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 357.19, 1490.67, 1508.19 ) LPos=( 357.19, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, 1486.07, 1515.49 ) LPos=( 339.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 351.44, 1484.54, 1517.92 ) LPos=( 351.44, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 357.19, 1504.06, 1486.93 ) LPos=( 357.19, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 311.94, 1487.60, 1513.06 ) LPos=( 311.94, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 314.81, 1487.60, 1513.06 ) LPos=( 314.81, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 320.56, 1487.60, 1513.06 ) LPos=( 320.56, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 323.44, 1510.18, 1477.20 ) LPos=( 323.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 286.81, 1495.26, 1500.89 ) LPos=( 286.81, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 301.19, 1495.26, 1500.89 ) LPos=( 301.19, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 301.19, 1487.60, 1513.06 ) LPos=( 301.19, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 270.31, 1507.12, 1482.07 ) LPos=( 270.31, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1510.18, 1477.20 ) LPos=( 267.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 242.31, 1495.26, 1500.89 ) LPos=( 242.31, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 248.06, 1489.14, 1510.62 ) LPos=( 248.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 242.31, 1502.52, 1489.36 ) LPos=( 242.31, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 202.81, 1484.54, 1517.92 ) LPos=( 202.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 220.06, 1499.46, 1494.23 ) LPos=( 220.06, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 211.44, 1499.46, 1494.23 ) LPos=( 211.44, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, 1502.52, 1489.36 ) LPos=( 217.19, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 214.31, 1505.59, 1484.50 ) LPos=( 214.31, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 180.56, 1495.26, 1500.89 ) LPos=( 180.56, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 192.06, 1492.20, 1505.76 ) LPos=( 192.06, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 180.56, 1487.60, 1513.06 ) LPos=( 180.56, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, 1484.54, 1517.92 ) LPos=( 171.94, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, 1484.54, 1517.92 ) LPos=( 174.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, 1487.60, 1513.06 ) LPos=( 143.94, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, 1492.20, 1505.76 ) LPos=( 152.56, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 164.06, 1489.14, 1510.62 ) LPos=( 164.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 161.19, 1505.59, 1484.50 ) LPos=( 161.19, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 155.44, 1510.18, 1477.20 ) LPos=( 155.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 152.56, 1510.18, 1477.20 ) LPos=( 152.56, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1487.60, 1513.06 ) LPos=( 130.31, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, 1486.07, 1515.49 ) LPos=( 115.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1486.07, 1515.49 ) LPos=( 124.56, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 127.44, 1486.07, 1515.49 ) LPos=( 127.44, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 118.81, 1484.54, 1517.92 ) LPos=( 118.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1489.14, 1510.62 ) LPos=( 90.81, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 105.19, 1493.73, 1503.33 ) LPos=( 105.19, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1500.99, 1491.80 ) LPos=( 105.19, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 99.44, 1510.18, 1477.20 ) LPos=( 99.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1495.26, 1500.89 ) LPos=( 68.56, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, 1487.60, 1513.06 ) LPos=( 74.31, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, 1484.54, 1517.92 ) LPos=( 59.94, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 77.19, 1510.18, 1477.20 ) LPos=( 77.19, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 77.19, 1508.65, 1479.63 ) LPos=( 77.19, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, 1507.12, 1482.07 ) LPos=( 59.94, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 37.69, 1493.73, 1503.33 ) LPos=( 37.69, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, 1499.46, 1494.23 ) LPos=( 40.56, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 40.56, 1502.52, 1489.36 ) LPos=( 40.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1507.12, 1482.07 ) LPos=( 31.94, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 15.44, 1489.14, 1510.62 ) LPos=( 15.44, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, 1486.07, 1515.49 ) LPos=( 18.31, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 21.19, 1484.54, 1517.92 ) LPos=( 21.19, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1500.99, 1491.80 ) LPos=( 18.31, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1504.06, 1486.93 ) LPos=( 12.56, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 12.56, 1502.52, 1489.36 ) LPos=( 12.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1507.12, 1482.07 ) LPos=( 9.69, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, 1510.18, 1477.20 ) LPos=( 6.81, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1508.65, 1479.63 ) LPos=( 6.81, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, 1489.14, 1510.62 ) LPos=( -24.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, 1493.73, 1503.33 ) LPos=( -15.44, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1489.14, 1510.62 ) LPos=( -12.56, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -6.81, 1484.54, 1517.92 ) LPos=( -6.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3.94, 1486.07, 1515.49 ) LPos=( -3.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3.94, 1493.73, 1503.33 ) LPos=( -3.94, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, 1495.26, 1500.89 ) LPos=( -99.44, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1489.14, 1510.62 ) LPos=( -99.44, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1486.07, 1515.49 ) LPos=( -87.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -136.06, 1490.67, 1508.19 ) LPos=( -136.06, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1493.73, 1503.33 ) LPos=( -127.44, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -124.56, 1499.46, 1494.23 ) LPos=( -124.56, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, 1495.26, 1500.89 ) LPos=( -164.06, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -161.19, 1493.73, 1503.33 ) LPos=( -161.19, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -155.44, 1492.20, 1505.76 ) LPos=( -155.44, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -158.31, 1489.14, 1510.62 ) LPos=( -158.31, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, 1487.60, 1513.06 ) LPos=( -158.31, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, 1486.07, 1515.49 ) LPos=( -143.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -149.69, 1510.18, 1477.20 ) LPos=( -149.69, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, 1505.59, 1484.50 ) LPos=( -155.44, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -158.31, 1504.06, 1486.93 ) LPos=( -158.31, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -158.31, 1502.52, 1489.36 ) LPos=( -158.31, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, 1490.67, 1508.19 ) LPos=( -183.44, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -180.56, 1490.67, 1508.19 ) LPos=( -180.56, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, 1489.14, 1510.62 ) LPos=( -171.94, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -217.19, 1484.54, 1517.92 ) LPos=( -217.19, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -199.94, 1484.54, 1517.92 ) LPos=( -199.94, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -199.94, 1508.65, 1479.63 ) LPos=( -199.94, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, 1499.46, 1494.23 ) LPos=( -205.69, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -208.56, 1502.52, 1489.36 ) LPos=( -208.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -211.44, 1504.06, 1486.93 ) LPos=( -211.44, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -220.06, 1507.12, 1482.07 ) LPos=( -220.06, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -233.69, 1493.73, 1503.33 ) LPos=( -233.69, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -233.69, 1502.52, 1489.36 ) LPos=( -233.69, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -267.44, 1487.60, 1513.06 ) LPos=( -267.44, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -273.19, 1486.07, 1515.49 ) LPos=( -273.19, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -267.44, 1486.07, 1515.49 ) LPos=( -267.44, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -258.81, 1484.54, 1517.92 ) LPos=( -258.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -258.81, 1508.65, 1479.63 ) LPos=( -258.81, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -295.44, 1492.20, 1505.76 ) LPos=( -295.44, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -311.94, 1504.06, 1486.93 ) LPos=( -311.94, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -314.81, 1500.99, 1491.80 ) LPos=( -314.81, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -323.44, 1510.18, 1477.20 ) LPos=( -323.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -323.44, 1507.12, 1482.07 ) LPos=( -323.44, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -342.81, 1500.99, 1491.80 ) LPos=( -342.81, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -407.44, 1493.73, 1503.33 ) LPos=( -407.44, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -404.56, 1493.73, 1503.33 ) LPos=( -404.56, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -423.94, 1504.06, 1486.93 ) LPos=( -423.94, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -466.31, 1495.26, 1500.89 ) LPos=( -466.31, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -463.44, 1495.26, 1500.89 ) LPos=( -463.44, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -457.69, 1489.14, 1510.62 ) LPos=( -457.69, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -572.56, 1510.18, 1477.20 ) LPos=( -572.56, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -606.31, 1495.26, 1500.89 ) LPos=( -606.31, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -603.44, 1484.54, 1517.92 ) LPos=( -603.44, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 591.94, 1480.08, 1525.01 ) LPos=( 591.94, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 566.81, 1465.16, 1548.70 ) LPos=( 566.81, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 553.19, 1470.88, 1539.61 ) LPos=( 553.19, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 553.19, 1477.01, 1529.88 ) LPos=( 553.19, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 553.19, 1480.08, 1525.01 ) LPos=( 553.19, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 522.31, 1463.62, 1551.14 ) LPos=( 522.31, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 525.19, 1462.09, 1553.57 ) LPos=( 525.19, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 519.44, 1480.08, 1525.01 ) LPos=( 519.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 488.56, 1454.43, 1565.73 ) LPos=( 488.56, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 494.31, 1465.16, 1548.70 ) LPos=( 494.31, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 469.19, 1455.96, 1563.30 ) LPos=( 469.19, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 423.94, 1460.56, 1556.00 ) LPos=( 423.94, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 395.94, 1462.09, 1553.57 ) LPos=( 395.94, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 407.44, 1477.01, 1529.88 ) LPos=( 407.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 401.69, 1478.54, 1527.44 ) LPos=( 401.69, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 379.44, 1454.43, 1565.73 ) LPos=( 379.44, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, 1465.16, 1548.70 ) LPos=( 382.31, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 385.19, 1457.50, 1560.87 ) LPos=( 385.19, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 388.06, 1454.43, 1565.73 ) LPos=( 388.06, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 388.06, 1457.50, 1560.87 ) LPos=( 388.06, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 367.94, 1475.48, 1532.31 ) LPos=( 367.94, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 370.81, 1477.01, 1529.88 ) LPos=( 370.81, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 345.69, 1457.50, 1560.87 ) LPos=( 345.69, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 360.06, 1480.08, 1525.01 ) LPos=( 360.06, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, 1478.54, 1527.44 ) LPos=( 360.06, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, 1455.96, 1563.30 ) LPos=( 314.81, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, 1460.56, 1556.00 ) LPos=( 320.56, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 314.81, 1472.42, 1537.17 ) LPos=( 314.81, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 286.81, 1463.62, 1551.14 ) LPos=( 286.81, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 304.06, 1459.03, 1558.43 ) LPos=( 304.06, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 304.06, 1473.95, 1534.74 ) LPos=( 304.06, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 267.44, 1463.62, 1551.14 ) LPos=( 267.44, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 270.31, 1462.09, 1553.57 ) LPos=( 270.31, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1455.96, 1563.30 ) LPos=( 273.19, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 255.94, 1470.88, 1539.61 ) LPos=( 255.94, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 258.81, 1477.01, 1529.88 ) LPos=( 258.81, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 270.31, 1478.54, 1527.44 ) LPos=( 270.31, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1480.08, 1525.01 ) LPos=( 267.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 233.69, 1462.09, 1553.57 ) LPos=( 233.69, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, 1469.35, 1542.04 ) LPos=( 248.06, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 208.56, 1472.42, 1537.17 ) LPos=( 208.56, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, 1478.54, 1527.44 ) LPos=( 211.44, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 192.06, 1463.62, 1551.14 ) LPos=( 192.06, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 171.94, 1455.96, 1563.30 ) LPos=( 171.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 180.56, 1473.95, 1534.74 ) LPos=( 180.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 171.94, 1477.01, 1529.88 ) LPos=( 171.94, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, 1462.09, 1553.57 ) LPos=( 152.56, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 158.31, 1462.09, 1553.57 ) LPos=( 158.31, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 161.19, 1454.43, 1565.73 ) LPos=( 161.19, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 161.19, 1465.16, 1548.70 ) LPos=( 161.19, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 164.06, 1462.09, 1553.57 ) LPos=( 164.06, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 158.31, 1472.42, 1537.17 ) LPos=( 158.31, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, 1463.62, 1551.14 ) LPos=( 127.44, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1462.09, 1553.57 ) LPos=( 136.06, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1460.56, 1556.00 ) LPos=( 124.56, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 133.19, 1455.96, 1563.30 ) LPos=( 133.19, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 136.06, 1470.88, 1539.61 ) LPos=( 136.06, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, 1472.42, 1537.17 ) LPos=( 133.19, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 130.31, 1478.54, 1527.44 ) LPos=( 130.31, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 127.44, 1480.08, 1525.01 ) LPos=( 127.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, 1473.95, 1534.74 ) LPos=( 96.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1477.01, 1529.88 ) LPos=( 102.31, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1465.16, 1548.70 ) LPos=( 80.06, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1477.01, 1529.88 ) LPos=( 80.06, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 74.31, 1470.88, 1539.61 ) LPos=( 74.31, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1477.01, 1529.88 ) LPos=( 71.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 71.44, 1475.48, 1532.31 ) LPos=( 71.44, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 31.94, 1455.96, 1563.30 ) LPos=( 31.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1454.43, 1565.73 ) LPos=( 46.31, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1465.16, 1548.70 ) LPos=( 21.19, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, 1463.62, 1551.14 ) LPos=( 6.81, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, 1457.50, 1560.87 ) LPos=( 15.44, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, 1454.43, 1565.73 ) LPos=( 18.31, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, 1480.08, 1525.01 ) LPos=( 15.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1477.01, 1529.88 ) LPos=( 15.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 15.44, 1470.88, 1539.61 ) LPos=( 15.44, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1473.95, 1534.74 ) LPos=( 12.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 12.56, 1470.88, 1539.61 ) LPos=( 12.56, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1472.42, 1537.17 ) LPos=( 9.69, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, 1459.03, 1558.43 ) LPos=( -15.44, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1455.96, 1563.30 ) LPos=( -6.81, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -6.81, 1457.50, 1560.87 ) LPos=( -6.81, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3.94, 1459.03, 1558.43 ) LPos=( -3.94, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1472.42, 1537.17 ) LPos=( -15.44, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1473.95, 1534.74 ) LPos=( -24.06, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, 1460.56, 1556.00 ) LPos=( -43.44, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -49.19, 1459.03, 1558.43 ) LPos=( -49.19, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1455.96, 1563.30 ) LPos=( -31.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -49.19, 1454.43, 1565.73 ) LPos=( -49.19, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -80.06, 1460.56, 1556.00 ) LPos=( -80.06, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -74.31, 1463.62, 1551.14 ) LPos=( -74.31, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, 1455.96, 1563.30 ) LPos=( -68.56, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1459.03, 1558.43 ) LPos=( -68.56, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, 1465.16, 1548.70 ) LPos=( -99.44, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, 1475.48, 1532.31 ) LPos=( -93.69, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1455.96, 1563.30 ) LPos=( -130.31, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -152.56, 1465.16, 1548.70 ) LPos=( -152.56, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, 1463.62, 1551.14 ) LPos=( -149.69, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, 1455.96, 1563.30 ) LPos=( -143.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, 1470.88, 1539.61 ) LPos=( -152.56, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -161.19, 1480.08, 1525.01 ) LPos=( -161.19, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -161.19, 1477.01, 1529.88 ) LPos=( -161.19, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -192.06, 1460.56, 1556.00 ) LPos=( -192.06, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -171.94, 1469.35, 1542.04 ) LPos=( -171.94, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, 1469.35, 1542.04 ) LPos=( -192.06, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -183.44, 1477.01, 1529.88 ) LPos=( -183.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -208.56, 1462.09, 1553.57 ) LPos=( -208.56, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -202.81, 1480.08, 1525.01 ) LPos=( -202.81, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -220.06, 1473.95, 1534.74 ) LPos=( -220.06, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -245.19, 1459.03, 1558.43 ) LPos=( -245.19, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -242.31, 1457.50, 1560.87 ) LPos=( -242.31, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, 1459.03, 1558.43 ) LPos=( -227.94, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -248.06, 1469.35, 1542.04 ) LPos=( -248.06, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -227.94, 1472.42, 1537.17 ) LPos=( -227.94, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -236.56, 1472.42, 1537.17 ) LPos=( -236.56, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -245.19, 1472.42, 1537.17 ) LPos=( -245.19, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -227.94, 1473.95, 1534.74 ) LPos=( -227.94, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -230.81, 1473.95, 1534.74 ) LPos=( -230.81, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, 1475.48, 1532.31 ) LPos=( -227.94, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -230.81, 1475.48, 1532.31 ) LPos=( -230.81, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -233.69, 1475.48, 1532.31 ) LPos=( -233.69, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -239.44, 1475.48, 1532.31 ) LPos=( -239.44, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -227.94, 1477.01, 1529.88 ) LPos=( -227.94, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -230.81, 1477.01, 1529.88 ) LPos=( -230.81, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -227.94, 1478.54, 1527.44 ) LPos=( -227.94, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -233.69, 1478.54, 1527.44 ) LPos=( -233.69, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, 1478.54, 1527.44 ) LPos=( -236.56, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -242.31, 1480.08, 1525.01 ) LPos=( -242.31, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -255.94, 1457.50, 1560.87 ) LPos=( -255.94, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -255.94, 1470.88, 1539.61 ) LPos=( -255.94, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -258.81, 1475.48, 1532.31 ) LPos=( -258.81, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -258.81, 1473.95, 1534.74 ) LPos=( -258.81, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -258.81, 1472.42, 1537.17 ) LPos=( -258.81, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1473.95, 1534.74 ) LPos=( -264.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -267.44, 1473.95, 1534.74 ) LPos=( -267.44, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -270.31, 1480.08, 1525.01 ) LPos=( -270.31, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -286.81, 1462.09, 1553.57 ) LPos=( -286.81, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -283.94, 1460.56, 1556.00 ) LPos=( -283.94, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -289.69, 1475.48, 1532.31 ) LPos=( -289.69, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -326.31, 1477.01, 1529.88 ) LPos=( -326.31, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -329.19, 1475.48, 1532.31 ) LPos=( -329.19, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -339.94, 1457.50, 1560.87 ) LPos=( -339.94, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -348.56, 1472.42, 1537.17 ) LPos=( -348.56, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -379.44, 1465.16, 1548.70 ) LPos=( -379.44, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -376.56, 1477.01, 1529.88 ) LPos=( -376.56, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1473.95, 1534.74 ) LPos=( -376.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -404.56, 1455.96, 1563.30 ) LPos=( -404.56, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -556.06, 1460.56, 1556.00 ) LPos=( -556.06, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -584.06, 1454.43, 1565.73 ) LPos=( -584.06, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -584.06, 1457.50, 1560.87 ) LPos=( -584.06, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -569.69, 1454.43, 1565.73 ) LPos=( -569.69, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -575.44, 1475.48, 1532.31 ) LPos=( -575.44, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -569.69, 1478.54, 1527.44 ) LPos=( -569.69, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 612.06, 1427.39, 1608.68 ) LPos=( 612.06, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 600.56, 1442.31, 1584.98 ) LPos=( 600.56, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 569.69, 1440.78, 1587.42 ) LPos=( 569.69, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 494.31, 1433.52, 1598.95 ) LPos=( 494.31, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 482.81, 1449.97, 1572.82 ) LPos=( 482.81, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 466.31, 1435.05, 1596.51 ) LPos=( 466.31, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 463.44, 1425.86, 1611.11 ) LPos=( 463.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 460.56, 1424.32, 1613.54 ) LPos=( 460.56, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 426.81, 1427.39, 1608.68 ) LPos=( 426.81, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 404.56, 1427.39, 1608.68 ) LPos=( 404.56, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 416.06, 1424.32, 1613.54 ) LPos=( 416.06, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 398.81, 1446.90, 1577.69 ) LPos=( 398.81, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 376.56, 1427.39, 1608.68 ) LPos=( 376.56, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 379.44, 1433.52, 1598.95 ) LPos=( 379.44, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 382.31, 1431.98, 1601.38 ) LPos=( 382.31, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 382.31, 1433.52, 1598.95 ) LPos=( 382.31, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 385.19, 1435.05, 1596.51 ) LPos=( 385.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 388.06, 1428.92, 1606.24 ) LPos=( 388.06, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 388.06, 1439.24, 1589.85 ) LPos=( 388.06, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 367.94, 1439.24, 1589.85 ) LPos=( 367.94, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 388.06, 1440.78, 1587.42 ) LPos=( 388.06, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 388.06, 1443.84, 1582.55 ) LPos=( 388.06, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 388.06, 1446.90, 1577.69 ) LPos=( 388.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 388.06, 1448.44, 1575.25 ) LPos=( 388.06, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 382.31, 1449.97, 1572.82 ) LPos=( 382.31, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 354.31, 1448.44, 1575.25 ) LPos=( 354.31, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 339.94, 1446.90, 1577.69 ) LPos=( 339.94, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 317.69, 1435.05, 1596.51 ) LPos=( 317.69, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, 1443.84, 1582.55 ) LPos=( 320.56, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 295.44, 1425.86, 1611.11 ) LPos=( 295.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, 1424.32, 1613.54 ) LPos=( 283.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 289.69, 1424.32, 1613.54 ) LPos=( 289.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 304.06, 1448.44, 1575.25 ) LPos=( 304.06, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 292.56, 1449.97, 1572.82 ) LPos=( 292.56, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 258.81, 1425.86, 1611.11 ) LPos=( 258.81, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 267.44, 1425.86, 1611.11 ) LPos=( 267.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 270.31, 1425.86, 1611.11 ) LPos=( 270.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 233.69, 1425.86, 1611.11 ) LPos=( 233.69, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 248.06, 1425.86, 1611.11 ) LPos=( 248.06, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 242.31, 1424.32, 1613.54 ) LPos=( 242.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, 1448.44, 1575.25 ) LPos=( 245.19, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 242.31, 1443.84, 1582.55 ) LPos=( 242.31, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 242.31, 1440.78, 1587.42 ) LPos=( 242.31, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 239.44, 1449.97, 1572.82 ) LPos=( 239.44, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 236.56, 1442.31, 1584.98 ) LPos=( 236.56, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 208.56, 1424.32, 1613.54 ) LPos=( 208.56, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 211.44, 1425.86, 1611.11 ) LPos=( 211.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 189.19, 1428.92, 1606.24 ) LPos=( 189.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, 1424.32, 1613.54 ) LPos=( 171.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 189.19, 1424.32, 1613.54 ) LPos=( 189.19, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 143.94, 1430.45, 1603.81 ) LPos=( 143.94, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 158.31, 1425.86, 1611.11 ) LPos=( 158.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, 1428.92, 1606.24 ) LPos=( 158.31, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, 1424.32, 1613.54 ) LPos=( 164.06, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1435.05, 1596.51 ) LPos=( 124.56, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, 1435.05, 1596.51 ) LPos=( 127.44, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 133.19, 1435.05, 1596.51 ) LPos=( 133.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1430.45, 1603.81 ) LPos=( 127.44, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1428.92, 1606.24 ) LPos=( 124.56, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, 1425.86, 1611.11 ) LPos=( 130.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 118.81, 1424.32, 1613.54 ) LPos=( 118.81, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 136.06, 1445.37, 1580.12 ) LPos=( 136.06, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 133.19, 1439.24, 1589.85 ) LPos=( 133.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 118.81, 1440.78, 1587.42 ) LPos=( 118.81, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1445.37, 1580.12 ) LPos=( 115.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 93.69, 1424.32, 1613.54 ) LPos=( 93.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, 1427.39, 1608.68 ) LPos=( 93.69, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1427.39, 1608.68 ) LPos=( 102.31, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 108.06, 1430.45, 1603.81 ) LPos=( 108.06, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1439.24, 1589.85 ) LPos=( 105.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1440.78, 1587.42 ) LPos=( 105.19, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1440.78, 1587.42 ) LPos=( 90.81, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1440.78, 1587.42 ) LPos=( 87.94, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 102.31, 1443.84, 1582.55 ) LPos=( 102.31, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, 1443.84, 1582.55 ) LPos=( 93.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, 1448.44, 1575.25 ) LPos=( 102.31, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 59.94, 1433.52, 1598.95 ) LPos=( 59.94, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 62.81, 1431.98, 1601.38 ) LPos=( 62.81, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1427.39, 1608.68 ) LPos=( 59.94, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, 1424.32, 1613.54 ) LPos=( 65.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 74.31, 1449.97, 1572.82 ) LPos=( 74.31, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, 1439.24, 1589.85 ) LPos=( 68.56, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, 1440.78, 1587.42 ) LPos=( 62.81, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 34.81, 1424.32, 1613.54 ) LPos=( 34.81, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 34.81, 1425.86, 1611.11 ) LPos=( 34.81, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, 1425.86, 1611.11 ) LPos=( 37.69, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, 1425.86, 1611.11 ) LPos=( 40.56, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, 1431.98, 1601.38 ) LPos=( 40.56, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 46.31, 1425.86, 1611.11 ) LPos=( 46.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1428.92, 1606.24 ) LPos=( 49.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 49.19, 1433.52, 1598.95 ) LPos=( 49.19, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 52.06, 1428.92, 1606.24 ) LPos=( 52.06, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1439.24, 1589.85 ) LPos=( 49.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 40.56, 1440.78, 1587.42 ) LPos=( 40.56, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 37.69, 1443.84, 1582.55 ) LPos=( 37.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1445.37, 1580.12 ) LPos=( 43.44, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, 1445.37, 1580.12 ) LPos=( 31.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 49.19, 1446.90, 1577.69 ) LPos=( 49.19, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, 1435.05, 1596.51 ) LPos=( 6.81, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1433.52, 1598.95 ) LPos=( 15.44, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1433.52, 1598.95 ) LPos=( 21.19, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, 1431.98, 1601.38 ) LPos=( 6.81, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 6.81, 1424.32, 1613.54 ) LPos=( 6.81, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1448.44, 1575.25 ) LPos=( 24.06, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1445.37, 1580.12 ) LPos=( 21.19, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, 1446.90, 1577.69 ) LPos=( 18.31, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, 1445.37, 1580.12 ) LPos=( 18.31, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3.94, 1445.37, 1580.12 ) LPos=( 3.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, 1442.31, 1584.98 ) LPos=( 3.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -21.19, 1431.98, 1601.38 ) LPos=( -21.19, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1424.32, 1613.54 ) LPos=( -18.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, 1424.32, 1613.54 ) LPos=( -9.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1427.39, 1608.68 ) LPos=( -9.69, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, 1449.97, 1572.82 ) LPos=( -21.19, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1449.97, 1572.82 ) LPos=( -24.06, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, 1435.05, 1596.51 ) LPos=( -49.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, 1431.98, 1601.38 ) LPos=( -43.44, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -31.94, 1430.45, 1603.81 ) LPos=( -31.94, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, 1428.92, 1606.24 ) LPos=( -31.94, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, 1427.39, 1608.68 ) LPos=( -37.69, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -49.19, 1424.32, 1613.54 ) LPos=( -49.19, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, 1424.32, 1613.54 ) LPos=( -46.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1448.44, 1575.25 ) LPos=( -31.94, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -40.56, 1445.37, 1580.12 ) LPos=( -40.56, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, 1439.24, 1589.85 ) LPos=( -49.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, 1442.31, 1584.98 ) LPos=( -52.06, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1431.98, 1601.38 ) LPos=( -80.06, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -77.19, 1427.39, 1608.68 ) LPos=( -77.19, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -77.19, 1428.92, 1606.24 ) LPos=( -77.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1433.52, 1598.95 ) LPos=( -77.19, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, 1435.05, 1596.51 ) LPos=( -77.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, 1435.05, 1596.51 ) LPos=( -74.31, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, 1430.45, 1603.81 ) LPos=( -65.69, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, 1428.92, 1606.24 ) LPos=( -62.81, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -65.69, 1439.24, 1589.85 ) LPos=( -65.69, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, 1442.31, 1584.98 ) LPos=( -65.69, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1443.84, 1582.55 ) LPos=( -62.81, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, 1443.84, 1582.55 ) LPos=( -68.56, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1445.37, 1580.12 ) LPos=( -68.56, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, 1445.37, 1580.12 ) LPos=( -77.19, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -71.44, 1448.44, 1575.25 ) LPos=( -71.44, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, 1443.84, 1582.55 ) LPos=( -90.81, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, 1445.37, 1580.12 ) LPos=( -93.69, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, 1440.78, 1587.42 ) LPos=( -93.69, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, 1442.31, 1584.98 ) LPos=( -96.56, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1445.37, 1580.12 ) LPos=( -99.44, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, 1445.37, 1580.12 ) LPos=( -102.31, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -105.19, 1445.37, 1580.12 ) LPos=( -105.19, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, 1446.90, 1577.69 ) LPos=( -108.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1445.37, 1580.12 ) LPos=( -108.06, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1424.32, 1613.54 ) LPos=( -115.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -127.44, 1442.31, 1584.98 ) LPos=( -127.44, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, 1443.84, 1582.55 ) LPos=( -121.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -136.06, 1443.84, 1582.55 ) LPos=( -136.06, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -115.94, 1446.90, 1577.69 ) LPos=( -115.94, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -118.81, 1449.97, 1572.82 ) LPos=( -118.81, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1449.97, 1572.82 ) LPos=( -121.69, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, 1435.05, 1596.51 ) LPos=( -155.44, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -161.19, 1428.92, 1606.24 ) LPos=( -161.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -164.06, 1425.86, 1611.11 ) LPos=( -164.06, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -143.94, 1446.90, 1577.69 ) LPos=( -143.94, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -143.94, 1442.31, 1584.98 ) LPos=( -143.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, 1445.37, 1580.12 ) LPos=( -149.69, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -177.69, 1433.52, 1598.95 ) LPos=( -177.69, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -171.94, 1435.05, 1596.51 ) LPos=( -171.94, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, 1440.78, 1587.42 ) LPos=( -189.19, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -192.06, 1440.78, 1587.42 ) LPos=( -192.06, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -199.94, 1442.31, 1584.98 ) LPos=( -199.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -245.19, 1425.86, 1611.11 ) LPos=( -245.19, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -230.81, 1446.90, 1577.69 ) LPos=( -230.81, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -270.31, 1424.32, 1613.54 ) LPos=( -270.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -264.56, 1424.32, 1613.54 ) LPos=( -264.56, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -304.06, 1431.98, 1601.38 ) LPos=( -304.06, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -298.31, 1430.45, 1603.81 ) LPos=( -298.31, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1424.32, 1613.54 ) LPos=( -283.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -304.06, 1443.84, 1582.55 ) LPos=( -304.06, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -342.81, 1428.92, 1606.24 ) LPos=( -342.81, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -373.69, 1440.78, 1587.42 ) LPos=( -373.69, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -413.19, 1424.32, 1613.54 ) LPos=( -413.19, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -401.69, 1433.52, 1598.95 ) LPos=( -401.69, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -401.69, 1443.84, 1582.55 ) LPos=( -401.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -413.19, 1443.84, 1582.55 ) LPos=( -413.19, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -401.69, 1445.37, 1580.12 ) LPos=( -401.69, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -416.06, 1446.90, 1577.69 ) LPos=( -416.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -472.06, 1430.45, 1603.81 ) LPos=( -472.06, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -472.06, 1431.98, 1601.38 ) LPos=( -472.06, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -466.31, 1427.39, 1608.68 ) LPos=( -466.31, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -463.44, 1433.52, 1598.95 ) LPos=( -463.44, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -479.94, 1425.86, 1611.11 ) LPos=( -479.94, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -479.94, 1445.37, 1580.12 ) LPos=( -479.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -516.56, 1430.45, 1603.81 ) LPos=( -516.56, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -572.56, 1431.98, 1601.38 ) LPos=( -572.56, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -569.69, 1439.24, 1589.85 ) LPos=( -569.69, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -591.94, 1442.31, 1584.98 ) LPos=( -591.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -612.06, 1446.90, 1577.69 ) LPos=( -612.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 609.19, 1409.14, 1637.66 ) LPos=( 609.19, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 591.94, 1412.20, 1632.79 ) LPos=( 591.94, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 597.69, 1419.86, 1620.63 ) LPos=( 597.69, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 500.06, 1401.88, 1649.19 ) LPos=( 500.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 482.81, 1415.27, 1627.93 ) LPos=( 482.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 457.69, 1398.81, 1654.05 ) LPos=( 457.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 457.69, 1395.75, 1658.92 ) LPos=( 457.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 463.44, 1395.75, 1658.92 ) LPos=( 463.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 463.44, 1419.86, 1620.63 ) LPos=( 463.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 435.44, 1395.75, 1658.92 ) LPos=( 435.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 444.06, 1400.34, 1651.62 ) LPos=( 444.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 416.06, 1400.34, 1651.62 ) LPos=( 416.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 404.56, 1395.75, 1658.92 ) LPos=( 404.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 407.44, 1395.75, 1658.92 ) LPos=( 407.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 395.94, 1410.67, 1635.23 ) LPos=( 395.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 367.94, 1398.81, 1654.05 ) LPos=( 367.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 367.94, 1403.41, 1646.76 ) LPos=( 367.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 376.56, 1404.94, 1644.32 ) LPos=( 376.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 379.44, 1403.41, 1646.76 ) LPos=( 379.44, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 388.06, 1403.41, 1646.76 ) LPos=( 388.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 388.06, 1419.86, 1620.63 ) LPos=( 388.06, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 345.69, 1401.88, 1649.19 ) LPos=( 345.69, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, 1395.75, 1658.92 ) LPos=( 339.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 357.19, 1395.75, 1658.92 ) LPos=( 357.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 339.94, 1394.22, 1661.35 ) LPos=( 339.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 354.31, 1413.73, 1630.36 ) LPos=( 354.31, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 345.69, 1413.73, 1630.36 ) LPos=( 345.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 342.81, 1413.73, 1630.36 ) LPos=( 342.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 339.94, 1413.73, 1630.36 ) LPos=( 339.94, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 314.81, 1403.41, 1646.76 ) LPos=( 314.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 314.81, 1404.94, 1644.32 ) LPos=( 314.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 323.44, 1394.22, 1661.35 ) LPos=( 323.44, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 323.44, 1398.81, 1654.05 ) LPos=( 323.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 326.31, 1395.75, 1658.92 ) LPos=( 326.31, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 326.31, 1403.41, 1646.76 ) LPos=( 326.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 320.56, 1410.67, 1635.23 ) LPos=( 320.56, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, 1412.20, 1632.79 ) LPos=( 317.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 314.81, 1412.20, 1632.79 ) LPos=( 314.81, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 311.94, 1415.27, 1627.93 ) LPos=( 311.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 295.44, 1398.81, 1654.05 ) LPos=( 295.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 298.31, 1398.81, 1654.05 ) LPos=( 298.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, 1397.28, 1656.49 ) LPos=( 289.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 298.31, 1397.28, 1656.49 ) LPos=( 298.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 301.19, 1394.22, 1661.35 ) LPos=( 301.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 304.06, 1419.86, 1620.63 ) LPos=( 304.06, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 301.19, 1415.27, 1627.93 ) LPos=( 301.19, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 301.19, 1410.67, 1635.23 ) LPos=( 301.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 295.44, 1415.27, 1627.93 ) LPos=( 295.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 295.44, 1412.20, 1632.79 ) LPos=( 295.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 289.69, 1413.73, 1630.36 ) LPos=( 289.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 289.69, 1409.14, 1637.66 ) LPos=( 289.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 286.81, 1409.14, 1637.66 ) LPos=( 286.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 273.19, 1397.28, 1656.49 ) LPos=( 273.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 258.81, 1412.20, 1632.79 ) LPos=( 258.81, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1419.86, 1620.63 ) LPos=( 267.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 236.56, 1404.94, 1644.32 ) LPos=( 236.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 245.19, 1404.94, 1644.32 ) LPos=( 245.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 248.06, 1401.88, 1649.19 ) LPos=( 248.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 227.94, 1398.81, 1654.05 ) LPos=( 227.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 227.94, 1394.22, 1661.35 ) LPos=( 227.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 242.31, 1394.22, 1661.35 ) LPos=( 242.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, 1415.27, 1627.93 ) LPos=( 248.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 245.19, 1419.86, 1620.63 ) LPos=( 245.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 239.44, 1415.27, 1627.93 ) LPos=( 239.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 236.56, 1413.73, 1630.36 ) LPos=( 236.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 233.69, 1410.67, 1635.23 ) LPos=( 233.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 199.94, 1397.28, 1656.49 ) LPos=( 199.94, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 199.94, 1400.34, 1651.62 ) LPos=( 199.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1404.94, 1644.32 ) LPos=( 199.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 214.31, 1400.34, 1651.62 ) LPos=( 214.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 217.19, 1398.81, 1654.05 ) LPos=( 217.19, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 217.19, 1403.41, 1646.76 ) LPos=( 217.19, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 220.06, 1398.81, 1654.05 ) LPos=( 220.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 220.06, 1403.41, 1646.76 ) LPos=( 220.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 211.44, 1413.73, 1630.36 ) LPos=( 211.44, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 208.56, 1415.27, 1627.93 ) LPos=( 208.56, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 205.69, 1415.27, 1627.93 ) LPos=( 205.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 214.31, 1416.80, 1625.50 ) LPos=( 214.31, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, 1418.33, 1623.06 ) LPos=( 211.44, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 217.19, 1419.86, 1620.63 ) LPos=( 217.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, 1404.94, 1644.32 ) LPos=( 171.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 180.56, 1404.94, 1644.32 ) LPos=( 180.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, 1400.34, 1651.62 ) LPos=( 177.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 180.56, 1400.34, 1651.62 ) LPos=( 180.56, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1398.81, 1654.05 ) LPos=( 180.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 183.44, 1398.81, 1654.05 ) LPos=( 183.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 174.81, 1397.28, 1656.49 ) LPos=( 174.81, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1397.28, 1656.49 ) LPos=( 177.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 180.56, 1397.28, 1656.49 ) LPos=( 180.56, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 186.31, 1397.28, 1656.49 ) LPos=( 186.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 171.94, 1395.75, 1658.92 ) LPos=( 171.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, 1395.75, 1658.92 ) LPos=( 174.81, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, 1394.22, 1661.35 ) LPos=( 174.81, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, 1394.22, 1661.35 ) LPos=( 177.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 186.31, 1394.22, 1661.35 ) LPos=( 186.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 192.06, 1394.22, 1661.35 ) LPos=( 192.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 180.56, 1409.14, 1637.66 ) LPos=( 180.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 177.69, 1413.73, 1630.36 ) LPos=( 177.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 177.69, 1410.67, 1635.23 ) LPos=( 177.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 174.81, 1413.73, 1630.36 ) LPos=( 174.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 174.81, 1409.14, 1637.66 ) LPos=( 174.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, 1412.20, 1632.79 ) LPos=( 171.94, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, 1404.94, 1644.32 ) LPos=( 143.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 146.81, 1404.94, 1644.32 ) LPos=( 146.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 149.69, 1404.94, 1644.32 ) LPos=( 149.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, 1394.22, 1661.35 ) LPos=( 152.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 152.56, 1395.75, 1658.92 ) LPos=( 152.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, 1395.75, 1658.92 ) LPos=( 155.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, 1400.34, 1651.62 ) LPos=( 155.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 158.31, 1400.34, 1651.62 ) LPos=( 158.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 158.31, 1403.41, 1646.76 ) LPos=( 158.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1395.75, 1658.92 ) LPos=( 161.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 161.19, 1401.88, 1649.19 ) LPos=( 161.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 164.06, 1395.75, 1658.92 ) LPos=( 164.06, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 164.06, 1404.94, 1644.32 ) LPos=( 164.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 164.06, 1409.14, 1637.66 ) LPos=( 164.06, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1409.14, 1637.66 ) LPos=( 152.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, 1409.14, 1637.66 ) LPos=( 149.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, 1409.14, 1637.66 ) LPos=( 143.94, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 164.06, 1410.67, 1635.23 ) LPos=( 164.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 155.44, 1410.67, 1635.23 ) LPos=( 155.44, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1410.67, 1635.23 ) LPos=( 149.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 152.56, 1412.20, 1632.79 ) LPos=( 152.56, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, 1413.73, 1630.36 ) LPos=( 161.19, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1418.33, 1623.06 ) LPos=( 161.19, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 146.81, 1419.86, 1620.63 ) LPos=( 146.81, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, 1404.94, 1644.32 ) LPos=( 118.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 121.69, 1404.94, 1644.32 ) LPos=( 121.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1403.41, 1646.76 ) LPos=( 118.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, 1401.88, 1649.19 ) LPos=( 124.56, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1401.88, 1649.19 ) LPos=( 136.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, 1400.34, 1651.62 ) LPos=( 118.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1395.75, 1658.92 ) LPos=( 124.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1394.22, 1661.35 ) LPos=( 115.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 133.19, 1415.27, 1627.93 ) LPos=( 133.19, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 133.19, 1409.14, 1637.66 ) LPos=( 133.19, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 130.31, 1419.86, 1620.63 ) LPos=( 130.31, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 127.44, 1416.80, 1625.50 ) LPos=( 127.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, 1413.73, 1630.36 ) LPos=( 124.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, 1409.14, 1637.66 ) LPos=( 124.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 121.69, 1410.67, 1635.23 ) LPos=( 121.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 118.81, 1415.27, 1627.93 ) LPos=( 118.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1413.73, 1630.36 ) LPos=( 118.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1415.27, 1627.93 ) LPos=( 115.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, 1410.67, 1635.23 ) LPos=( 115.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1401.88, 1649.19 ) LPos=( 87.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1404.94, 1644.32 ) LPos=( 87.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1398.81, 1654.05 ) LPos=( 90.81, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1403.41, 1646.76 ) LPos=( 90.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 90.81, 1404.94, 1644.32 ) LPos=( 90.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 93.69, 1395.75, 1658.92 ) LPos=( 93.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, 1404.94, 1644.32 ) LPos=( 93.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 96.56, 1395.75, 1658.92 ) LPos=( 96.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, 1400.34, 1651.62 ) LPos=( 96.56, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 96.56, 1404.94, 1644.32 ) LPos=( 96.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1397.28, 1656.49 ) LPos=( 99.44, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, 1400.34, 1651.62 ) LPos=( 99.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 102.31, 1395.75, 1658.92 ) LPos=( 102.31, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1397.28, 1656.49 ) LPos=( 102.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, 1398.81, 1654.05 ) LPos=( 102.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, 1400.34, 1651.62 ) LPos=( 102.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, 1400.34, 1651.62 ) LPos=( 105.19, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 105.19, 1401.88, 1649.19 ) LPos=( 105.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1394.22, 1661.35 ) LPos=( 108.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 108.06, 1398.81, 1654.05 ) LPos=( 108.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, 1403.41, 1646.76 ) LPos=( 108.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 108.06, 1404.94, 1644.32 ) LPos=( 108.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 96.56, 1409.14, 1637.66 ) LPos=( 96.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1409.14, 1637.66 ) LPos=( 93.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, 1409.14, 1637.66 ) LPos=( 90.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 108.06, 1410.67, 1635.23 ) LPos=( 108.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1410.67, 1635.23 ) LPos=( 105.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1410.67, 1635.23 ) LPos=( 102.31, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, 1410.67, 1635.23 ) LPos=( 96.56, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1410.67, 1635.23 ) LPos=( 90.81, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1410.67, 1635.23 ) LPos=( 87.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, 1412.20, 1632.79 ) LPos=( 93.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, 1413.73, 1630.36 ) LPos=( 93.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1413.73, 1630.36 ) LPos=( 90.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 87.94, 1415.27, 1627.93 ) LPos=( 87.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 96.56, 1416.80, 1625.50 ) LPos=( 96.56, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 93.69, 1416.80, 1625.50 ) LPos=( 93.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 99.44, 1418.33, 1623.06 ) LPos=( 99.44, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 87.94, 1418.33, 1623.06 ) LPos=( 87.94, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, 1419.86, 1620.63 ) LPos=( 93.69, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, 1419.86, 1620.63 ) LPos=( 90.81, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, 1404.94, 1644.32 ) LPos=( 62.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 65.69, 1404.94, 1644.32 ) LPos=( 65.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1404.94, 1644.32 ) LPos=( 68.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 59.94, 1403.41, 1646.76 ) LPos=( 59.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, 1403.41, 1646.76 ) LPos=( 71.44, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 65.69, 1401.88, 1649.19 ) LPos=( 65.69, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1401.88, 1649.19 ) LPos=( 71.44, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, 1401.88, 1649.19 ) LPos=( 74.31, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 59.94, 1400.34, 1651.62 ) LPos=( 59.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, 1400.34, 1651.62 ) LPos=( 62.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1400.34, 1651.62 ) LPos=( 71.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1400.34, 1651.62 ) LPos=( 74.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 62.81, 1398.81, 1654.05 ) LPos=( 62.81, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, 1398.81, 1654.05 ) LPos=( 65.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1398.81, 1654.05 ) LPos=( 68.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, 1398.81, 1654.05 ) LPos=( 71.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1397.28, 1656.49 ) LPos=( 65.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1397.28, 1656.49 ) LPos=( 77.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, 1395.75, 1658.92 ) LPos=( 65.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, 1394.22, 1661.35 ) LPos=( 62.81, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 77.19, 1394.22, 1661.35 ) LPos=( 77.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1416.80, 1625.50 ) LPos=( 80.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, 1410.67, 1635.23 ) LPos=( 80.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 77.19, 1419.86, 1620.63 ) LPos=( 77.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, 1413.73, 1630.36 ) LPos=( 77.19, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, 1416.80, 1625.50 ) LPos=( 74.31, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, 1419.86, 1620.63 ) LPos=( 71.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1416.80, 1625.50 ) LPos=( 71.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 71.44, 1415.27, 1627.93 ) LPos=( 71.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 68.56, 1419.86, 1620.63 ) LPos=( 68.56, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, 1419.86, 1620.63 ) LPos=( 65.69, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, 1415.27, 1627.93 ) LPos=( 62.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 59.94, 1409.14, 1637.66 ) LPos=( 59.94, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 31.94, 1401.88, 1649.19 ) LPos=( 31.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 40.56, 1394.22, 1661.35 ) LPos=( 40.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, 1395.75, 1658.92 ) LPos=( 40.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 40.56, 1404.94, 1644.32 ) LPos=( 40.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, 1395.75, 1658.92 ) LPos=( 43.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 43.44, 1397.28, 1656.49 ) LPos=( 43.44, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 43.44, 1404.94, 1644.32 ) LPos=( 43.44, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1394.22, 1661.35 ) LPos=( 46.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, 1398.81, 1654.05 ) LPos=( 46.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1397.28, 1656.49 ) LPos=( 49.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1404.94, 1644.32 ) LPos=( 49.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1394.22, 1661.35 ) LPos=( 52.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, 1400.34, 1651.62 ) LPos=( 52.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1409.14, 1637.66 ) LPos=( 49.19, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, 1410.67, 1635.23 ) LPos=( 43.44, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1412.20, 1632.79 ) LPos=( 43.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 46.31, 1413.73, 1630.36 ) LPos=( 46.31, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 37.69, 1413.73, 1630.36 ) LPos=( 37.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, 1413.73, 1630.36 ) LPos=( 34.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1415.27, 1627.93 ) LPos=( 52.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1415.27, 1627.93 ) LPos=( 46.31, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1415.27, 1627.93 ) LPos=( 43.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1416.80, 1625.50 ) LPos=( 43.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1418.33, 1623.06 ) LPos=( 37.69, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, 1418.33, 1623.06 ) LPos=( 34.81, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, 1403.41, 1646.76 ) LPos=( 3.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, 1403.41, 1646.76 ) LPos=( 9.69, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 12.56, 1403.41, 1646.76 ) LPos=( 12.56, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1403.41, 1646.76 ) LPos=( 15.44, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, 1403.41, 1646.76 ) LPos=( 18.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1401.88, 1649.19 ) LPos=( 3.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, 1401.88, 1649.19 ) LPos=( 6.81, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, 1401.88, 1649.19 ) LPos=( 15.44, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, 1401.88, 1649.19 ) LPos=( 21.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3.94, 1400.34, 1651.62 ) LPos=( 3.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 6.81, 1400.34, 1651.62 ) LPos=( 6.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1400.34, 1651.62 ) LPos=( 15.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, 1398.81, 1654.05 ) LPos=( 3.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, 1398.81, 1654.05 ) LPos=( 6.81, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1398.81, 1654.05 ) LPos=( 12.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3.94, 1397.28, 1656.49 ) LPos=( 3.94, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, 1397.28, 1656.49 ) LPos=( 6.81, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1397.28, 1656.49 ) LPos=( 12.56, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1395.75, 1658.92 ) LPos=( 21.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 24.06, 1394.22, 1661.35 ) LPos=( 24.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1412.20, 1632.79 ) LPos=( 21.19, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1410.67, 1635.23 ) LPos=( 21.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, 1416.80, 1625.50 ) LPos=( 18.31, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1394.22, 1661.35 ) LPos=( -18.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -18.31, 1400.34, 1651.62 ) LPos=( -18.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1401.88, 1649.19 ) LPos=( -18.31, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1400.34, 1651.62 ) LPos=( -9.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -6.81, 1400.34, 1651.62 ) LPos=( -6.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, 1400.34, 1651.62 ) LPos=( -3.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -6.81, 1409.14, 1637.66 ) LPos=( -6.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, 1409.14, 1637.66 ) LPos=( -9.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, 1410.67, 1635.23 ) LPos=( -6.81, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1410.67, 1635.23 ) LPos=( -9.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, 1410.67, 1635.23 ) LPos=( -24.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1412.20, 1632.79 ) LPos=( -15.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, 1412.20, 1632.79 ) LPos=( -24.06, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1413.73, 1630.36 ) LPos=( -12.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, 1413.73, 1630.36 ) LPos=( -15.44, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1415.27, 1627.93 ) LPos=( -24.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1416.80, 1625.50 ) LPos=( -9.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, 1419.86, 1620.63 ) LPos=( -21.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1419.86, 1620.63 ) LPos=( -24.06, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1398.81, 1654.05 ) LPos=( -52.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, 1398.81, 1654.05 ) LPos=( -46.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, 1397.28, 1656.49 ) LPos=( -46.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -52.06, 1395.75, 1658.92 ) LPos=( -52.06, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1395.75, 1658.92 ) LPos=( -31.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, 1394.22, 1661.35 ) LPos=( -43.44, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, 1394.22, 1661.35 ) LPos=( -40.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, 1416.80, 1625.50 ) LPos=( -31.94, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, 1412.20, 1632.79 ) LPos=( -31.94, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1412.20, 1632.79 ) LPos=( -34.81, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -37.69, 1416.80, 1625.50 ) LPos=( -37.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -37.69, 1415.27, 1627.93 ) LPos=( -37.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, 1419.86, 1620.63 ) LPos=( -43.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, 1413.73, 1630.36 ) LPos=( -43.44, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, 1412.20, 1632.79 ) LPos=( -43.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1412.20, 1632.79 ) LPos=( -46.31, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -46.31, 1410.67, 1635.23 ) LPos=( -46.31, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, 1418.33, 1623.06 ) LPos=( -52.06, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -52.06, 1416.80, 1625.50 ) LPos=( -52.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, 1412.20, 1632.79 ) LPos=( -52.06, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, 1394.22, 1661.35 ) LPos=( -80.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -80.06, 1397.28, 1656.49 ) LPos=( -80.06, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -80.06, 1398.81, 1654.05 ) LPos=( -80.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -77.19, 1394.22, 1661.35 ) LPos=( -77.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, 1401.88, 1649.19 ) LPos=( -77.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1403.41, 1646.76 ) LPos=( -77.19, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, 1404.94, 1644.32 ) LPos=( -77.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, 1394.22, 1661.35 ) LPos=( -68.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -65.69, 1394.22, 1661.35 ) LPos=( -65.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, 1395.75, 1658.92 ) LPos=( -65.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, 1397.28, 1656.49 ) LPos=( -65.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, 1401.88, 1649.19 ) LPos=( -65.69, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, 1395.75, 1658.92 ) LPos=( -62.81, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, 1400.34, 1651.62 ) LPos=( -62.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -62.81, 1401.88, 1649.19 ) LPos=( -62.81, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -59.94, 1394.22, 1661.35 ) LPos=( -59.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -59.94, 1397.28, 1656.49 ) LPos=( -59.94, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1398.81, 1654.05 ) LPos=( -59.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -59.94, 1401.88, 1649.19 ) LPos=( -59.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, 1409.14, 1637.66 ) LPos=( -71.44, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, 1409.14, 1637.66 ) LPos=( -74.31, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, 1409.14, 1637.66 ) LPos=( -80.06, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1410.67, 1635.23 ) LPos=( -68.56, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, 1410.67, 1635.23 ) LPos=( -74.31, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1410.67, 1635.23 ) LPos=( -77.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -68.56, 1412.20, 1632.79 ) LPos=( -68.56, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, 1412.20, 1632.79 ) LPos=( -74.31, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, 1413.73, 1630.36 ) LPos=( -68.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, 1415.27, 1627.93 ) LPos=( -65.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, 1415.27, 1627.93 ) LPos=( -77.19, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -59.94, 1418.33, 1623.06 ) LPos=( -59.94, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -108.06, 1404.94, 1644.32 ) LPos=( -108.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -105.19, 1404.94, 1644.32 ) LPos=( -105.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -93.69, 1404.94, 1644.32 ) LPos=( -93.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1403.41, 1646.76 ) LPos=( -90.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, 1400.34, 1651.62 ) LPos=( -93.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, 1400.34, 1651.62 ) LPos=( -90.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -87.94, 1400.34, 1651.62 ) LPos=( -87.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1398.81, 1654.05 ) LPos=( -99.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, 1397.28, 1656.49 ) LPos=( -108.06, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -105.19, 1397.28, 1656.49 ) LPos=( -105.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1394.22, 1661.35 ) LPos=( -93.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, 1412.20, 1632.79 ) LPos=( -93.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, 1412.20, 1632.79 ) LPos=( -108.06, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -136.06, 1400.34, 1651.62 ) LPos=( -136.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -136.06, 1401.88, 1649.19 ) LPos=( -136.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, 1401.88, 1649.19 ) LPos=( -133.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1403.41, 1646.76 ) LPos=( -130.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -124.56, 1403.41, 1646.76 ) LPos=( -124.56, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, 1395.75, 1658.92 ) LPos=( -118.81, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, 1418.33, 1623.06 ) LPos=( -118.81, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -127.44, 1418.33, 1623.06 ) LPos=( -127.44, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, 1419.86, 1620.63 ) LPos=( -124.56, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -161.19, 1400.34, 1651.62 ) LPos=( -161.19, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, 1398.81, 1654.05 ) LPos=( -164.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -149.69, 1398.81, 1654.05 ) LPos=( -149.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -161.19, 1397.28, 1656.49 ) LPos=( -161.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, 1397.28, 1656.49 ) LPos=( -158.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, 1394.22, 1661.35 ) LPos=( -164.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -158.31, 1394.22, 1661.35 ) LPos=( -158.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -161.19, 1418.33, 1623.06 ) LPos=( -161.19, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -164.06, 1410.67, 1635.23 ) LPos=( -164.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, 1404.94, 1644.32 ) LPos=( -192.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, 1401.88, 1649.19 ) LPos=( -186.31, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, 1403.41, 1646.76 ) LPos=( -186.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -180.56, 1401.88, 1649.19 ) LPos=( -180.56, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -177.69, 1400.34, 1651.62 ) LPos=( -177.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, 1398.81, 1654.05 ) LPos=( -171.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, 1401.88, 1649.19 ) LPos=( -171.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, 1415.27, 1627.93 ) LPos=( -192.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -192.06, 1416.80, 1625.50 ) LPos=( -192.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, 1404.94, 1644.32 ) LPos=( -214.31, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -202.81, 1404.94, 1644.32 ) LPos=( -202.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -199.94, 1404.94, 1644.32 ) LPos=( -199.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -214.31, 1398.81, 1654.05 ) LPos=( -214.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -199.94, 1415.27, 1627.93 ) LPos=( -199.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -205.69, 1416.80, 1625.50 ) LPos=( -205.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -205.69, 1415.27, 1627.93 ) LPos=( -205.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, 1412.20, 1632.79 ) LPos=( -205.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -211.44, 1416.80, 1625.50 ) LPos=( -211.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -230.81, 1401.88, 1649.19 ) LPos=( -230.81, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -230.81, 1404.94, 1644.32 ) LPos=( -230.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -227.94, 1403.41, 1646.76 ) LPos=( -227.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -230.81, 1415.27, 1627.93 ) LPos=( -230.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -242.31, 1415.27, 1627.93 ) LPos=( -242.31, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -227.94, 1416.80, 1625.50 ) LPos=( -227.94, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -233.69, 1416.80, 1625.50 ) LPos=( -233.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, 1418.33, 1623.06 ) LPos=( -245.19, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -258.81, 1403.41, 1646.76 ) LPos=( -258.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -267.44, 1401.88, 1649.19 ) LPos=( -267.44, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -264.56, 1398.81, 1654.05 ) LPos=( -264.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -261.69, 1398.81, 1654.05 ) LPos=( -261.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -273.19, 1395.75, 1658.92 ) LPos=( -273.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -264.56, 1395.75, 1658.92 ) LPos=( -264.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -264.56, 1394.22, 1661.35 ) LPos=( -264.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -258.81, 1418.33, 1623.06 ) LPos=( -258.81, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -261.69, 1409.14, 1637.66 ) LPos=( -261.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1413.73, 1630.36 ) LPos=( -264.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -264.56, 1409.14, 1637.66 ) LPos=( -264.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -270.31, 1409.14, 1637.66 ) LPos=( -270.31, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -273.19, 1410.67, 1635.23 ) LPos=( -273.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -276.06, 1413.73, 1630.36 ) LPos=( -276.06, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -295.44, 1400.34, 1651.62 ) LPos=( -295.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -292.56, 1395.75, 1658.92 ) LPos=( -292.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -286.81, 1394.22, 1661.35 ) LPos=( -286.81, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1394.22, 1661.35 ) LPos=( -283.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -283.94, 1400.34, 1651.62 ) LPos=( -283.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -283.94, 1401.88, 1649.19 ) LPos=( -283.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -304.06, 1413.73, 1630.36 ) LPos=( -304.06, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -292.56, 1416.80, 1625.50 ) LPos=( -292.56, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -329.19, 1394.22, 1661.35 ) LPos=( -329.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -314.81, 1415.27, 1627.93 ) LPos=( -314.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -329.19, 1413.73, 1630.36 ) LPos=( -329.19, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -360.06, 1403.41, 1646.76 ) LPos=( -360.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -354.31, 1404.94, 1644.32 ) LPos=( -354.31, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -348.56, 1395.75, 1658.92 ) LPos=( -348.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -342.81, 1419.86, 1620.63 ) LPos=( -342.81, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -376.56, 1401.88, 1649.19 ) LPos=( -376.56, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -388.06, 1395.75, 1658.92 ) LPos=( -388.06, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -382.31, 1394.22, 1661.35 ) LPos=( -382.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -373.69, 1394.22, 1661.35 ) LPos=( -373.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -416.06, 1394.22, 1661.35 ) LPos=( -416.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -413.19, 1404.94, 1644.32 ) LPos=( -413.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -395.94, 1410.67, 1635.23 ) LPos=( -395.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -404.56, 1416.80, 1625.50 ) LPos=( -404.56, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -426.81, 1404.94, 1644.32 ) LPos=( -426.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -444.06, 1403.41, 1646.76 ) LPos=( -444.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -441.19, 1401.88, 1649.19 ) LPos=( -441.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -438.31, 1400.34, 1651.62 ) LPos=( -438.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -432.56, 1398.81, 1654.05 ) LPos=( -432.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -441.19, 1397.28, 1656.49 ) LPos=( -441.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -423.94, 1395.75, 1658.92 ) LPos=( -423.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -441.19, 1394.22, 1661.35 ) LPos=( -441.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -429.69, 1415.27, 1627.93 ) LPos=( -429.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -444.06, 1416.80, 1625.50 ) LPos=( -444.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -497.19, 1398.81, 1654.05 ) LPos=( -497.19, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -488.56, 1418.33, 1623.06 ) LPos=( -488.56, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -491.44, 1419.86, 1620.63 ) LPos=( -491.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -550.31, 1398.81, 1654.05 ) LPos=( -550.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -550.31, 1394.22, 1661.35 ) LPos=( -550.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -544.56, 1394.22, 1661.35 ) LPos=( -544.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -563.94, 1398.81, 1654.05 ) LPos=( -563.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -572.56, 1409.14, 1637.66 ) LPos=( -572.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -600.56, 1394.22, 1661.35 ) LPos=( -600.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -600.56, 1412.20, 1632.79 ) LPos=( -600.56, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 569.69, 1383.63, 1678.17 ) LPos=( 569.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 535.94, 1371.77, 1697.00 ) LPos=( 535.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 510.81, 1365.64, 1706.73 ) LPos=( 510.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 513.69, 1364.11, 1709.16 ) LPos=( 513.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 519.44, 1364.11, 1709.16 ) LPos=( 519.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 522.31, 1383.63, 1678.17 ) LPos=( 522.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 513.69, 1388.22, 1670.87 ) LPos=( 513.69, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 485.69, 1374.83, 1692.13 ) LPos=( 485.69, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 488.56, 1364.11, 1709.16 ) LPos=( 488.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 497.19, 1367.17, 1704.30 ) LPos=( 497.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 472.06, 1370.24, 1699.43 ) LPos=( 472.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 457.69, 1368.70, 1701.86 ) LPos=( 457.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 466.31, 1379.03, 1685.47 ) LPos=( 466.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 454.81, 1386.69, 1673.31 ) LPos=( 454.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 426.81, 1364.11, 1709.16 ) LPos=( 426.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 444.06, 1374.83, 1692.13 ) LPos=( 444.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 438.31, 1388.22, 1670.87 ) LPos=( 438.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 395.94, 1374.83, 1692.13 ) LPos=( 395.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 410.31, 1374.83, 1692.13 ) LPos=( 410.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 398.81, 1371.77, 1697.00 ) LPos=( 398.81, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 398.81, 1370.24, 1699.43 ) LPos=( 398.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 401.69, 1370.24, 1699.43 ) LPos=( 401.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 404.56, 1365.64, 1706.73 ) LPos=( 404.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 395.94, 1386.69, 1673.31 ) LPos=( 395.94, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 388.06, 1365.64, 1706.73 ) LPos=( 388.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 388.06, 1380.56, 1683.04 ) LPos=( 388.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 385.19, 1385.16, 1675.74 ) LPos=( 385.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 382.31, 1385.16, 1675.74 ) LPos=( 382.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 342.81, 1374.83, 1692.13 ) LPos=( 342.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 348.56, 1365.64, 1706.73 ) LPos=( 348.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, 1388.22, 1670.87 ) LPos=( 360.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 360.06, 1385.16, 1675.74 ) LPos=( 360.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 348.56, 1389.75, 1668.44 ) LPos=( 348.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 339.94, 1386.69, 1673.31 ) LPos=( 339.94, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 339.94, 1382.09, 1680.60 ) LPos=( 339.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 326.31, 1368.70, 1701.86 ) LPos=( 326.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 326.31, 1373.30, 1694.57 ) LPos=( 326.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 329.19, 1373.30, 1694.57 ) LPos=( 329.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 311.94, 1379.03, 1685.47 ) LPos=( 311.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 332.06, 1380.56, 1683.04 ) LPos=( 332.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, 1382.09, 1680.60 ) LPos=( 317.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 289.69, 1371.77, 1697.00 ) LPos=( 289.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 283.94, 1370.24, 1699.43 ) LPos=( 283.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 289.69, 1370.24, 1699.43 ) LPos=( 289.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, 1379.03, 1685.47 ) LPos=( 304.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 301.19, 1383.63, 1678.17 ) LPos=( 301.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 292.56, 1383.63, 1678.17 ) LPos=( 292.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 286.81, 1379.03, 1685.47 ) LPos=( 286.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, 1370.24, 1699.43 ) LPos=( 261.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 264.56, 1367.17, 1704.30 ) LPos=( 264.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 276.06, 1365.64, 1706.73 ) LPos=( 276.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 261.69, 1379.03, 1685.47 ) LPos=( 261.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 258.81, 1380.56, 1683.04 ) LPos=( 258.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 276.06, 1382.09, 1680.60 ) LPos=( 276.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 270.31, 1382.09, 1680.60 ) LPos=( 270.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 267.44, 1383.63, 1678.17 ) LPos=( 267.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 261.69, 1383.63, 1678.17 ) LPos=( 261.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 255.94, 1388.22, 1670.87 ) LPos=( 255.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 258.81, 1389.75, 1668.44 ) LPos=( 258.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, 1373.30, 1694.57 ) LPos=( 233.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 227.94, 1370.24, 1699.43 ) LPos=( 227.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 236.56, 1368.70, 1701.86 ) LPos=( 236.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 233.69, 1364.11, 1709.16 ) LPos=( 233.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 248.06, 1386.69, 1673.31 ) LPos=( 248.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 248.06, 1382.09, 1680.60 ) LPos=( 248.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 245.19, 1386.69, 1673.31 ) LPos=( 245.19, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 242.31, 1389.75, 1668.44 ) LPos=( 242.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 236.56, 1389.75, 1668.44 ) LPos=( 236.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 236.56, 1386.69, 1673.31 ) LPos=( 236.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, 1388.22, 1670.87 ) LPos=( 227.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, 1364.11, 1709.16 ) LPos=( 199.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 199.94, 1365.64, 1706.73 ) LPos=( 199.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 199.94, 1368.70, 1701.86 ) LPos=( 199.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1374.83, 1692.13 ) LPos=( 199.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 202.81, 1368.70, 1701.86 ) LPos=( 202.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 205.69, 1364.11, 1709.16 ) LPos=( 205.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 208.56, 1367.17, 1704.30 ) LPos=( 208.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 214.31, 1373.30, 1694.57 ) LPos=( 214.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 217.19, 1367.17, 1704.30 ) LPos=( 217.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 217.19, 1370.24, 1699.43 ) LPos=( 217.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, 1371.77, 1697.00 ) LPos=( 220.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1379.03, 1685.47 ) LPos=( 199.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 220.06, 1380.56, 1683.04 ) LPos=( 220.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 208.56, 1386.69, 1673.31 ) LPos=( 208.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 199.94, 1388.22, 1670.87 ) LPos=( 199.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 174.81, 1374.83, 1692.13 ) LPos=( 174.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 171.94, 1371.77, 1697.00 ) LPos=( 171.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 174.81, 1367.17, 1704.30 ) LPos=( 174.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 186.31, 1367.17, 1704.30 ) LPos=( 186.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 192.06, 1389.75, 1668.44 ) LPos=( 192.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 192.06, 1386.69, 1673.31 ) LPos=( 192.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 192.06, 1382.09, 1680.60 ) LPos=( 192.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, 1379.03, 1685.47 ) LPos=( 192.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 189.19, 1388.22, 1670.87 ) LPos=( 189.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 189.19, 1386.69, 1673.31 ) LPos=( 189.19, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, 1383.63, 1678.17 ) LPos=( 189.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 189.19, 1382.09, 1680.60 ) LPos=( 189.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 186.31, 1388.22, 1670.87 ) LPos=( 186.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, 1382.09, 1680.60 ) LPos=( 186.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 186.31, 1379.03, 1685.47 ) LPos=( 186.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, 1389.75, 1668.44 ) LPos=( 183.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, 1388.22, 1670.87 ) LPos=( 183.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 180.56, 1388.22, 1670.87 ) LPos=( 180.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1385.16, 1675.74 ) LPos=( 180.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 180.56, 1383.63, 1678.17 ) LPos=( 180.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 180.56, 1380.56, 1683.04 ) LPos=( 180.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 174.81, 1389.75, 1668.44 ) LPos=( 174.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 174.81, 1386.69, 1673.31 ) LPos=( 174.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 174.81, 1380.56, 1683.04 ) LPos=( 174.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, 1367.17, 1704.30 ) LPos=( 143.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, 1368.70, 1701.86 ) LPos=( 143.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 149.69, 1365.64, 1706.73 ) LPos=( 149.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 155.44, 1364.11, 1709.16 ) LPos=( 155.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 158.31, 1364.11, 1709.16 ) LPos=( 158.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, 1367.17, 1704.30 ) LPos=( 158.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1365.64, 1706.73 ) LPos=( 161.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 164.06, 1367.17, 1704.30 ) LPos=( 164.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1379.03, 1685.47 ) LPos=( 152.56, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 143.94, 1380.56, 1683.04 ) LPos=( 143.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, 1386.69, 1673.31 ) LPos=( 158.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 143.94, 1389.75, 1668.44 ) LPos=( 143.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 115.94, 1374.83, 1692.13 ) LPos=( 115.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, 1374.83, 1692.13 ) LPos=( 127.44, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1373.30, 1694.57 ) LPos=( 118.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 121.69, 1373.30, 1694.57 ) LPos=( 121.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, 1373.30, 1694.57 ) LPos=( 130.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, 1373.30, 1694.57 ) LPos=( 133.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 115.94, 1371.77, 1697.00 ) LPos=( 115.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, 1371.77, 1697.00 ) LPos=( 121.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, 1371.77, 1697.00 ) LPos=( 124.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1371.77, 1697.00 ) LPos=( 136.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, 1370.24, 1699.43 ) LPos=( 121.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, 1370.24, 1699.43 ) LPos=( 130.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 115.94, 1368.70, 1701.86 ) LPos=( 115.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 118.81, 1368.70, 1701.86 ) LPos=( 118.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1368.70, 1701.86 ) LPos=( 124.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 127.44, 1368.70, 1701.86 ) LPos=( 127.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 130.31, 1368.70, 1701.86 ) LPos=( 130.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, 1368.70, 1701.86 ) LPos=( 136.06, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 124.56, 1367.17, 1704.30 ) LPos=( 124.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1367.17, 1704.30 ) LPos=( 130.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 133.19, 1367.17, 1704.30 ) LPos=( 133.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, 1365.64, 1706.73 ) LPos=( 115.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 121.69, 1365.64, 1706.73 ) LPos=( 121.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, 1365.64, 1706.73 ) LPos=( 130.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 136.06, 1365.64, 1706.73 ) LPos=( 136.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, 1364.11, 1709.16 ) LPos=( 121.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 127.44, 1364.11, 1709.16 ) LPos=( 127.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 130.31, 1364.11, 1709.16 ) LPos=( 130.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 136.06, 1389.75, 1668.44 ) LPos=( 136.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 130.31, 1388.22, 1670.87 ) LPos=( 130.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 130.31, 1383.63, 1678.17 ) LPos=( 130.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 127.44, 1389.75, 1668.44 ) LPos=( 127.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, 1389.75, 1668.44 ) LPos=( 121.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1389.75, 1668.44 ) LPos=( 115.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, 1380.56, 1683.04 ) LPos=( 115.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, 1364.11, 1709.16 ) LPos=( 87.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 87.94, 1367.17, 1704.30 ) LPos=( 87.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, 1368.70, 1701.86 ) LPos=( 87.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1371.77, 1697.00 ) LPos=( 87.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1374.83, 1692.13 ) LPos=( 87.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 90.81, 1364.11, 1709.16 ) LPos=( 90.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 90.81, 1365.64, 1706.73 ) LPos=( 90.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1368.70, 1701.86 ) LPos=( 90.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1373.30, 1694.57 ) LPos=( 90.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 93.69, 1368.70, 1701.86 ) LPos=( 93.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, 1370.24, 1699.43 ) LPos=( 93.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1364.11, 1709.16 ) LPos=( 96.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1367.17, 1704.30 ) LPos=( 96.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, 1368.70, 1701.86 ) LPos=( 96.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 96.56, 1373.30, 1694.57 ) LPos=( 96.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, 1365.64, 1706.73 ) LPos=( 99.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1367.17, 1704.30 ) LPos=( 99.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1368.70, 1701.86 ) LPos=( 99.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, 1373.30, 1694.57 ) LPos=( 99.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 99.44, 1374.83, 1692.13 ) LPos=( 99.44, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 102.31, 1364.11, 1709.16 ) LPos=( 102.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1367.17, 1704.30 ) LPos=( 102.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 105.19, 1364.11, 1709.16 ) LPos=( 105.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, 1368.70, 1701.86 ) LPos=( 105.19, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, 1373.30, 1694.57 ) LPos=( 108.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1379.03, 1685.47 ) LPos=( 105.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 102.31, 1379.03, 1685.47 ) LPos=( 102.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 99.44, 1379.03, 1685.47 ) LPos=( 99.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 96.56, 1379.03, 1685.47 ) LPos=( 96.56, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1379.03, 1685.47 ) LPos=( 93.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, 1379.03, 1685.47 ) LPos=( 90.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1380.56, 1683.04 ) LPos=( 105.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1380.56, 1683.04 ) LPos=( 102.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1380.56, 1683.04 ) LPos=( 87.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1382.09, 1680.60 ) LPos=( 96.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, 1383.63, 1678.17 ) LPos=( 105.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 99.44, 1383.63, 1678.17 ) LPos=( 99.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, 1383.63, 1678.17 ) LPos=( 93.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 87.94, 1383.63, 1678.17 ) LPos=( 87.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, 1385.16, 1675.74 ) LPos=( 102.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1385.16, 1675.74 ) LPos=( 99.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 96.56, 1385.16, 1675.74 ) LPos=( 96.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, 1386.69, 1673.31 ) LPos=( 99.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, 1389.75, 1668.44 ) LPos=( 102.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 87.94, 1389.75, 1668.44 ) LPos=( 87.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 59.94, 1374.83, 1692.13 ) LPos=( 59.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 65.69, 1374.83, 1692.13 ) LPos=( 65.69, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1374.83, 1692.13 ) LPos=( 80.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 62.81, 1373.30, 1694.57 ) LPos=( 62.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, 1373.30, 1694.57 ) LPos=( 68.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, 1373.30, 1694.57 ) LPos=( 71.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1373.30, 1694.57 ) LPos=( 77.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1371.77, 1697.00 ) LPos=( 71.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, 1371.77, 1697.00 ) LPos=( 77.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 59.94, 1370.24, 1699.43 ) LPos=( 59.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, 1370.24, 1699.43 ) LPos=( 62.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, 1370.24, 1699.43 ) LPos=( 65.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1370.24, 1699.43 ) LPos=( 71.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1370.24, 1699.43 ) LPos=( 74.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, 1370.24, 1699.43 ) LPos=( 77.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, 1370.24, 1699.43 ) LPos=( 80.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 59.94, 1368.70, 1701.86 ) LPos=( 59.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 62.81, 1368.70, 1701.86 ) LPos=( 62.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, 1368.70, 1701.86 ) LPos=( 71.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 74.31, 1368.70, 1701.86 ) LPos=( 74.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1367.17, 1704.30 ) LPos=( 59.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 62.81, 1367.17, 1704.30 ) LPos=( 62.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1367.17, 1704.30 ) LPos=( 65.69, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 68.56, 1367.17, 1704.30 ) LPos=( 68.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, 1367.17, 1704.30 ) LPos=( 74.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1367.17, 1704.30 ) LPos=( 77.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 80.06, 1367.17, 1704.30 ) LPos=( 80.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, 1365.64, 1706.73 ) LPos=( 65.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 68.56, 1365.64, 1706.73 ) LPos=( 68.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 71.44, 1365.64, 1706.73 ) LPos=( 71.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, 1364.11, 1709.16 ) LPos=( 68.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1386.69, 1673.31 ) LPos=( 80.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 80.06, 1385.16, 1675.74 ) LPos=( 80.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 80.06, 1382.09, 1680.60 ) LPos=( 80.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, 1380.56, 1683.04 ) LPos=( 80.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 77.19, 1388.22, 1670.87 ) LPos=( 77.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, 1382.09, 1680.60 ) LPos=( 77.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1380.56, 1683.04 ) LPos=( 77.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, 1386.69, 1673.31 ) LPos=( 74.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, 1383.63, 1678.17 ) LPos=( 74.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 74.31, 1379.03, 1685.47 ) LPos=( 74.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 71.44, 1388.22, 1670.87 ) LPos=( 71.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1386.69, 1673.31 ) LPos=( 71.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 71.44, 1379.03, 1685.47 ) LPos=( 71.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 68.56, 1389.75, 1668.44 ) LPos=( 68.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, 1383.63, 1678.17 ) LPos=( 68.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 68.56, 1382.09, 1680.60 ) LPos=( 68.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1386.69, 1673.31 ) LPos=( 65.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, 1379.03, 1685.47 ) LPos=( 65.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 62.81, 1383.63, 1678.17 ) LPos=( 62.81, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, 1380.56, 1683.04 ) LPos=( 62.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 59.94, 1388.22, 1670.87 ) LPos=( 59.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, 1382.09, 1680.60 ) LPos=( 59.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, 1380.56, 1683.04 ) LPos=( 59.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 31.94, 1367.17, 1704.30 ) LPos=( 31.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 31.94, 1368.70, 1701.86 ) LPos=( 31.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 34.81, 1367.17, 1704.30 ) LPos=( 34.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 34.81, 1368.70, 1701.86 ) LPos=( 34.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 34.81, 1371.77, 1697.00 ) LPos=( 34.81, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 40.56, 1370.24, 1699.43 ) LPos=( 40.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 40.56, 1373.30, 1694.57 ) LPos=( 40.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 40.56, 1374.83, 1692.13 ) LPos=( 40.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 43.44, 1364.11, 1709.16 ) LPos=( 43.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1368.70, 1701.86 ) LPos=( 43.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, 1368.70, 1701.86 ) LPos=( 46.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 46.31, 1371.77, 1697.00 ) LPos=( 46.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1373.30, 1694.57 ) LPos=( 46.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 46.31, 1374.83, 1692.13 ) LPos=( 46.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1365.64, 1706.73 ) LPos=( 49.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1367.17, 1704.30 ) LPos=( 49.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1368.70, 1701.86 ) LPos=( 49.19, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 49.19, 1370.24, 1699.43 ) LPos=( 49.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 49.19, 1371.77, 1697.00 ) LPos=( 49.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1374.83, 1692.13 ) LPos=( 49.19, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1364.11, 1709.16 ) LPos=( 52.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, 1365.64, 1706.73 ) LPos=( 52.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, 1370.24, 1699.43 ) LPos=( 52.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, 1371.77, 1697.00 ) LPos=( 52.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 52.06, 1373.30, 1694.57 ) LPos=( 52.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 52.06, 1374.83, 1692.13 ) LPos=( 52.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1379.03, 1685.47 ) LPos=( 49.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, 1379.03, 1685.47 ) LPos=( 46.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 43.44, 1379.03, 1685.47 ) LPos=( 43.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1379.03, 1685.47 ) LPos=( 34.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 52.06, 1380.56, 1683.04 ) LPos=( 52.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, 1380.56, 1683.04 ) LPos=( 49.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 46.31, 1380.56, 1683.04 ) LPos=( 46.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, 1382.09, 1680.60 ) LPos=( 52.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, 1382.09, 1680.60 ) LPos=( 49.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, 1382.09, 1680.60 ) LPos=( 46.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1382.09, 1680.60 ) LPos=( 43.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, 1382.09, 1680.60 ) LPos=( 37.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 31.94, 1382.09, 1680.60 ) LPos=( 31.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, 1383.63, 1678.17 ) LPos=( 52.06, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1383.63, 1678.17 ) LPos=( 49.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, 1383.63, 1678.17 ) LPos=( 34.81, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, 1383.63, 1678.17 ) LPos=( 31.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1385.16, 1675.74 ) LPos=( 52.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1385.16, 1675.74 ) LPos=( 46.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1385.16, 1675.74 ) LPos=( 43.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 40.56, 1385.16, 1675.74 ) LPos=( 40.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 34.81, 1385.16, 1675.74 ) LPos=( 34.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, 1385.16, 1675.74 ) LPos=( 31.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1386.69, 1673.31 ) LPos=( 43.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 34.81, 1386.69, 1673.31 ) LPos=( 34.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 52.06, 1388.22, 1670.87 ) LPos=( 52.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1388.22, 1670.87 ) LPos=( 49.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 46.31, 1388.22, 1670.87 ) LPos=( 46.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 43.44, 1389.75, 1668.44 ) LPos=( 43.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 31.94, 1389.75, 1668.44 ) LPos=( 31.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, 1374.83, 1692.13 ) LPos=( 3.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, 1374.83, 1692.13 ) LPos=( 18.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1374.83, 1692.13 ) LPos=( 21.19, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, 1373.30, 1694.57 ) LPos=( 9.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1373.30, 1694.57 ) LPos=( 15.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1373.30, 1694.57 ) LPos=( 21.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1371.77, 1697.00 ) LPos=( 3.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 9.69, 1371.77, 1697.00 ) LPos=( 9.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, 1371.77, 1697.00 ) LPos=( 12.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, 1371.77, 1697.00 ) LPos=( 15.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1371.77, 1697.00 ) LPos=( 18.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, 1371.77, 1697.00 ) LPos=( 21.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1371.77, 1697.00 ) LPos=( 24.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, 1370.24, 1699.43 ) LPos=( 9.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 12.56, 1370.24, 1699.43 ) LPos=( 12.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1370.24, 1699.43 ) LPos=( 15.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 21.19, 1370.24, 1699.43 ) LPos=( 21.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, 1370.24, 1699.43 ) LPos=( 24.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 15.44, 1368.70, 1701.86 ) LPos=( 15.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1368.70, 1701.86 ) LPos=( 21.19, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3.94, 1367.17, 1704.30 ) LPos=( 3.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1367.17, 1704.30 ) LPos=( 12.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, 1367.17, 1704.30 ) LPos=( 15.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, 1367.17, 1704.30 ) LPos=( 18.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, 1367.17, 1704.30 ) LPos=( 21.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, 1367.17, 1704.30 ) LPos=( 24.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, 1365.64, 1706.73 ) LPos=( 3.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, 1364.11, 1709.16 ) LPos=( 18.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 24.06, 1364.11, 1709.16 ) LPos=( 24.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 24.06, 1389.75, 1668.44 ) LPos=( 24.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1388.22, 1670.87 ) LPos=( 24.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, 1386.69, 1673.31 ) LPos=( 24.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, 1385.16, 1675.74 ) LPos=( 24.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, 1383.63, 1678.17 ) LPos=( 24.06, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 24.06, 1380.56, 1683.04 ) LPos=( 24.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1385.16, 1675.74 ) LPos=( 21.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 21.19, 1383.63, 1678.17 ) LPos=( 21.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1382.09, 1680.60 ) LPos=( 21.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1380.56, 1683.04 ) LPos=( 21.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 21.19, 1379.03, 1685.47 ) LPos=( 21.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1389.75, 1668.44 ) LPos=( 18.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1388.22, 1670.87 ) LPos=( 18.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, 1385.16, 1675.74 ) LPos=( 18.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1383.63, 1678.17 ) LPos=( 18.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1380.56, 1683.04 ) LPos=( 18.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 15.44, 1385.16, 1675.74 ) LPos=( 15.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1383.63, 1678.17 ) LPos=( 15.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, 1379.03, 1685.47 ) LPos=( 15.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, 1386.69, 1673.31 ) LPos=( 12.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1385.16, 1675.74 ) LPos=( 12.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1383.63, 1678.17 ) LPos=( 12.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, 1389.75, 1668.44 ) LPos=( 9.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 9.69, 1388.22, 1670.87 ) LPos=( 9.69, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, 1385.16, 1675.74 ) LPos=( 9.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 9.69, 1383.63, 1678.17 ) LPos=( 9.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 9.69, 1380.56, 1683.04 ) LPos=( 9.69, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, 1389.75, 1668.44 ) LPos=( 6.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 6.81, 1380.56, 1683.04 ) LPos=( 6.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3.94, 1385.16, 1675.74 ) LPos=( 3.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, 1382.09, 1680.60 ) LPos=( 3.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, 1367.17, 1704.30 ) LPos=( -24.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, 1374.83, 1692.13 ) LPos=( -24.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -21.19, 1371.77, 1697.00 ) LPos=( -21.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1364.11, 1709.16 ) LPos=( -18.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, 1373.30, 1694.57 ) LPos=( -18.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -15.44, 1364.11, 1709.16 ) LPos=( -15.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -15.44, 1365.64, 1706.73 ) LPos=( -15.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -15.44, 1367.17, 1704.30 ) LPos=( -15.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, 1368.70, 1701.86 ) LPos=( -15.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1371.77, 1697.00 ) LPos=( -15.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, 1374.83, 1692.13 ) LPos=( -15.44, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1368.70, 1701.86 ) LPos=( -12.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1371.77, 1697.00 ) LPos=( -12.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, 1365.64, 1706.73 ) LPos=( -9.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1370.24, 1699.43 ) LPos=( -9.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, 1371.77, 1697.00 ) LPos=( -9.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, 1373.30, 1694.57 ) LPos=( -9.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1365.64, 1706.73 ) LPos=( -6.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -6.81, 1374.83, 1692.13 ) LPos=( -6.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, 1364.11, 1709.16 ) LPos=( -3.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, 1367.17, 1704.30 ) LPos=( -3.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3.94, 1368.70, 1701.86 ) LPos=( -3.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3.94, 1371.77, 1697.00 ) LPos=( -3.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -18.31, 1379.03, 1685.47 ) LPos=( -18.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3.94, 1380.56, 1683.04 ) LPos=( -3.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1380.56, 1683.04 ) LPos=( -9.69, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, 1382.09, 1680.60 ) LPos=( -3.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -9.69, 1382.09, 1680.60 ) LPos=( -9.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1382.09, 1680.60 ) LPos=( -18.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -21.19, 1382.09, 1680.60 ) LPos=( -21.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, 1382.09, 1680.60 ) LPos=( -24.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1383.63, 1678.17 ) LPos=( -12.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, 1383.63, 1678.17 ) LPos=( -15.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1383.63, 1678.17 ) LPos=( -24.06, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, 1385.16, 1675.74 ) LPos=( -6.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1385.16, 1675.74 ) LPos=( -12.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -21.19, 1385.16, 1675.74 ) LPos=( -21.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1385.16, 1675.74 ) LPos=( -24.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -6.81, 1386.69, 1673.31 ) LPos=( -6.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1388.22, 1670.87 ) LPos=( -6.81, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -9.69, 1388.22, 1670.87 ) LPos=( -9.69, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, 1388.22, 1670.87 ) LPos=( -12.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -9.69, 1389.75, 1668.44 ) LPos=( -9.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, 1389.75, 1668.44 ) LPos=( -15.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, 1374.83, 1692.13 ) LPos=( -52.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, 1374.83, 1692.13 ) LPos=( -49.19, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -52.06, 1373.30, 1694.57 ) LPos=( -52.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, 1373.30, 1694.57 ) LPos=( -37.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, 1373.30, 1694.57 ) LPos=( -34.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, 1371.77, 1697.00 ) LPos=( -49.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -52.06, 1370.24, 1699.43 ) LPos=( -52.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -46.31, 1370.24, 1699.43 ) LPos=( -46.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, 1370.24, 1699.43 ) LPos=( -43.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, 1370.24, 1699.43 ) LPos=( -37.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, 1368.70, 1701.86 ) LPos=( -46.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, 1368.70, 1701.86 ) LPos=( -37.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, 1368.70, 1701.86 ) LPos=( -31.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -52.06, 1367.17, 1704.30 ) LPos=( -52.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, 1367.17, 1704.30 ) LPos=( -46.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -40.56, 1367.17, 1704.30 ) LPos=( -40.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -34.81, 1367.17, 1704.30 ) LPos=( -34.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -31.94, 1367.17, 1704.30 ) LPos=( -31.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -52.06, 1365.64, 1706.73 ) LPos=( -52.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, 1365.64, 1706.73 ) LPos=( -49.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, 1365.64, 1706.73 ) LPos=( -43.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -37.69, 1365.64, 1706.73 ) LPos=( -37.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1365.64, 1706.73 ) LPos=( -31.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, 1364.11, 1709.16 ) LPos=( -40.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, 1386.69, 1673.31 ) LPos=( -31.94, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, 1389.75, 1668.44 ) LPos=( -34.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1382.09, 1680.60 ) LPos=( -37.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -37.69, 1380.56, 1683.04 ) LPos=( -37.69, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -37.69, 1379.03, 1685.47 ) LPos=( -37.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1389.75, 1668.44 ) LPos=( -40.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, 1380.56, 1683.04 ) LPos=( -40.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1379.03, 1685.47 ) LPos=( -43.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -46.31, 1389.75, 1668.44 ) LPos=( -46.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, 1383.63, 1678.17 ) LPos=( -49.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, 1379.03, 1685.47 ) LPos=( -52.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -77.19, 1365.64, 1706.73 ) LPos=( -77.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -74.31, 1365.64, 1706.73 ) LPos=( -74.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, 1367.17, 1704.30 ) LPos=( -74.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, 1371.77, 1697.00 ) LPos=( -74.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -74.31, 1373.30, 1694.57 ) LPos=( -74.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -71.44, 1364.11, 1709.16 ) LPos=( -71.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -71.44, 1368.70, 1701.86 ) LPos=( -71.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, 1364.11, 1709.16 ) LPos=( -68.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1368.70, 1701.86 ) LPos=( -68.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, 1370.24, 1699.43 ) LPos=( -68.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -68.56, 1371.77, 1697.00 ) LPos=( -68.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, 1374.83, 1692.13 ) LPos=( -68.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, 1365.64, 1706.73 ) LPos=( -65.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, 1368.70, 1701.86 ) LPos=( -65.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -62.81, 1364.11, 1709.16 ) LPos=( -62.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -62.81, 1367.17, 1704.30 ) LPos=( -62.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, 1368.70, 1701.86 ) LPos=( -62.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, 1370.24, 1699.43 ) LPos=( -62.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -59.94, 1365.64, 1706.73 ) LPos=( -59.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1368.70, 1701.86 ) LPos=( -59.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1380.56, 1683.04 ) LPos=( -68.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, 1382.09, 1680.60 ) LPos=( -80.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1383.63, 1678.17 ) LPos=( -71.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -74.31, 1383.63, 1678.17 ) LPos=( -74.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -68.56, 1388.22, 1670.87 ) LPos=( -68.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, 1374.83, 1692.13 ) LPos=( -102.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, 1374.83, 1692.13 ) LPos=( -87.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -108.06, 1373.30, 1694.57 ) LPos=( -108.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -102.31, 1373.30, 1694.57 ) LPos=( -102.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -96.56, 1371.77, 1697.00 ) LPos=( -96.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, 1370.24, 1699.43 ) LPos=( -93.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1367.17, 1704.30 ) LPos=( -102.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, 1367.17, 1704.30 ) LPos=( -96.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, 1365.64, 1706.73 ) LPos=( -105.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -99.44, 1365.64, 1706.73 ) LPos=( -99.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1365.64, 1706.73 ) LPos=( -87.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, 1364.11, 1709.16 ) LPos=( -102.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -96.56, 1364.11, 1709.16 ) LPos=( -96.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, 1383.63, 1678.17 ) LPos=( -87.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -90.81, 1389.75, 1668.44 ) LPos=( -90.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1386.69, 1673.31 ) LPos=( -90.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, 1382.09, 1680.60 ) LPos=( -90.81, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -93.69, 1389.75, 1668.44 ) LPos=( -93.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, 1385.16, 1675.74 ) LPos=( -93.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, 1379.03, 1685.47 ) LPos=( -93.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -96.56, 1389.75, 1668.44 ) LPos=( -96.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -96.56, 1380.56, 1683.04 ) LPos=( -96.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -99.44, 1386.69, 1673.31 ) LPos=( -99.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1385.16, 1675.74 ) LPos=( -99.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1386.69, 1673.31 ) LPos=( -102.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1380.56, 1683.04 ) LPos=( -102.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, 1379.03, 1685.47 ) LPos=( -102.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, 1383.63, 1678.17 ) LPos=( -105.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1385.16, 1675.74 ) LPos=( -108.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -133.19, 1364.11, 1709.16 ) LPos=( -133.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -130.31, 1364.11, 1709.16 ) LPos=( -130.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1365.64, 1706.73 ) LPos=( -130.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -130.31, 1370.24, 1699.43 ) LPos=( -130.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1373.30, 1694.57 ) LPos=( -130.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -124.56, 1368.70, 1701.86 ) LPos=( -124.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -121.69, 1374.83, 1692.13 ) LPos=( -121.69, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, 1364.11, 1709.16 ) LPos=( -118.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1365.64, 1706.73 ) LPos=( -115.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -115.94, 1379.03, 1685.47 ) LPos=( -115.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, 1379.03, 1685.47 ) LPos=( -121.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, 1380.56, 1683.04 ) LPos=( -127.44, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, 1383.63, 1678.17 ) LPos=( -121.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -121.69, 1385.16, 1675.74 ) LPos=( -121.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1389.75, 1668.44 ) LPos=( -115.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -146.81, 1370.24, 1699.43 ) LPos=( -146.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, 1368.70, 1701.86 ) LPos=( -164.06, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -155.44, 1365.64, 1706.73 ) LPos=( -155.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, 1364.11, 1709.16 ) LPos=( -143.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -143.94, 1383.63, 1678.17 ) LPos=( -143.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, 1380.56, 1683.04 ) LPos=( -143.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, 1379.03, 1685.47 ) LPos=( -143.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -146.81, 1389.75, 1668.44 ) LPos=( -146.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -146.81, 1380.56, 1683.04 ) LPos=( -146.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -146.81, 1379.03, 1685.47 ) LPos=( -146.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, 1385.16, 1675.74 ) LPos=( -152.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -152.56, 1382.09, 1680.60 ) LPos=( -152.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -155.44, 1389.75, 1668.44 ) LPos=( -155.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, 1382.09, 1680.60 ) LPos=( -155.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, 1382.09, 1680.60 ) LPos=( -161.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, 1389.75, 1668.44 ) LPos=( -164.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -164.06, 1388.22, 1670.87 ) LPos=( -164.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -192.06, 1370.24, 1699.43 ) LPos=( -192.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, 1370.24, 1699.43 ) LPos=( -189.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, 1367.17, 1704.30 ) LPos=( -186.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -186.31, 1368.70, 1701.86 ) LPos=( -186.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, 1370.24, 1699.43 ) LPos=( -186.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -183.44, 1364.11, 1709.16 ) LPos=( -183.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -183.44, 1368.70, 1701.86 ) LPos=( -183.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -183.44, 1373.30, 1694.57 ) LPos=( -183.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -180.56, 1374.83, 1692.13 ) LPos=( -180.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -177.69, 1365.64, 1706.73 ) LPos=( -177.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -174.81, 1370.24, 1699.43 ) LPos=( -174.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, 1367.17, 1704.30 ) LPos=( -171.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -171.94, 1370.24, 1699.43 ) LPos=( -171.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -171.94, 1373.30, 1694.57 ) LPos=( -171.94, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -180.56, 1379.03, 1685.47 ) LPos=( -180.56, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -174.81, 1382.09, 1680.60 ) LPos=( -174.81, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -177.69, 1383.63, 1678.17 ) LPos=( -177.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -186.31, 1383.63, 1678.17 ) LPos=( -186.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -177.69, 1385.16, 1675.74 ) LPos=( -177.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, 1389.75, 1668.44 ) LPos=( -174.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -189.19, 1389.75, 1668.44 ) LPos=( -189.19, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -220.06, 1374.83, 1692.13 ) LPos=( -220.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, 1373.30, 1694.57 ) LPos=( -214.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, 1371.77, 1697.00 ) LPos=( -205.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -211.44, 1370.24, 1699.43 ) LPos=( -211.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -202.81, 1365.64, 1706.73 ) LPos=( -202.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -202.81, 1380.56, 1683.04 ) LPos=( -202.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, 1379.03, 1685.47 ) LPos=( -205.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -214.31, 1383.63, 1678.17 ) LPos=( -214.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, 1380.56, 1683.04 ) LPos=( -214.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -217.19, 1383.63, 1678.17 ) LPos=( -217.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -220.06, 1385.16, 1675.74 ) LPos=( -220.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -236.56, 1382.09, 1680.60 ) LPos=( -236.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -230.81, 1389.75, 1668.44 ) LPos=( -230.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -248.06, 1389.75, 1668.44 ) LPos=( -248.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, 1374.83, 1692.13 ) LPos=( -258.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -270.31, 1373.30, 1694.57 ) LPos=( -270.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -261.69, 1371.77, 1697.00 ) LPos=( -261.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -261.69, 1368.70, 1701.86 ) LPos=( -261.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -267.44, 1367.17, 1704.30 ) LPos=( -267.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -258.81, 1386.69, 1673.31 ) LPos=( -258.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -261.69, 1386.69, 1673.31 ) LPos=( -261.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -261.69, 1385.16, 1675.74 ) LPos=( -261.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -264.56, 1388.22, 1670.87 ) LPos=( -264.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -273.19, 1388.22, 1670.87 ) LPos=( -273.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -273.19, 1386.69, 1673.31 ) LPos=( -273.19, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -273.19, 1385.16, 1675.74 ) LPos=( -273.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -298.31, 1364.11, 1709.16 ) LPos=( -298.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -298.31, 1368.70, 1701.86 ) LPos=( -298.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -298.31, 1371.77, 1697.00 ) LPos=( -298.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -298.31, 1374.83, 1692.13 ) LPos=( -298.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -289.69, 1367.17, 1704.30 ) LPos=( -289.69, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -283.94, 1367.17, 1704.30 ) LPos=( -283.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -298.31, 1382.09, 1680.60 ) LPos=( -298.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -304.06, 1382.09, 1680.60 ) LPos=( -304.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -286.81, 1385.16, 1675.74 ) LPos=( -286.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -295.44, 1386.69, 1673.31 ) LPos=( -295.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -304.06, 1386.69, 1673.31 ) LPos=( -304.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -283.94, 1388.22, 1670.87 ) LPos=( -283.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -298.31, 1388.22, 1670.87 ) LPos=( -298.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -286.81, 1389.75, 1668.44 ) LPos=( -286.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -311.94, 1373.30, 1694.57 ) LPos=( -311.94, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -320.56, 1368.70, 1701.86 ) LPos=( -320.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -332.06, 1365.64, 1706.73 ) LPos=( -332.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, 1364.11, 1709.16 ) LPos=( -332.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -314.81, 1364.11, 1709.16 ) LPos=( -314.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -311.94, 1385.16, 1675.74 ) LPos=( -311.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -317.69, 1386.69, 1673.31 ) LPos=( -317.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -317.69, 1383.63, 1678.17 ) LPos=( -317.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -323.44, 1388.22, 1670.87 ) LPos=( -323.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -326.31, 1389.75, 1668.44 ) LPos=( -326.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -329.19, 1382.09, 1680.60 ) LPos=( -329.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -329.19, 1379.03, 1685.47 ) LPos=( -329.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -332.06, 1386.69, 1673.31 ) LPos=( -332.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -351.44, 1373.30, 1694.57 ) LPos=( -351.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -348.56, 1373.30, 1694.57 ) LPos=( -348.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -342.81, 1364.11, 1709.16 ) LPos=( -342.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -360.06, 1379.03, 1685.47 ) LPos=( -360.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -348.56, 1380.56, 1683.04 ) LPos=( -348.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -354.31, 1380.56, 1683.04 ) LPos=( -354.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -351.44, 1382.09, 1680.60 ) LPos=( -351.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -354.31, 1382.09, 1680.60 ) LPos=( -354.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -345.69, 1383.63, 1678.17 ) LPos=( -345.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -351.44, 1383.63, 1678.17 ) LPos=( -351.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, 1383.63, 1678.17 ) LPos=( -354.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -342.81, 1385.16, 1675.74 ) LPos=( -342.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -345.69, 1385.16, 1675.74 ) LPos=( -345.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -351.44, 1385.16, 1675.74 ) LPos=( -351.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -354.31, 1385.16, 1675.74 ) LPos=( -354.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -360.06, 1385.16, 1675.74 ) LPos=( -360.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -348.56, 1386.69, 1673.31 ) LPos=( -348.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -351.44, 1386.69, 1673.31 ) LPos=( -351.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -354.31, 1386.69, 1673.31 ) LPos=( -354.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -345.69, 1389.75, 1668.44 ) LPos=( -345.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -376.56, 1374.83, 1692.13 ) LPos=( -376.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -385.19, 1373.30, 1694.57 ) LPos=( -385.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -382.31, 1371.77, 1697.00 ) LPos=( -382.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -379.44, 1371.77, 1697.00 ) LPos=( -379.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -376.56, 1371.77, 1697.00 ) LPos=( -376.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -373.69, 1371.77, 1697.00 ) LPos=( -373.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -382.31, 1370.24, 1699.43 ) LPos=( -382.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -379.44, 1370.24, 1699.43 ) LPos=( -379.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1370.24, 1699.43 ) LPos=( -376.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -373.69, 1370.24, 1699.43 ) LPos=( -373.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -382.31, 1368.70, 1701.86 ) LPos=( -382.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -379.44, 1368.70, 1701.86 ) LPos=( -379.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -376.56, 1368.70, 1701.86 ) LPos=( -376.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -370.81, 1368.70, 1701.86 ) LPos=( -370.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -385.19, 1367.17, 1704.30 ) LPos=( -385.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -382.31, 1367.17, 1704.30 ) LPos=( -382.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -370.81, 1367.17, 1704.30 ) LPos=( -370.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -385.19, 1365.64, 1706.73 ) LPos=( -385.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -379.44, 1365.64, 1706.73 ) LPos=( -379.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -373.69, 1364.11, 1709.16 ) LPos=( -373.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -367.94, 1364.11, 1709.16 ) LPos=( -367.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -367.94, 1385.16, 1675.74 ) LPos=( -367.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -370.81, 1388.22, 1670.87 ) LPos=( -370.81, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -373.69, 1386.69, 1673.31 ) LPos=( -373.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -376.56, 1385.16, 1675.74 ) LPos=( -376.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -379.44, 1388.22, 1670.87 ) LPos=( -379.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -382.31, 1388.22, 1670.87 ) LPos=( -382.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -382.31, 1382.09, 1680.60 ) LPos=( -382.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -385.19, 1385.16, 1675.74 ) LPos=( -385.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -385.19, 1380.56, 1683.04 ) LPos=( -385.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -385.19, 1379.03, 1685.47 ) LPos=( -385.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -410.31, 1364.11, 1709.16 ) LPos=( -410.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -407.44, 1367.17, 1704.30 ) LPos=( -407.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -404.56, 1364.11, 1709.16 ) LPos=( -404.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -404.56, 1373.30, 1694.57 ) LPos=( -404.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -395.94, 1367.17, 1704.30 ) LPos=( -395.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -395.94, 1368.70, 1701.86 ) LPos=( -395.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -407.44, 1385.16, 1675.74 ) LPos=( -407.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -416.06, 1388.22, 1670.87 ) LPos=( -416.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -416.06, 1389.75, 1668.44 ) LPos=( -416.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -432.56, 1373.30, 1694.57 ) LPos=( -432.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -426.81, 1367.17, 1704.30 ) LPos=( -426.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -441.19, 1364.11, 1709.16 ) LPos=( -441.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -435.44, 1364.11, 1709.16 ) LPos=( -435.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -423.94, 1389.75, 1668.44 ) LPos=( -423.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -426.81, 1382.09, 1680.60 ) LPos=( -426.81, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -429.69, 1386.69, 1673.31 ) LPos=( -429.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -429.69, 1382.09, 1680.60 ) LPos=( -429.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -435.44, 1388.22, 1670.87 ) LPos=( -435.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -435.44, 1382.09, 1680.60 ) LPos=( -435.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -441.19, 1385.16, 1675.74 ) LPos=( -441.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -444.06, 1389.75, 1668.44 ) LPos=( -444.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -444.06, 1388.22, 1670.87 ) LPos=( -444.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -472.06, 1364.11, 1709.16 ) LPos=( -472.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -472.06, 1374.83, 1692.13 ) LPos=( -472.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -469.19, 1364.11, 1709.16 ) LPos=( -469.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -466.31, 1365.64, 1706.73 ) LPos=( -466.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -463.44, 1367.17, 1704.30 ) LPos=( -463.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -451.94, 1368.70, 1701.86 ) LPos=( -451.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -485.69, 1371.77, 1697.00 ) LPos=( -485.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -482.81, 1370.24, 1699.43 ) LPos=( -482.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -497.19, 1385.16, 1675.74 ) LPos=( -497.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -553.19, 1364.11, 1709.16 ) LPos=( -553.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -584.06, 1385.16, 1675.74 ) LPos=( -584.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -569.69, 1389.75, 1668.44 ) LPos=( -569.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -594.81, 1368.70, 1701.86 ) LPos=( -594.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -600.56, 1365.64, 1706.73 ) LPos=( -600.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -600.56, 1385.16, 1675.74 ) LPos=( -600.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -600.56, 1383.63, 1678.17 ) LPos=( -600.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -603.44, 1388.22, 1670.87 ) LPos=( -603.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 591.94, 1353.52, 1725.98 ) LPos=( 591.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 563.94, 1341.66, 1744.81 ) LPos=( 563.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 569.69, 1338.60, 1749.67 ) LPos=( 569.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 566.81, 1335.53, 1754.54 ) LPos=( 566.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 572.56, 1334.00, 1756.97 ) LPos=( 572.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 575.44, 1334.00, 1756.97 ) LPos=( 575.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 556.06, 1351.99, 1728.41 ) LPos=( 556.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 547.44, 1356.58, 1721.11 ) LPos=( 547.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 544.56, 1356.58, 1721.11 ) LPos=( 544.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 544.56, 1358.11, 1718.68 ) LPos=( 544.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 544.56, 1359.65, 1716.25 ) LPos=( 544.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 538.81, 1359.65, 1716.25 ) LPos=( 538.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 516.56, 1348.92, 1733.28 ) LPos=( 516.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 488.56, 1344.73, 1739.94 ) LPos=( 488.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 500.06, 1351.99, 1728.41 ) LPos=( 500.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 491.44, 1355.05, 1723.55 ) LPos=( 491.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 500.06, 1358.11, 1718.68 ) LPos=( 500.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 479.94, 1358.11, 1718.68 ) LPos=( 479.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 479.94, 1359.65, 1716.25 ) LPos=( 479.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 438.31, 1337.07, 1752.11 ) LPos=( 438.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 429.69, 1356.58, 1721.11 ) LPos=( 429.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 410.31, 1335.53, 1754.54 ) LPos=( 410.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 370.81, 1353.52, 1725.98 ) LPos=( 370.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 354.31, 1348.92, 1733.28 ) LPos=( 354.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, 1335.53, 1754.54 ) LPos=( 314.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, 1341.66, 1744.81 ) LPos=( 317.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 283.94, 1340.13, 1747.24 ) LPos=( 283.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, 1338.60, 1749.67 ) LPos=( 283.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 286.81, 1338.60, 1749.67 ) LPos=( 286.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 283.94, 1337.07, 1752.11 ) LPos=( 283.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, 1337.07, 1752.11 ) LPos=( 289.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 292.56, 1337.07, 1752.11 ) LPos=( 292.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 304.06, 1358.11, 1718.68 ) LPos=( 304.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, 1356.58, 1721.11 ) LPos=( 304.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 298.31, 1353.52, 1725.98 ) LPos=( 298.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 295.44, 1355.05, 1723.55 ) LPos=( 295.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 292.56, 1353.52, 1725.98 ) LPos=( 292.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 286.81, 1353.52, 1725.98 ) LPos=( 286.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 264.56, 1334.00, 1756.97 ) LPos=( 264.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 267.44, 1344.73, 1739.94 ) LPos=( 267.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 270.31, 1341.66, 1744.81 ) LPos=( 270.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 273.19, 1341.66, 1744.81 ) LPos=( 273.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 267.44, 1350.45, 1730.85 ) LPos=( 267.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 264.56, 1350.45, 1730.85 ) LPos=( 264.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 261.69, 1350.45, 1730.85 ) LPos=( 261.69, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 267.44, 1351.99, 1728.41 ) LPos=( 267.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 264.56, 1351.99, 1728.41 ) LPos=( 264.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 255.94, 1351.99, 1728.41 ) LPos=( 255.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 255.94, 1355.05, 1723.55 ) LPos=( 255.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 264.56, 1356.58, 1721.11 ) LPos=( 264.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1359.65, 1716.25 ) LPos=( 267.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 227.94, 1344.73, 1739.94 ) LPos=( 227.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 245.19, 1344.73, 1739.94 ) LPos=( 245.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 245.19, 1343.19, 1742.38 ) LPos=( 245.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 242.31, 1340.13, 1747.24 ) LPos=( 242.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 248.06, 1340.13, 1747.24 ) LPos=( 248.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 242.31, 1338.60, 1749.67 ) LPos=( 242.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 233.69, 1334.00, 1756.97 ) LPos=( 233.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 236.56, 1334.00, 1756.97 ) LPos=( 236.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, 1353.52, 1725.98 ) LPos=( 248.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 242.31, 1353.52, 1725.98 ) LPos=( 242.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 233.69, 1359.65, 1716.25 ) LPos=( 233.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 230.81, 1358.11, 1718.68 ) LPos=( 230.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 230.81, 1355.05, 1723.55 ) LPos=( 230.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 227.94, 1356.58, 1721.11 ) LPos=( 227.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 227.94, 1355.05, 1723.55 ) LPos=( 227.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, 1353.52, 1725.98 ) LPos=( 227.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 227.94, 1350.45, 1730.85 ) LPos=( 227.94, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 199.94, 1335.53, 1754.54 ) LPos=( 199.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 199.94, 1343.19, 1742.38 ) LPos=( 199.94, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1344.73, 1739.94 ) LPos=( 199.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 205.69, 1338.60, 1749.67 ) LPos=( 205.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 205.69, 1343.19, 1742.38 ) LPos=( 205.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 208.56, 1344.73, 1739.94 ) LPos=( 208.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 214.31, 1340.13, 1747.24 ) LPos=( 214.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 214.31, 1343.19, 1742.38 ) LPos=( 214.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 214.31, 1344.73, 1739.94 ) LPos=( 214.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, 1335.53, 1754.54 ) LPos=( 217.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 217.19, 1343.19, 1742.38 ) LPos=( 217.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, 1334.00, 1756.97 ) LPos=( 220.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1348.92, 1733.28 ) LPos=( 199.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, 1351.99, 1728.41 ) LPos=( 217.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 199.94, 1351.99, 1728.41 ) LPos=( 199.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 208.56, 1358.11, 1718.68 ) LPos=( 208.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 202.81, 1358.11, 1718.68 ) LPos=( 202.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 199.94, 1358.11, 1718.68 ) LPos=( 199.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 214.31, 1359.65, 1716.25 ) LPos=( 214.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 174.81, 1344.73, 1739.94 ) LPos=( 174.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 177.69, 1344.73, 1739.94 ) LPos=( 177.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 186.31, 1344.73, 1739.94 ) LPos=( 186.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 180.56, 1343.19, 1742.38 ) LPos=( 180.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 186.31, 1343.19, 1742.38 ) LPos=( 186.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 180.56, 1341.66, 1744.81 ) LPos=( 180.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 192.06, 1340.13, 1747.24 ) LPos=( 192.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1338.60, 1749.67 ) LPos=( 180.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 189.19, 1338.60, 1749.67 ) LPos=( 189.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 174.81, 1337.07, 1752.11 ) LPos=( 174.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1337.07, 1752.11 ) LPos=( 177.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 192.06, 1335.53, 1754.54 ) LPos=( 192.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, 1334.00, 1756.97 ) LPos=( 177.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 189.19, 1334.00, 1756.97 ) LPos=( 189.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 186.31, 1353.52, 1725.98 ) LPos=( 186.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 186.31, 1350.45, 1730.85 ) LPos=( 186.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, 1358.11, 1718.68 ) LPos=( 183.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1356.58, 1721.11 ) LPos=( 177.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 171.94, 1355.05, 1723.55 ) LPos=( 171.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, 1351.99, 1728.41 ) LPos=( 171.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, 1337.07, 1752.11 ) LPos=( 143.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, 1338.60, 1749.67 ) LPos=( 143.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 143.94, 1340.13, 1747.24 ) LPos=( 143.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 143.94, 1343.19, 1742.38 ) LPos=( 143.94, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, 1344.73, 1739.94 ) LPos=( 143.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 146.81, 1337.07, 1752.11 ) LPos=( 146.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 146.81, 1338.60, 1749.67 ) LPos=( 146.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 146.81, 1340.13, 1747.24 ) LPos=( 146.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 149.69, 1334.00, 1756.97 ) LPos=( 149.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 149.69, 1337.07, 1752.11 ) LPos=( 149.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 149.69, 1341.66, 1744.81 ) LPos=( 149.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, 1343.19, 1742.38 ) LPos=( 149.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 152.56, 1335.53, 1754.54 ) LPos=( 152.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, 1338.60, 1749.67 ) LPos=( 158.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 158.31, 1344.73, 1739.94 ) LPos=( 158.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 161.19, 1337.07, 1752.11 ) LPos=( 161.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, 1334.00, 1756.97 ) LPos=( 164.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 164.06, 1335.53, 1754.54 ) LPos=( 164.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 164.06, 1340.13, 1747.24 ) LPos=( 164.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 155.44, 1348.92, 1733.28 ) LPos=( 155.44, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 146.81, 1348.92, 1733.28 ) LPos=( 146.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 164.06, 1350.45, 1730.85 ) LPos=( 164.06, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 158.31, 1350.45, 1730.85 ) LPos=( 158.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1350.45, 1730.85 ) LPos=( 149.69, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 155.44, 1351.99, 1728.41 ) LPos=( 155.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 152.56, 1351.99, 1728.41 ) LPos=( 152.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 143.94, 1351.99, 1728.41 ) LPos=( 143.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 149.69, 1353.52, 1725.98 ) LPos=( 149.69, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 146.81, 1355.05, 1723.55 ) LPos=( 146.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 149.69, 1356.58, 1721.11 ) LPos=( 149.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 146.81, 1356.58, 1721.11 ) LPos=( 146.81, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 143.94, 1356.58, 1721.11 ) LPos=( 143.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 149.69, 1358.11, 1718.68 ) LPos=( 149.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, 1358.11, 1718.68 ) LPos=( 143.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 158.31, 1359.65, 1716.25 ) LPos=( 158.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 149.69, 1359.65, 1716.25 ) LPos=( 149.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 146.81, 1359.65, 1716.25 ) LPos=( 146.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 143.94, 1359.65, 1716.25 ) LPos=( 143.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, 1344.73, 1739.94 ) LPos=( 118.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1344.73, 1739.94 ) LPos=( 124.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, 1344.73, 1739.94 ) LPos=( 127.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, 1344.73, 1739.94 ) LPos=( 130.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, 1343.19, 1742.38 ) LPos=( 130.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 115.94, 1341.66, 1744.81 ) LPos=( 115.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, 1341.66, 1744.81 ) LPos=( 121.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, 1341.66, 1744.81 ) LPos=( 124.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, 1341.66, 1744.81 ) LPos=( 127.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1341.66, 1744.81 ) LPos=( 130.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, 1340.13, 1747.24 ) LPos=( 118.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, 1340.13, 1747.24 ) LPos=( 121.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1340.13, 1747.24 ) LPos=( 124.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1340.13, 1747.24 ) LPos=( 127.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 133.19, 1340.13, 1747.24 ) LPos=( 133.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 121.69, 1338.60, 1749.67 ) LPos=( 121.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1338.60, 1749.67 ) LPos=( 124.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 130.31, 1338.60, 1749.67 ) LPos=( 130.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 118.81, 1337.07, 1752.11 ) LPos=( 118.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 121.69, 1337.07, 1752.11 ) LPos=( 121.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1337.07, 1752.11 ) LPos=( 130.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, 1335.53, 1754.54 ) LPos=( 118.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1335.53, 1754.54 ) LPos=( 124.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 133.19, 1335.53, 1754.54 ) LPos=( 133.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 136.06, 1335.53, 1754.54 ) LPos=( 136.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1334.00, 1756.97 ) LPos=( 115.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, 1334.00, 1756.97 ) LPos=( 133.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 136.06, 1334.00, 1756.97 ) LPos=( 136.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 136.06, 1351.99, 1728.41 ) LPos=( 136.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, 1351.99, 1728.41 ) LPos=( 133.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, 1355.05, 1723.55 ) LPos=( 130.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 130.31, 1353.52, 1725.98 ) LPos=( 130.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1351.99, 1728.41 ) LPos=( 130.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 127.44, 1355.05, 1723.55 ) LPos=( 127.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 124.56, 1359.65, 1716.25 ) LPos=( 124.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 124.56, 1358.11, 1718.68 ) LPos=( 124.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 124.56, 1351.99, 1728.41 ) LPos=( 124.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, 1359.65, 1716.25 ) LPos=( 121.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 121.69, 1348.92, 1733.28 ) LPos=( 121.69, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1353.52, 1725.98 ) LPos=( 118.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, 1348.92, 1733.28 ) LPos=( 118.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1355.05, 1723.55 ) LPos=( 115.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 115.94, 1353.52, 1725.98 ) LPos=( 115.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, 1351.99, 1728.41 ) LPos=( 115.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, 1348.92, 1733.28 ) LPos=( 115.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, 1334.00, 1756.97 ) LPos=( 87.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, 1338.60, 1749.67 ) LPos=( 87.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, 1340.13, 1747.24 ) LPos=( 87.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1341.66, 1744.81 ) LPos=( 87.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1344.73, 1739.94 ) LPos=( 87.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1338.60, 1749.67 ) LPos=( 90.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 90.81, 1341.66, 1744.81 ) LPos=( 90.81, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1343.19, 1742.38 ) LPos=( 90.81, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 93.69, 1343.19, 1742.38 ) LPos=( 93.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, 1344.73, 1739.94 ) LPos=( 93.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1334.00, 1756.97 ) LPos=( 96.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1337.07, 1752.11 ) LPos=( 96.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 96.56, 1344.73, 1739.94 ) LPos=( 96.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1338.60, 1749.67 ) LPos=( 99.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, 1343.19, 1742.38 ) LPos=( 99.44, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1337.07, 1752.11 ) LPos=( 102.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, 1343.19, 1742.38 ) LPos=( 102.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 102.31, 1344.73, 1739.94 ) LPos=( 102.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 108.06, 1335.53, 1754.54 ) LPos=( 108.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 108.06, 1344.73, 1739.94 ) LPos=( 108.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1350.45, 1730.85 ) LPos=( 102.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, 1350.45, 1730.85 ) LPos=( 99.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1350.45, 1730.85 ) LPos=( 87.94, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 108.06, 1351.99, 1728.41 ) LPos=( 108.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1351.99, 1728.41 ) LPos=( 96.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, 1353.52, 1725.98 ) LPos=( 108.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 99.44, 1353.52, 1725.98 ) LPos=( 99.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 108.06, 1355.05, 1723.55 ) LPos=( 108.06, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, 1355.05, 1723.55 ) LPos=( 93.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 108.06, 1356.58, 1721.11 ) LPos=( 108.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 105.19, 1356.58, 1721.11 ) LPos=( 105.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1356.58, 1721.11 ) LPos=( 102.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 93.69, 1356.58, 1721.11 ) LPos=( 93.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, 1358.11, 1718.68 ) LPos=( 108.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, 1358.11, 1718.68 ) LPos=( 102.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, 1358.11, 1718.68 ) LPos=( 93.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1359.65, 1716.25 ) LPos=( 108.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 105.19, 1359.65, 1716.25 ) LPos=( 105.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, 1359.65, 1716.25 ) LPos=( 102.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 96.56, 1359.65, 1716.25 ) LPos=( 96.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, 1359.65, 1716.25 ) LPos=( 90.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, 1344.73, 1739.94 ) LPos=( 62.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 74.31, 1344.73, 1739.94 ) LPos=( 74.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 77.19, 1344.73, 1739.94 ) LPos=( 77.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, 1343.19, 1742.38 ) LPos=( 68.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, 1341.66, 1744.81 ) LPos=( 59.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1341.66, 1744.81 ) LPos=( 71.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, 1341.66, 1744.81 ) LPos=( 80.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 68.56, 1340.13, 1747.24 ) LPos=( 68.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1340.13, 1747.24 ) LPos=( 71.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, 1340.13, 1747.24 ) LPos=( 77.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, 1340.13, 1747.24 ) LPos=( 80.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 74.31, 1338.60, 1749.67 ) LPos=( 74.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1337.07, 1752.11 ) LPos=( 59.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1337.07, 1752.11 ) LPos=( 65.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 68.56, 1337.07, 1752.11 ) LPos=( 68.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, 1337.07, 1752.11 ) LPos=( 71.44, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, 1337.07, 1752.11 ) LPos=( 74.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 62.81, 1335.53, 1754.54 ) LPos=( 62.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, 1335.53, 1754.54 ) LPos=( 65.69, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 71.44, 1335.53, 1754.54 ) LPos=( 71.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, 1334.00, 1756.97 ) LPos=( 59.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, 1334.00, 1756.97 ) LPos=( 68.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 80.06, 1359.65, 1716.25 ) LPos=( 80.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1348.92, 1733.28 ) LPos=( 80.06, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 77.19, 1355.05, 1723.55 ) LPos=( 77.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, 1353.52, 1725.98 ) LPos=( 77.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, 1355.05, 1723.55 ) LPos=( 74.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, 1351.99, 1728.41 ) LPos=( 74.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1356.58, 1721.11 ) LPos=( 71.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 71.44, 1351.99, 1728.41 ) LPos=( 71.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, 1356.58, 1721.11 ) LPos=( 68.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, 1353.52, 1725.98 ) LPos=( 68.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, 1348.92, 1733.28 ) LPos=( 68.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, 1359.65, 1716.25 ) LPos=( 65.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1356.58, 1721.11 ) LPos=( 65.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 65.69, 1355.05, 1723.55 ) LPos=( 65.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 65.69, 1350.45, 1730.85 ) LPos=( 65.69, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, 1359.65, 1716.25 ) LPos=( 62.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 62.81, 1358.11, 1718.68 ) LPos=( 62.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, 1359.65, 1716.25 ) LPos=( 59.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, 1356.58, 1721.11 ) LPos=( 59.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 31.94, 1334.00, 1756.97 ) LPos=( 31.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 31.94, 1335.53, 1754.54 ) LPos=( 31.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 31.94, 1337.07, 1752.11 ) LPos=( 31.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 31.94, 1338.60, 1749.67 ) LPos=( 31.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, 1340.13, 1747.24 ) LPos=( 31.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, 1340.13, 1747.24 ) LPos=( 34.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, 1344.73, 1739.94 ) LPos=( 34.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 37.69, 1334.00, 1756.97 ) LPos=( 37.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 37.69, 1338.60, 1749.67 ) LPos=( 37.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, 1341.66, 1744.81 ) LPos=( 37.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 37.69, 1344.73, 1739.94 ) LPos=( 37.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 40.56, 1344.73, 1739.94 ) LPos=( 40.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1338.60, 1749.67 ) LPos=( 43.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 43.44, 1340.13, 1747.24 ) LPos=( 43.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 43.44, 1341.66, 1744.81 ) LPos=( 43.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 43.44, 1344.73, 1739.94 ) LPos=( 43.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1334.00, 1756.97 ) LPos=( 46.31, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, 1337.07, 1752.11 ) LPos=( 46.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, 1338.60, 1749.67 ) LPos=( 46.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 46.31, 1340.13, 1747.24 ) LPos=( 46.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1343.19, 1742.38 ) LPos=( 46.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 46.31, 1344.73, 1739.94 ) LPos=( 46.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1337.07, 1752.11 ) LPos=( 49.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1338.60, 1749.67 ) LPos=( 49.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 49.19, 1340.13, 1747.24 ) LPos=( 49.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1344.73, 1739.94 ) LPos=( 49.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1334.00, 1756.97 ) LPos=( 52.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 52.06, 1337.07, 1752.11 ) LPos=( 52.06, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 52.06, 1338.60, 1749.67 ) LPos=( 52.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, 1340.13, 1747.24 ) LPos=( 52.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, 1341.66, 1744.81 ) LPos=( 52.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 52.06, 1343.19, 1742.38 ) LPos=( 52.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, 1348.92, 1733.28 ) LPos=( 46.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, 1348.92, 1733.28 ) LPos=( 37.69, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1348.92, 1733.28 ) LPos=( 34.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 46.31, 1350.45, 1730.85 ) LPos=( 46.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, 1350.45, 1730.85 ) LPos=( 43.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, 1350.45, 1730.85 ) LPos=( 34.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1351.99, 1728.41 ) LPos=( 43.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 40.56, 1351.99, 1728.41 ) LPos=( 40.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1353.52, 1725.98 ) LPos=( 49.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, 1355.05, 1723.55 ) LPos=( 31.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 52.06, 1356.58, 1721.11 ) LPos=( 52.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1356.58, 1721.11 ) LPos=( 31.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1358.11, 1718.68 ) LPos=( 49.19, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, 1358.11, 1718.68 ) LPos=( 40.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1358.11, 1718.68 ) LPos=( 37.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1359.65, 1716.25 ) LPos=( 52.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 49.19, 1359.65, 1716.25 ) LPos=( 49.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 40.56, 1359.65, 1716.25 ) LPos=( 40.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, 1344.73, 1739.94 ) LPos=( 6.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, 1344.73, 1739.94 ) LPos=( 9.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 12.56, 1344.73, 1739.94 ) LPos=( 12.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 15.44, 1344.73, 1739.94 ) LPos=( 15.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, 1344.73, 1739.94 ) LPos=( 18.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1344.73, 1739.94 ) LPos=( 21.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, 1344.73, 1739.94 ) LPos=( 24.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1343.19, 1742.38 ) LPos=( 15.44, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1343.19, 1742.38 ) LPos=( 21.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 24.06, 1343.19, 1742.38 ) LPos=( 24.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1341.66, 1744.81 ) LPos=( 3.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1341.66, 1744.81 ) LPos=( 18.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, 1341.66, 1744.81 ) LPos=( 21.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1341.66, 1744.81 ) LPos=( 24.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3.94, 1340.13, 1747.24 ) LPos=( 3.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, 1340.13, 1747.24 ) LPos=( 9.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1340.13, 1747.24 ) LPos=( 15.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 18.31, 1340.13, 1747.24 ) LPos=( 18.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 21.19, 1340.13, 1747.24 ) LPos=( 21.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, 1340.13, 1747.24 ) LPos=( 24.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, 1338.60, 1749.67 ) LPos=( 3.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, 1338.60, 1749.67 ) LPos=( 6.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 9.69, 1338.60, 1749.67 ) LPos=( 9.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1338.60, 1749.67 ) LPos=( 21.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, 1338.60, 1749.67 ) LPos=( 24.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, 1337.07, 1752.11 ) LPos=( 6.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1337.07, 1752.11 ) LPos=( 12.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, 1337.07, 1752.11 ) LPos=( 15.44, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, 1337.07, 1752.11 ) LPos=( 18.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, 1335.53, 1754.54 ) LPos=( 3.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, 1335.53, 1754.54 ) LPos=( 12.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, 1334.00, 1756.97 ) LPos=( 3.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 9.69, 1334.00, 1756.97 ) LPos=( 9.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 15.44, 1334.00, 1756.97 ) LPos=( 15.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 21.19, 1334.00, 1756.97 ) LPos=( 21.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1358.11, 1718.68 ) LPos=( 24.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, 1351.99, 1728.41 ) LPos=( 24.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, 1348.92, 1733.28 ) LPos=( 24.06, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1351.99, 1728.41 ) LPos=( 21.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1350.45, 1730.85 ) LPos=( 21.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 21.19, 1348.92, 1733.28 ) LPos=( 21.19, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1359.65, 1716.25 ) LPos=( 18.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1358.11, 1718.68 ) LPos=( 18.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, 1348.92, 1733.28 ) LPos=( 18.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1356.58, 1721.11 ) LPos=( 15.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1353.52, 1725.98 ) LPos=( 15.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 15.44, 1351.99, 1728.41 ) LPos=( 15.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 15.44, 1350.45, 1730.85 ) LPos=( 15.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, 1358.11, 1718.68 ) LPos=( 12.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1355.05, 1723.55 ) LPos=( 12.56, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 12.56, 1351.99, 1728.41 ) LPos=( 12.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, 1359.65, 1716.25 ) LPos=( 9.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1356.58, 1721.11 ) LPos=( 9.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, 1355.05, 1723.55 ) LPos=( 9.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1351.99, 1728.41 ) LPos=( 9.69, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 6.81, 1355.05, 1723.55 ) LPos=( 6.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, 1353.52, 1725.98 ) LPos=( 6.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1358.11, 1718.68 ) LPos=( 3.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3.94, 1353.52, 1725.98 ) LPos=( 3.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, 1351.99, 1728.41 ) LPos=( 3.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -24.06, 1334.00, 1756.97 ) LPos=( -24.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, 1338.60, 1749.67 ) LPos=( -24.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, 1340.13, 1747.24 ) LPos=( -24.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, 1341.66, 1744.81 ) LPos=( -24.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, 1343.19, 1742.38 ) LPos=( -24.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, 1344.73, 1739.94 ) LPos=( -24.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1334.00, 1756.97 ) LPos=( -21.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, 1337.07, 1752.11 ) LPos=( -21.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -21.19, 1340.13, 1747.24 ) LPos=( -21.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, 1344.73, 1739.94 ) LPos=( -21.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, 1337.07, 1752.11 ) LPos=( -18.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -18.31, 1340.13, 1747.24 ) LPos=( -18.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1341.66, 1744.81 ) LPos=( -18.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, 1343.19, 1742.38 ) LPos=( -18.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -15.44, 1335.53, 1754.54 ) LPos=( -15.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, 1338.60, 1749.67 ) LPos=( -15.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1341.66, 1744.81 ) LPos=( -15.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -12.56, 1337.07, 1752.11 ) LPos=( -12.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1338.60, 1749.67 ) LPos=( -12.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1341.66, 1744.81 ) LPos=( -12.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1340.13, 1747.24 ) LPos=( -9.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -6.81, 1337.07, 1752.11 ) LPos=( -6.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -6.81, 1340.13, 1747.24 ) LPos=( -6.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -6.81, 1344.73, 1739.94 ) LPos=( -6.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3.94, 1341.66, 1744.81 ) LPos=( -3.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3.94, 1348.92, 1733.28 ) LPos=( -3.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -6.81, 1348.92, 1733.28 ) LPos=( -6.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -18.31, 1348.92, 1733.28 ) LPos=( -18.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -15.44, 1350.45, 1730.85 ) LPos=( -15.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -18.31, 1350.45, 1730.85 ) LPos=( -18.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1350.45, 1730.85 ) LPos=( -21.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -6.81, 1351.99, 1728.41 ) LPos=( -6.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -9.69, 1351.99, 1728.41 ) LPos=( -9.69, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1351.99, 1728.41 ) LPos=( -15.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1351.99, 1728.41 ) LPos=( -18.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1353.52, 1725.98 ) LPos=( -12.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, 1353.52, 1725.98 ) LPos=( -15.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, 1353.52, 1725.98 ) LPos=( -21.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1353.52, 1725.98 ) LPos=( -24.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3.94, 1355.05, 1723.55 ) LPos=( -3.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, 1355.05, 1723.55 ) LPos=( -9.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1355.05, 1723.55 ) LPos=( -12.56, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -15.44, 1355.05, 1723.55 ) LPos=( -15.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3.94, 1356.58, 1721.11 ) LPos=( -3.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1356.58, 1721.11 ) LPos=( -9.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -12.56, 1356.58, 1721.11 ) LPos=( -12.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1358.11, 1718.68 ) LPos=( -6.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -9.69, 1358.11, 1718.68 ) LPos=( -9.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1358.11, 1718.68 ) LPos=( -15.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, 1359.65, 1716.25 ) LPos=( -6.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -12.56, 1359.65, 1716.25 ) LPos=( -12.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, 1359.65, 1716.25 ) LPos=( -15.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1359.65, 1716.25 ) LPos=( -24.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, 1344.73, 1739.94 ) LPos=( -52.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -46.31, 1343.19, 1742.38 ) LPos=( -46.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -40.56, 1343.19, 1742.38 ) LPos=( -40.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -46.31, 1341.66, 1744.81 ) LPos=( -46.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -40.56, 1341.66, 1744.81 ) LPos=( -40.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, 1340.13, 1747.24 ) LPos=( -43.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, 1340.13, 1747.24 ) LPos=( -37.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -31.94, 1340.13, 1747.24 ) LPos=( -31.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, 1338.60, 1749.67 ) LPos=( -46.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, 1338.60, 1749.67 ) LPos=( -31.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, 1337.07, 1752.11 ) LPos=( -37.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -34.81, 1337.07, 1752.11 ) LPos=( -34.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, 1335.53, 1754.54 ) LPos=( -49.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -46.31, 1335.53, 1754.54 ) LPos=( -46.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, 1334.00, 1756.97 ) LPos=( -52.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -31.94, 1359.65, 1716.25 ) LPos=( -31.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1358.11, 1718.68 ) LPos=( -31.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, 1355.05, 1723.55 ) LPos=( -31.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, 1351.99, 1728.41 ) LPos=( -31.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1348.92, 1733.28 ) LPos=( -31.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, 1359.65, 1716.25 ) LPos=( -34.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, 1358.11, 1718.68 ) LPos=( -34.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -34.81, 1355.05, 1723.55 ) LPos=( -34.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1351.99, 1728.41 ) LPos=( -34.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, 1350.45, 1730.85 ) LPos=( -34.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, 1359.65, 1716.25 ) LPos=( -37.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -37.69, 1355.05, 1723.55 ) LPos=( -37.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1351.99, 1728.41 ) LPos=( -37.69, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1359.65, 1716.25 ) LPos=( -40.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -40.56, 1358.11, 1718.68 ) LPos=( -40.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -40.56, 1356.58, 1721.11 ) LPos=( -40.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, 1350.45, 1730.85 ) LPos=( -40.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, 1348.92, 1733.28 ) LPos=( -40.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, 1359.65, 1716.25 ) LPos=( -43.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, 1356.58, 1721.11 ) LPos=( -43.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -43.44, 1350.45, 1730.85 ) LPos=( -43.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1348.92, 1733.28 ) LPos=( -43.44, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -46.31, 1358.11, 1718.68 ) LPos=( -46.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, 1356.58, 1721.11 ) LPos=( -46.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1355.05, 1723.55 ) LPos=( -46.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1351.99, 1728.41 ) LPos=( -46.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -46.31, 1350.45, 1730.85 ) LPos=( -46.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, 1348.92, 1733.28 ) LPos=( -46.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, 1356.58, 1721.11 ) LPos=( -49.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -49.19, 1355.05, 1723.55 ) LPos=( -49.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, 1351.99, 1728.41 ) LPos=( -49.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, 1348.92, 1733.28 ) LPos=( -49.19, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, 1359.65, 1716.25 ) LPos=( -52.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, 1358.11, 1718.68 ) LPos=( -52.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, 1351.99, 1728.41 ) LPos=( -52.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, 1348.92, 1733.28 ) LPos=( -52.06, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1341.66, 1744.81 ) LPos=( -80.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -77.19, 1338.60, 1749.67 ) LPos=( -77.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, 1337.07, 1752.11 ) LPos=( -74.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -74.31, 1338.60, 1749.67 ) LPos=( -74.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -71.44, 1337.07, 1752.11 ) LPos=( -71.44, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -71.44, 1344.73, 1739.94 ) LPos=( -71.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1338.60, 1749.67 ) LPos=( -68.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, 1338.60, 1749.67 ) LPos=( -65.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, 1340.13, 1747.24 ) LPos=( -65.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, 1341.66, 1744.81 ) LPos=( -65.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -65.69, 1344.73, 1739.94 ) LPos=( -65.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -62.81, 1334.00, 1756.97 ) LPos=( -62.81, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, 1338.60, 1749.67 ) LPos=( -62.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -62.81, 1344.73, 1739.94 ) LPos=( -62.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1338.60, 1749.67 ) LPos=( -59.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, 1340.13, 1747.24 ) LPos=( -59.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, 1348.92, 1733.28 ) LPos=( -62.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -77.19, 1348.92, 1733.28 ) LPos=( -77.19, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, 1350.45, 1730.85 ) LPos=( -62.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, 1350.45, 1730.85 ) LPos=( -71.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1351.99, 1728.41 ) LPos=( -59.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -62.81, 1351.99, 1728.41 ) LPos=( -62.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -77.19, 1351.99, 1728.41 ) LPos=( -77.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, 1351.99, 1728.41 ) LPos=( -80.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1353.52, 1725.98 ) LPos=( -62.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -74.31, 1353.52, 1725.98 ) LPos=( -74.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1353.52, 1725.98 ) LPos=( -80.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, 1355.05, 1723.55 ) LPos=( -62.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, 1355.05, 1723.55 ) LPos=( -71.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -74.31, 1355.05, 1723.55 ) LPos=( -74.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, 1356.58, 1721.11 ) LPos=( -59.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, 1356.58, 1721.11 ) LPos=( -62.81, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -71.44, 1358.11, 1718.68 ) LPos=( -71.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, 1358.11, 1718.68 ) LPos=( -74.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, 1359.65, 1716.25 ) LPos=( -65.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, 1359.65, 1716.25 ) LPos=( -68.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -105.19, 1344.73, 1739.94 ) LPos=( -105.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, 1344.73, 1739.94 ) LPos=( -102.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, 1344.73, 1739.94 ) LPos=( -99.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -96.56, 1344.73, 1739.94 ) LPos=( -96.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -108.06, 1343.19, 1742.38 ) LPos=( -108.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -105.19, 1343.19, 1742.38 ) LPos=( -105.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -96.56, 1343.19, 1742.38 ) LPos=( -96.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, 1343.19, 1742.38 ) LPos=( -93.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -105.19, 1341.66, 1744.81 ) LPos=( -105.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -102.31, 1341.66, 1744.81 ) LPos=( -102.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, 1341.66, 1744.81 ) LPos=( -99.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, 1340.13, 1747.24 ) LPos=( -90.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, 1338.60, 1749.67 ) LPos=( -93.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, 1337.07, 1752.11 ) LPos=( -93.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -108.06, 1335.53, 1754.54 ) LPos=( -108.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, 1335.53, 1754.54 ) LPos=( -105.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, 1334.00, 1756.97 ) LPos=( -102.31, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1334.00, 1756.97 ) LPos=( -93.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, 1355.05, 1723.55 ) LPos=( -87.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, 1353.52, 1725.98 ) LPos=( -87.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -87.94, 1350.45, 1730.85 ) LPos=( -87.94, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, 1353.52, 1725.98 ) LPos=( -90.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1350.45, 1730.85 ) LPos=( -90.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, 1348.92, 1733.28 ) LPos=( -90.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, 1358.11, 1718.68 ) LPos=( -96.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, 1355.05, 1723.55 ) LPos=( -96.56, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -96.56, 1350.45, 1730.85 ) LPos=( -96.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -99.44, 1348.92, 1733.28 ) LPos=( -99.44, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1356.58, 1721.11 ) LPos=( -102.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, 1348.92, 1733.28 ) LPos=( -102.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, 1359.65, 1716.25 ) LPos=( -108.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -108.06, 1358.11, 1718.68 ) LPos=( -108.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, 1356.58, 1721.11 ) LPos=( -108.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1355.05, 1723.55 ) LPos=( -108.06, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, 1353.52, 1725.98 ) LPos=( -108.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -136.06, 1337.07, 1752.11 ) LPos=( -136.06, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, 1341.66, 1744.81 ) LPos=( -133.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1335.53, 1754.54 ) LPos=( -130.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1341.66, 1744.81 ) LPos=( -130.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, 1338.60, 1749.67 ) LPos=( -127.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, 1341.66, 1744.81 ) LPos=( -127.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1343.19, 1742.38 ) LPos=( -127.44, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, 1344.73, 1739.94 ) LPos=( -127.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -124.56, 1334.00, 1756.97 ) LPos=( -124.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -124.56, 1344.73, 1739.94 ) LPos=( -124.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -121.69, 1335.53, 1754.54 ) LPos=( -121.69, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, 1337.07, 1752.11 ) LPos=( -121.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -121.69, 1343.19, 1742.38 ) LPos=( -121.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -118.81, 1337.07, 1752.11 ) LPos=( -118.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -118.81, 1338.60, 1749.67 ) LPos=( -118.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -118.81, 1343.19, 1742.38 ) LPos=( -118.81, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, 1344.73, 1739.94 ) LPos=( -118.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1335.53, 1754.54 ) LPos=( -115.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, 1338.60, 1749.67 ) LPos=( -115.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -115.94, 1340.13, 1747.24 ) LPos=( -115.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -115.94, 1341.66, 1744.81 ) LPos=( -115.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, 1350.45, 1730.85 ) LPos=( -124.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, 1350.45, 1730.85 ) LPos=( -127.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -118.81, 1351.99, 1728.41 ) LPos=( -118.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, 1351.99, 1728.41 ) LPos=( -124.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1351.99, 1728.41 ) LPos=( -130.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, 1353.52, 1725.98 ) LPos=( -124.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1353.52, 1725.98 ) LPos=( -127.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -133.19, 1353.52, 1725.98 ) LPos=( -133.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -115.94, 1355.05, 1723.55 ) LPos=( -115.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -121.69, 1355.05, 1723.55 ) LPos=( -121.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, 1355.05, 1723.55 ) LPos=( -130.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1355.05, 1723.55 ) LPos=( -133.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -115.94, 1356.58, 1721.11 ) LPos=( -115.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, 1356.58, 1721.11 ) LPos=( -130.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -133.19, 1356.58, 1721.11 ) LPos=( -133.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -124.56, 1358.11, 1718.68 ) LPos=( -124.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -127.44, 1358.11, 1718.68 ) LPos=( -127.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, 1358.11, 1718.68 ) LPos=( -130.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, 1358.11, 1718.68 ) LPos=( -133.19, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, 1359.65, 1716.25 ) LPos=( -133.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, 1359.65, 1716.25 ) LPos=( -136.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, 1343.19, 1742.38 ) LPos=( -164.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, 1341.66, 1744.81 ) LPos=( -146.81, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -146.81, 1340.13, 1747.24 ) LPos=( -146.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, 1338.60, 1749.67 ) LPos=( -164.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -149.69, 1337.07, 1752.11 ) LPos=( -149.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, 1337.07, 1752.11 ) LPos=( -146.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -152.56, 1335.53, 1754.54 ) LPos=( -152.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -149.69, 1335.53, 1754.54 ) LPos=( -149.69, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, 1334.00, 1756.97 ) LPos=( -143.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -146.81, 1355.05, 1723.55 ) LPos=( -146.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -146.81, 1348.92, 1733.28 ) LPos=( -146.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -161.19, 1356.58, 1721.11 ) LPos=( -161.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -164.06, 1356.58, 1721.11 ) LPos=( -164.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -192.06, 1334.00, 1756.97 ) LPos=( -192.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -192.06, 1343.19, 1742.38 ) LPos=( -192.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, 1343.19, 1742.38 ) LPos=( -186.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -183.44, 1334.00, 1756.97 ) LPos=( -183.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -183.44, 1335.53, 1754.54 ) LPos=( -183.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, 1340.13, 1747.24 ) LPos=( -183.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -183.44, 1344.73, 1739.94 ) LPos=( -183.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -180.56, 1335.53, 1754.54 ) LPos=( -180.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -180.56, 1337.07, 1752.11 ) LPos=( -180.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -177.69, 1338.60, 1749.67 ) LPos=( -177.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -177.69, 1340.13, 1747.24 ) LPos=( -177.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -174.81, 1340.13, 1747.24 ) LPos=( -174.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, 1337.07, 1752.11 ) LPos=( -171.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -183.44, 1350.45, 1730.85 ) LPos=( -183.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, 1350.45, 1730.85 ) LPos=( -189.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -177.69, 1353.52, 1725.98 ) LPos=( -177.69, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, 1353.52, 1725.98 ) LPos=( -183.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -183.44, 1355.05, 1723.55 ) LPos=( -183.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -186.31, 1355.05, 1723.55 ) LPos=( -186.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, 1355.05, 1723.55 ) LPos=( -192.06, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -183.44, 1356.58, 1721.11 ) LPos=( -183.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -192.06, 1356.58, 1721.11 ) LPos=( -192.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -192.06, 1359.65, 1716.25 ) LPos=( -192.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -220.06, 1338.60, 1749.67 ) LPos=( -220.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -208.56, 1335.53, 1754.54 ) LPos=( -208.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -220.06, 1334.00, 1756.97 ) LPos=( -220.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -199.94, 1334.00, 1756.97 ) LPos=( -199.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -208.56, 1348.92, 1733.28 ) LPos=( -208.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -214.31, 1351.99, 1728.41 ) LPos=( -214.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -217.19, 1351.99, 1728.41 ) LPos=( -217.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -220.06, 1350.45, 1730.85 ) LPos=( -220.06, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -248.06, 1338.60, 1749.67 ) LPos=( -248.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -242.31, 1335.53, 1754.54 ) LPos=( -242.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -242.31, 1338.60, 1749.67 ) LPos=( -242.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -239.44, 1334.00, 1756.97 ) LPos=( -239.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -230.81, 1334.00, 1756.97 ) LPos=( -230.81, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -239.44, 1353.52, 1725.98 ) LPos=( -239.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -248.06, 1359.65, 1716.25 ) LPos=( -248.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -264.56, 1344.73, 1739.94 ) LPos=( -264.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -261.69, 1344.73, 1739.94 ) LPos=( -261.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -255.94, 1337.07, 1752.11 ) LPos=( -255.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -255.94, 1335.53, 1754.54 ) LPos=( -255.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -273.19, 1350.45, 1730.85 ) LPos=( -273.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -301.19, 1335.53, 1754.54 ) LPos=( -301.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -301.19, 1338.60, 1749.67 ) LPos=( -301.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -301.19, 1344.73, 1739.94 ) LPos=( -301.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -298.31, 1337.07, 1752.11 ) LPos=( -298.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -295.44, 1335.53, 1754.54 ) LPos=( -295.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -292.56, 1337.07, 1752.11 ) LPos=( -292.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -292.56, 1343.19, 1742.38 ) LPos=( -292.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -289.69, 1343.19, 1742.38 ) LPos=( -289.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -289.69, 1344.73, 1739.94 ) LPos=( -289.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -286.81, 1344.73, 1739.94 ) LPos=( -286.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -283.94, 1340.13, 1747.24 ) LPos=( -283.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -298.31, 1348.92, 1733.28 ) LPos=( -298.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -295.44, 1350.45, 1730.85 ) LPos=( -295.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -298.31, 1350.45, 1730.85 ) LPos=( -298.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -295.44, 1351.99, 1728.41 ) LPos=( -295.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -304.06, 1353.52, 1725.98 ) LPos=( -304.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -283.94, 1355.05, 1723.55 ) LPos=( -283.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -298.31, 1355.05, 1723.55 ) LPos=( -298.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -301.19, 1356.58, 1721.11 ) LPos=( -301.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -298.31, 1358.11, 1718.68 ) LPos=( -298.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -304.06, 1358.11, 1718.68 ) LPos=( -304.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -292.56, 1359.65, 1716.25 ) LPos=( -292.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -298.31, 1359.65, 1716.25 ) LPos=( -298.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -314.81, 1344.73, 1739.94 ) LPos=( -314.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -314.81, 1341.66, 1744.81 ) LPos=( -314.81, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -320.56, 1340.13, 1747.24 ) LPos=( -320.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -314.81, 1338.60, 1749.67 ) LPos=( -314.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -311.94, 1338.60, 1749.67 ) LPos=( -311.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -323.44, 1335.53, 1754.54 ) LPos=( -323.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -314.81, 1358.11, 1718.68 ) LPos=( -314.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -326.31, 1359.65, 1716.25 ) LPos=( -326.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -332.06, 1358.11, 1718.68 ) LPos=( -332.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -354.31, 1338.60, 1749.67 ) LPos=( -354.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -351.44, 1341.66, 1744.81 ) LPos=( -351.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -339.94, 1334.00, 1756.97 ) LPos=( -339.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -339.94, 1341.66, 1744.81 ) LPos=( -339.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -348.56, 1356.58, 1721.11 ) LPos=( -348.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -373.69, 1343.19, 1742.38 ) LPos=( -373.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1340.13, 1747.24 ) LPos=( -376.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -376.56, 1358.11, 1718.68 ) LPos=( -376.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -379.44, 1359.65, 1716.25 ) LPos=( -379.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -410.31, 1344.73, 1739.94 ) LPos=( -410.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -413.19, 1351.99, 1728.41 ) LPos=( -413.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -416.06, 1351.99, 1728.41 ) LPos=( -416.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -401.69, 1353.52, 1725.98 ) LPos=( -401.69, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -404.56, 1353.52, 1725.98 ) LPos=( -404.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -413.19, 1353.52, 1725.98 ) LPos=( -413.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -398.81, 1356.58, 1721.11 ) LPos=( -398.81, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -398.81, 1359.65, 1716.25 ) LPos=( -398.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -413.19, 1359.65, 1716.25 ) LPos=( -413.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -432.56, 1335.53, 1754.54 ) LPos=( -432.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -432.56, 1334.00, 1756.97 ) LPos=( -432.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -423.94, 1359.65, 1716.25 ) LPos=( -423.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -426.81, 1355.05, 1723.55 ) LPos=( -426.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -432.56, 1353.52, 1725.98 ) LPos=( -432.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -432.56, 1350.45, 1730.85 ) LPos=( -432.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -435.44, 1353.52, 1725.98 ) LPos=( -435.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -435.44, 1351.99, 1728.41 ) LPos=( -435.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -441.19, 1355.05, 1723.55 ) LPos=( -441.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -469.19, 1334.00, 1756.97 ) LPos=( -469.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -463.44, 1358.11, 1718.68 ) LPos=( -463.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -485.69, 1337.07, 1752.11 ) LPos=( -485.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -513.69, 1340.13, 1747.24 ) LPos=( -513.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -510.81, 1340.13, 1747.24 ) LPos=( -510.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -538.81, 1353.52, 1725.98 ) LPos=( -538.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -581.19, 1337.07, 1752.11 ) LPos=( -581.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -563.94, 1337.07, 1752.11 ) LPos=( -563.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -609.19, 1344.73, 1739.94 ) LPos=( -609.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -603.44, 1355.05, 1723.55 ) LPos=( -603.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -606.31, 1353.52, 1725.98 ) LPos=( -606.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 609.19, 1306.96, 1799.92 ) LPos=( 609.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 609.19, 1310.02, 1795.05 ) LPos=( 609.19, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 609.19, 1311.55, 1792.62 ) LPos=( 609.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 612.06, 1310.02, 1795.05 ) LPos=( 612.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 569.69, 1329.54, 1764.06 ) LPos=( 569.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 569.69, 1328.01, 1766.49 ) LPos=( 569.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 563.94, 1326.47, 1768.92 ) LPos=( 563.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 535.94, 1306.96, 1799.92 ) LPos=( 535.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 553.19, 1313.09, 1790.19 ) LPos=( 553.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1314.62, 1787.75 ) LPos=( 556.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 544.56, 1329.54, 1764.06 ) LPos=( 544.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 510.81, 1314.62, 1787.75 ) LPos=( 510.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 519.44, 1306.96, 1799.92 ) LPos=( 519.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 528.06, 1326.47, 1768.92 ) LPos=( 528.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 522.31, 1324.94, 1771.36 ) LPos=( 522.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 522.31, 1323.41, 1773.79 ) LPos=( 522.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 513.69, 1320.35, 1778.66 ) LPos=( 513.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 479.94, 1308.49, 1797.48 ) LPos=( 479.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 488.56, 1305.43, 1802.35 ) LPos=( 488.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 497.19, 1308.49, 1797.48 ) LPos=( 497.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 500.06, 1305.43, 1802.35 ) LPos=( 500.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 485.69, 1328.01, 1766.49 ) LPos=( 485.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 460.56, 1313.09, 1790.19 ) LPos=( 460.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 454.81, 1306.96, 1799.92 ) LPos=( 454.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 463.44, 1329.54, 1764.06 ) LPos=( 463.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 463.44, 1328.01, 1766.49 ) LPos=( 463.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 457.69, 1326.47, 1768.92 ) LPos=( 457.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 429.69, 1311.55, 1792.62 ) LPos=( 429.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 441.19, 1303.89, 1804.78 ) LPos=( 441.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 441.19, 1306.96, 1799.92 ) LPos=( 441.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 438.31, 1329.54, 1764.06 ) LPos=( 438.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 395.94, 1311.55, 1792.62 ) LPos=( 395.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 395.94, 1310.02, 1795.05 ) LPos=( 395.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 398.81, 1310.02, 1795.05 ) LPos=( 398.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 404.56, 1310.02, 1795.05 ) LPos=( 404.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 407.44, 1308.49, 1797.48 ) LPos=( 407.44, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 395.94, 1306.96, 1799.92 ) LPos=( 395.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 398.81, 1306.96, 1799.92 ) LPos=( 398.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 404.56, 1306.96, 1799.92 ) LPos=( 404.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 398.81, 1305.43, 1802.35 ) LPos=( 398.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 410.31, 1303.89, 1804.78 ) LPos=( 410.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 401.69, 1328.01, 1766.49 ) LPos=( 401.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 401.69, 1321.88, 1776.22 ) LPos=( 401.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 395.94, 1324.94, 1771.36 ) LPos=( 395.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 367.94, 1310.02, 1795.05 ) LPos=( 367.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 376.56, 1303.89, 1804.78 ) LPos=( 376.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, 1314.62, 1787.75 ) LPos=( 382.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 388.06, 1311.55, 1792.62 ) LPos=( 388.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 388.06, 1313.09, 1790.19 ) LPos=( 388.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 388.06, 1314.62, 1787.75 ) LPos=( 388.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 379.44, 1321.88, 1776.22 ) LPos=( 379.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 354.31, 1313.09, 1790.19 ) LPos=( 354.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1313.09, 1790.19 ) LPos=( 357.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 345.69, 1306.96, 1799.92 ) LPos=( 345.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 348.56, 1306.96, 1799.92 ) LPos=( 348.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, 1328.01, 1766.49 ) LPos=( 360.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 360.06, 1321.88, 1776.22 ) LPos=( 360.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 360.06, 1320.35, 1778.66 ) LPos=( 360.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 360.06, 1318.81, 1781.09 ) LPos=( 360.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 357.19, 1324.94, 1771.36 ) LPos=( 357.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1320.35, 1778.66 ) LPos=( 357.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 354.31, 1324.94, 1771.36 ) LPos=( 354.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 354.31, 1321.88, 1776.22 ) LPos=( 354.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 354.31, 1318.81, 1781.09 ) LPos=( 354.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 351.44, 1328.01, 1766.49 ) LPos=( 351.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 351.44, 1321.88, 1776.22 ) LPos=( 351.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 348.56, 1318.81, 1781.09 ) LPos=( 348.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 342.81, 1320.35, 1778.66 ) LPos=( 342.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 339.94, 1320.35, 1778.66 ) LPos=( 339.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 339.94, 1318.81, 1781.09 ) LPos=( 339.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 311.94, 1314.62, 1787.75 ) LPos=( 311.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, 1305.43, 1802.35 ) LPos=( 314.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 317.69, 1306.96, 1799.92 ) LPos=( 317.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 317.69, 1308.49, 1797.48 ) LPos=( 317.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 329.19, 1314.62, 1787.75 ) LPos=( 329.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 311.94, 1321.88, 1776.22 ) LPos=( 311.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 311.94, 1323.41, 1773.79 ) LPos=( 311.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 323.44, 1328.01, 1766.49 ) LPos=( 323.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, 1314.62, 1787.75 ) LPos=( 304.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 298.31, 1313.09, 1790.19 ) LPos=( 298.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 295.44, 1311.55, 1792.62 ) LPos=( 295.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 286.81, 1310.02, 1795.05 ) LPos=( 286.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 289.69, 1310.02, 1795.05 ) LPos=( 289.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, 1308.49, 1797.48 ) LPos=( 283.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 286.81, 1308.49, 1797.48 ) LPos=( 286.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 289.69, 1308.49, 1797.48 ) LPos=( 289.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 283.94, 1306.96, 1799.92 ) LPos=( 283.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 304.06, 1306.96, 1799.92 ) LPos=( 304.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 298.31, 1305.43, 1802.35 ) LPos=( 298.31, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 301.19, 1305.43, 1802.35 ) LPos=( 301.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, 1303.89, 1804.78 ) LPos=( 283.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 286.81, 1303.89, 1804.78 ) LPos=( 286.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 295.44, 1303.89, 1804.78 ) LPos=( 295.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 304.06, 1329.54, 1764.06 ) LPos=( 304.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, 1326.47, 1768.92 ) LPos=( 304.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 301.19, 1323.41, 1773.79 ) LPos=( 301.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 261.69, 1306.96, 1799.92 ) LPos=( 261.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 261.69, 1311.55, 1792.62 ) LPos=( 261.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 267.44, 1310.02, 1795.05 ) LPos=( 267.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 273.19, 1313.09, 1790.19 ) LPos=( 273.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 273.19, 1314.62, 1787.75 ) LPos=( 273.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 276.06, 1311.55, 1792.62 ) LPos=( 276.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 258.81, 1318.81, 1781.09 ) LPos=( 258.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1328.01, 1766.49 ) LPos=( 273.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 255.94, 1328.01, 1766.49 ) LPos=( 255.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, 1313.09, 1790.19 ) LPos=( 227.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 245.19, 1311.55, 1792.62 ) LPos=( 245.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 230.81, 1306.96, 1799.92 ) LPos=( 230.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 236.56, 1303.89, 1804.78 ) LPos=( 236.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 239.44, 1303.89, 1804.78 ) LPos=( 239.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 242.31, 1303.89, 1804.78 ) LPos=( 242.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, 1323.41, 1773.79 ) LPos=( 248.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, 1328.01, 1766.49 ) LPos=( 245.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 245.19, 1318.81, 1781.09 ) LPos=( 245.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 239.44, 1320.35, 1778.66 ) LPos=( 239.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 236.56, 1328.01, 1766.49 ) LPos=( 236.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 233.69, 1323.41, 1773.79 ) LPos=( 233.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 227.94, 1329.54, 1764.06 ) LPos=( 227.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, 1328.01, 1766.49 ) LPos=( 227.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 227.94, 1320.35, 1778.66 ) LPos=( 227.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 227.94, 1318.81, 1781.09 ) LPos=( 227.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 199.94, 1310.02, 1795.05 ) LPos=( 199.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 199.94, 1313.09, 1790.19 ) LPos=( 199.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1314.62, 1787.75 ) LPos=( 199.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 202.81, 1303.89, 1804.78 ) LPos=( 202.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 208.56, 1310.02, 1795.05 ) LPos=( 208.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 214.31, 1313.09, 1790.19 ) LPos=( 214.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 217.19, 1308.49, 1797.48 ) LPos=( 217.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 220.06, 1306.96, 1799.92 ) LPos=( 220.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, 1311.55, 1792.62 ) LPos=( 220.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 214.31, 1318.81, 1781.09 ) LPos=( 214.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 208.56, 1318.81, 1781.09 ) LPos=( 208.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 202.81, 1318.81, 1781.09 ) LPos=( 202.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 214.31, 1321.88, 1776.22 ) LPos=( 214.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 205.69, 1321.88, 1776.22 ) LPos=( 205.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 214.31, 1323.41, 1773.79 ) LPos=( 214.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 205.69, 1323.41, 1773.79 ) LPos=( 205.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 202.81, 1324.94, 1771.36 ) LPos=( 202.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 199.94, 1324.94, 1771.36 ) LPos=( 199.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 199.94, 1329.54, 1764.06 ) LPos=( 199.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 177.69, 1314.62, 1787.75 ) LPos=( 177.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 180.56, 1314.62, 1787.75 ) LPos=( 180.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 171.94, 1313.09, 1790.19 ) LPos=( 171.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 174.81, 1313.09, 1790.19 ) LPos=( 174.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 180.56, 1313.09, 1790.19 ) LPos=( 180.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 186.31, 1313.09, 1790.19 ) LPos=( 186.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 189.19, 1313.09, 1790.19 ) LPos=( 189.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 192.06, 1313.09, 1790.19 ) LPos=( 192.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 171.94, 1311.55, 1792.62 ) LPos=( 171.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 183.44, 1311.55, 1792.62 ) LPos=( 183.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, 1310.02, 1795.05 ) LPos=( 183.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 186.31, 1310.02, 1795.05 ) LPos=( 186.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 171.94, 1308.49, 1797.48 ) LPos=( 171.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 189.19, 1305.43, 1802.35 ) LPos=( 189.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 189.19, 1303.89, 1804.78 ) LPos=( 189.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 192.06, 1320.35, 1778.66 ) LPos=( 192.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, 1323.41, 1773.79 ) LPos=( 189.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 189.19, 1321.88, 1776.22 ) LPos=( 189.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, 1329.54, 1764.06 ) LPos=( 183.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, 1328.01, 1766.49 ) LPos=( 183.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 183.44, 1326.47, 1768.92 ) LPos=( 183.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, 1323.41, 1773.79 ) LPos=( 183.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 183.44, 1321.88, 1776.22 ) LPos=( 183.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 180.56, 1326.47, 1768.92 ) LPos=( 180.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 177.69, 1329.54, 1764.06 ) LPos=( 177.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, 1324.94, 1771.36 ) LPos=( 177.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 177.69, 1318.81, 1781.09 ) LPos=( 177.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 174.81, 1329.54, 1764.06 ) LPos=( 174.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, 1328.01, 1766.49 ) LPos=( 174.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 174.81, 1323.41, 1773.79 ) LPos=( 174.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 174.81, 1318.81, 1781.09 ) LPos=( 174.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, 1329.54, 1764.06 ) LPos=( 171.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 171.94, 1328.01, 1766.49 ) LPos=( 171.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 171.94, 1326.47, 1768.92 ) LPos=( 171.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 171.94, 1324.94, 1771.36 ) LPos=( 171.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, 1321.88, 1776.22 ) LPos=( 171.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 171.94, 1320.35, 1778.66 ) LPos=( 171.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 143.94, 1303.89, 1804.78 ) LPos=( 143.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 143.94, 1305.43, 1802.35 ) LPos=( 143.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, 1308.49, 1797.48 ) LPos=( 143.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 143.94, 1313.09, 1790.19 ) LPos=( 143.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 146.81, 1305.43, 1802.35 ) LPos=( 146.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 146.81, 1306.96, 1799.92 ) LPos=( 146.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 146.81, 1308.49, 1797.48 ) LPos=( 146.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 146.81, 1310.02, 1795.05 ) LPos=( 146.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 146.81, 1311.55, 1792.62 ) LPos=( 146.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 146.81, 1313.09, 1790.19 ) LPos=( 146.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 149.69, 1306.96, 1799.92 ) LPos=( 149.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 149.69, 1308.49, 1797.48 ) LPos=( 149.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 149.69, 1311.55, 1792.62 ) LPos=( 149.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 149.69, 1314.62, 1787.75 ) LPos=( 149.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 152.56, 1313.09, 1790.19 ) LPos=( 152.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 152.56, 1314.62, 1787.75 ) LPos=( 152.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, 1313.09, 1790.19 ) LPos=( 155.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 155.44, 1314.62, 1787.75 ) LPos=( 155.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 158.31, 1311.55, 1792.62 ) LPos=( 158.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 158.31, 1313.09, 1790.19 ) LPos=( 158.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 158.31, 1314.62, 1787.75 ) LPos=( 158.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 161.19, 1314.62, 1787.75 ) LPos=( 161.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 158.31, 1318.81, 1781.09 ) LPos=( 158.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1318.81, 1781.09 ) LPos=( 152.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, 1318.81, 1781.09 ) LPos=( 149.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 146.81, 1318.81, 1781.09 ) LPos=( 146.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 161.19, 1320.35, 1778.66 ) LPos=( 161.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 158.31, 1320.35, 1778.66 ) LPos=( 158.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 155.44, 1320.35, 1778.66 ) LPos=( 155.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 152.56, 1320.35, 1778.66 ) LPos=( 152.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1320.35, 1778.66 ) LPos=( 149.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 161.19, 1321.88, 1776.22 ) LPos=( 161.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 164.06, 1323.41, 1773.79 ) LPos=( 164.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 155.44, 1323.41, 1773.79 ) LPos=( 155.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 149.69, 1323.41, 1773.79 ) LPos=( 149.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 143.94, 1323.41, 1773.79 ) LPos=( 143.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 164.06, 1324.94, 1771.36 ) LPos=( 164.06, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 161.19, 1324.94, 1771.36 ) LPos=( 161.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 158.31, 1324.94, 1771.36 ) LPos=( 158.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 152.56, 1324.94, 1771.36 ) LPos=( 152.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 155.44, 1326.47, 1768.92 ) LPos=( 155.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 152.56, 1326.47, 1768.92 ) LPos=( 152.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 146.81, 1326.47, 1768.92 ) LPos=( 146.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 164.06, 1328.01, 1766.49 ) LPos=( 164.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 152.56, 1328.01, 1766.49 ) LPos=( 152.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, 1328.01, 1766.49 ) LPos=( 143.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, 1329.54, 1764.06 ) LPos=( 164.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 161.19, 1329.54, 1764.06 ) LPos=( 161.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 149.69, 1329.54, 1764.06 ) LPos=( 149.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 143.94, 1329.54, 1764.06 ) LPos=( 143.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 115.94, 1314.62, 1787.75 ) LPos=( 115.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1314.62, 1787.75 ) LPos=( 124.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1313.09, 1790.19 ) LPos=( 118.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 121.69, 1313.09, 1790.19 ) LPos=( 121.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, 1313.09, 1790.19 ) LPos=( 127.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, 1313.09, 1790.19 ) LPos=( 130.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, 1313.09, 1790.19 ) LPos=( 133.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 115.94, 1311.55, 1792.62 ) LPos=( 115.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 118.81, 1311.55, 1792.62 ) LPos=( 118.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, 1311.55, 1792.62 ) LPos=( 121.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 133.19, 1311.55, 1792.62 ) LPos=( 133.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, 1310.02, 1795.05 ) LPos=( 118.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, 1310.02, 1795.05 ) LPos=( 121.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1310.02, 1795.05 ) LPos=( 124.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1310.02, 1795.05 ) LPos=( 127.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, 1310.02, 1795.05 ) LPos=( 130.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 136.06, 1310.02, 1795.05 ) LPos=( 136.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 115.94, 1308.49, 1797.48 ) LPos=( 115.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 118.81, 1308.49, 1797.48 ) LPos=( 118.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 121.69, 1308.49, 1797.48 ) LPos=( 121.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 133.19, 1308.49, 1797.48 ) LPos=( 133.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, 1306.96, 1799.92 ) LPos=( 115.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 118.81, 1306.96, 1799.92 ) LPos=( 118.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 124.56, 1306.96, 1799.92 ) LPos=( 124.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 127.44, 1306.96, 1799.92 ) LPos=( 127.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 133.19, 1306.96, 1799.92 ) LPos=( 133.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, 1306.96, 1799.92 ) LPos=( 136.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, 1305.43, 1802.35 ) LPos=( 115.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1305.43, 1802.35 ) LPos=( 124.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 136.06, 1305.43, 1802.35 ) LPos=( 136.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1303.89, 1804.78 ) LPos=( 115.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, 1303.89, 1804.78 ) LPos=( 121.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 127.44, 1303.89, 1804.78 ) LPos=( 127.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 130.31, 1303.89, 1804.78 ) LPos=( 130.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, 1303.89, 1804.78 ) LPos=( 133.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 136.06, 1326.47, 1768.92 ) LPos=( 136.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 136.06, 1321.88, 1776.22 ) LPos=( 136.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 133.19, 1328.01, 1766.49 ) LPos=( 133.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 133.19, 1323.41, 1773.79 ) LPos=( 133.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, 1321.88, 1776.22 ) LPos=( 133.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, 1320.35, 1778.66 ) LPos=( 133.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 130.31, 1329.54, 1764.06 ) LPos=( 130.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 130.31, 1326.47, 1768.92 ) LPos=( 130.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, 1324.94, 1771.36 ) LPos=( 130.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 130.31, 1323.41, 1773.79 ) LPos=( 130.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1321.88, 1776.22 ) LPos=( 130.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, 1320.35, 1778.66 ) LPos=( 130.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 127.44, 1328.01, 1766.49 ) LPos=( 127.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 127.44, 1326.47, 1768.92 ) LPos=( 127.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 127.44, 1324.94, 1771.36 ) LPos=( 127.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1323.41, 1773.79 ) LPos=( 127.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 127.44, 1321.88, 1776.22 ) LPos=( 127.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, 1320.35, 1778.66 ) LPos=( 127.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 124.56, 1326.47, 1768.92 ) LPos=( 124.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1324.94, 1771.36 ) LPos=( 124.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, 1329.54, 1764.06 ) LPos=( 121.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 121.69, 1328.01, 1766.49 ) LPos=( 121.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 121.69, 1324.94, 1771.36 ) LPos=( 121.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 121.69, 1323.41, 1773.79 ) LPos=( 121.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, 1321.88, 1776.22 ) LPos=( 121.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 121.69, 1320.35, 1778.66 ) LPos=( 121.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, 1328.01, 1766.49 ) LPos=( 118.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1323.41, 1773.79 ) LPos=( 118.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 118.81, 1321.88, 1776.22 ) LPos=( 118.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 118.81, 1320.35, 1778.66 ) LPos=( 118.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, 1318.81, 1781.09 ) LPos=( 118.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1329.54, 1764.06 ) LPos=( 115.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 115.94, 1326.47, 1768.92 ) LPos=( 115.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1324.94, 1771.36 ) LPos=( 115.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 115.94, 1323.41, 1773.79 ) LPos=( 115.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, 1321.88, 1776.22 ) LPos=( 115.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, 1318.81, 1781.09 ) LPos=( 115.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, 1303.89, 1804.78 ) LPos=( 87.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 87.94, 1306.96, 1799.92 ) LPos=( 87.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, 1310.02, 1795.05 ) LPos=( 87.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 90.81, 1303.89, 1804.78 ) LPos=( 90.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 90.81, 1310.02, 1795.05 ) LPos=( 90.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 90.81, 1311.55, 1792.62 ) LPos=( 90.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1313.09, 1790.19 ) LPos=( 90.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 90.81, 1314.62, 1787.75 ) LPos=( 90.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, 1306.96, 1799.92 ) LPos=( 93.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, 1310.02, 1795.05 ) LPos=( 93.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, 1311.55, 1792.62 ) LPos=( 93.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1303.89, 1804.78 ) LPos=( 96.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 96.56, 1305.43, 1802.35 ) LPos=( 96.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1306.96, 1799.92 ) LPos=( 96.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, 1310.02, 1795.05 ) LPos=( 96.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, 1303.89, 1804.78 ) LPos=( 99.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, 1305.43, 1802.35 ) LPos=( 99.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1308.49, 1797.48 ) LPos=( 99.44, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, 1310.02, 1795.05 ) LPos=( 99.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 99.44, 1311.55, 1792.62 ) LPos=( 99.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1306.96, 1799.92 ) LPos=( 102.31, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, 1310.02, 1795.05 ) LPos=( 102.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, 1313.09, 1790.19 ) LPos=( 102.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 105.19, 1306.96, 1799.92 ) LPos=( 105.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 105.19, 1311.55, 1792.62 ) LPos=( 105.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, 1314.62, 1787.75 ) LPos=( 105.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1303.89, 1804.78 ) LPos=( 108.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, 1311.55, 1792.62 ) LPos=( 108.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, 1313.09, 1790.19 ) LPos=( 108.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 108.06, 1314.62, 1787.75 ) LPos=( 108.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 108.06, 1318.81, 1781.09 ) LPos=( 108.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1318.81, 1781.09 ) LPos=( 105.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 99.44, 1318.81, 1781.09 ) LPos=( 99.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 96.56, 1318.81, 1781.09 ) LPos=( 96.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1318.81, 1781.09 ) LPos=( 93.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1320.35, 1778.66 ) LPos=( 105.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, 1320.35, 1778.66 ) LPos=( 99.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, 1320.35, 1778.66 ) LPos=( 96.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 108.06, 1321.88, 1776.22 ) LPos=( 108.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1321.88, 1776.22 ) LPos=( 96.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 90.81, 1321.88, 1776.22 ) LPos=( 90.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, 1323.41, 1773.79 ) LPos=( 108.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1323.41, 1773.79 ) LPos=( 90.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 105.19, 1324.94, 1771.36 ) LPos=( 105.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, 1324.94, 1771.36 ) LPos=( 93.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 93.69, 1326.47, 1768.92 ) LPos=( 93.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, 1328.01, 1766.49 ) LPos=( 108.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, 1328.01, 1766.49 ) LPos=( 102.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 99.44, 1328.01, 1766.49 ) LPos=( 99.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, 1328.01, 1766.49 ) LPos=( 93.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, 1328.01, 1766.49 ) LPos=( 90.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, 1329.54, 1764.06 ) LPos=( 102.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 99.44, 1329.54, 1764.06 ) LPos=( 99.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, 1329.54, 1764.06 ) LPos=( 93.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1314.62, 1787.75 ) LPos=( 68.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 74.31, 1314.62, 1787.75 ) LPos=( 74.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, 1313.09, 1790.19 ) LPos=( 68.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, 1311.55, 1792.62 ) LPos=( 77.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, 1311.55, 1792.62 ) LPos=( 80.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, 1310.02, 1795.05 ) LPos=( 62.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, 1310.02, 1795.05 ) LPos=( 77.19, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, 1310.02, 1795.05 ) LPos=( 80.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, 1308.49, 1797.48 ) LPos=( 65.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1308.49, 1797.48 ) LPos=( 68.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 77.19, 1308.49, 1797.48 ) LPos=( 77.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1306.96, 1799.92 ) LPos=( 65.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, 1306.96, 1799.92 ) LPos=( 71.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1306.96, 1799.92 ) LPos=( 77.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 80.06, 1305.43, 1802.35 ) LPos=( 80.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, 1303.89, 1804.78 ) LPos=( 65.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, 1303.89, 1804.78 ) LPos=( 68.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 80.06, 1329.54, 1764.06 ) LPos=( 80.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, 1328.01, 1766.49 ) LPos=( 80.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, 1320.35, 1778.66 ) LPos=( 80.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 77.19, 1329.54, 1764.06 ) LPos=( 77.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 77.19, 1324.94, 1771.36 ) LPos=( 77.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1320.35, 1778.66 ) LPos=( 77.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 74.31, 1328.01, 1766.49 ) LPos=( 74.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1323.41, 1773.79 ) LPos=( 71.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 71.44, 1320.35, 1778.66 ) LPos=( 71.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 68.56, 1321.88, 1776.22 ) LPos=( 68.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, 1318.81, 1781.09 ) LPos=( 68.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, 1329.54, 1764.06 ) LPos=( 65.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, 1328.01, 1766.49 ) LPos=( 65.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 65.69, 1324.94, 1771.36 ) LPos=( 65.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 65.69, 1323.41, 1773.79 ) LPos=( 65.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 65.69, 1321.88, 1776.22 ) LPos=( 65.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, 1318.81, 1781.09 ) LPos=( 65.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 62.81, 1326.47, 1768.92 ) LPos=( 62.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, 1324.94, 1771.36 ) LPos=( 62.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 62.81, 1318.81, 1781.09 ) LPos=( 62.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, 1324.94, 1771.36 ) LPos=( 59.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, 1321.88, 1776.22 ) LPos=( 59.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 59.94, 1318.81, 1781.09 ) LPos=( 59.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 31.94, 1313.09, 1790.19 ) LPos=( 31.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, 1314.62, 1787.75 ) LPos=( 31.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, 1310.02, 1795.05 ) LPos=( 34.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, 1305.43, 1802.35 ) LPos=( 37.69, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, 1306.96, 1799.92 ) LPos=( 40.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, 1311.55, 1792.62 ) LPos=( 40.56, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 43.44, 1306.96, 1799.92 ) LPos=( 43.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1303.89, 1804.78 ) LPos=( 46.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1313.09, 1790.19 ) LPos=( 46.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 49.19, 1303.89, 1804.78 ) LPos=( 49.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1308.49, 1797.48 ) LPos=( 49.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, 1311.55, 1792.62 ) LPos=( 52.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 52.06, 1318.81, 1781.09 ) LPos=( 52.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, 1318.81, 1781.09 ) LPos=( 40.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1318.81, 1781.09 ) LPos=( 34.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 37.69, 1320.35, 1778.66 ) LPos=( 37.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, 1320.35, 1778.66 ) LPos=( 34.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, 1321.88, 1776.22 ) LPos=( 52.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, 1321.88, 1776.22 ) LPos=( 49.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, 1321.88, 1776.22 ) LPos=( 46.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1321.88, 1776.22 ) LPos=( 43.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, 1321.88, 1776.22 ) LPos=( 37.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 34.81, 1321.88, 1776.22 ) LPos=( 34.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, 1323.41, 1773.79 ) LPos=( 52.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1323.41, 1773.79 ) LPos=( 49.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 46.31, 1323.41, 1773.79 ) LPos=( 46.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 43.44, 1323.41, 1773.79 ) LPos=( 43.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 49.19, 1324.94, 1771.36 ) LPos=( 49.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1324.94, 1771.36 ) LPos=( 46.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1324.94, 1771.36 ) LPos=( 43.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, 1326.47, 1768.92 ) LPos=( 46.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1326.47, 1768.92 ) LPos=( 43.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 40.56, 1326.47, 1768.92 ) LPos=( 40.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, 1326.47, 1768.92 ) LPos=( 37.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1326.47, 1768.92 ) LPos=( 31.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 52.06, 1328.01, 1766.49 ) LPos=( 52.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1328.01, 1766.49 ) LPos=( 49.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1328.01, 1766.49 ) LPos=( 37.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, 1328.01, 1766.49 ) LPos=( 34.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 31.94, 1328.01, 1766.49 ) LPos=( 31.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 37.69, 1329.54, 1764.06 ) LPos=( 37.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 34.81, 1329.54, 1764.06 ) LPos=( 34.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 31.94, 1329.54, 1764.06 ) LPos=( 31.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, 1314.62, 1787.75 ) LPos=( 3.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, 1314.62, 1787.75 ) LPos=( 6.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, 1314.62, 1787.75 ) LPos=( 9.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, 1314.62, 1787.75 ) LPos=( 18.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, 1313.09, 1790.19 ) LPos=( 6.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, 1313.09, 1790.19 ) LPos=( 9.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 12.56, 1313.09, 1790.19 ) LPos=( 12.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1313.09, 1790.19 ) LPos=( 15.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1311.55, 1792.62 ) LPos=( 18.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, 1310.02, 1795.05 ) LPos=( 24.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, 1308.49, 1797.48 ) LPos=( 3.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1308.49, 1797.48 ) LPos=( 21.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, 1308.49, 1797.48 ) LPos=( 24.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, 1306.96, 1799.92 ) LPos=( 21.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, 1306.96, 1799.92 ) LPos=( 24.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, 1305.43, 1802.35 ) LPos=( 3.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1305.43, 1802.35 ) LPos=( 6.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1305.43, 1802.35 ) LPos=( 21.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 12.56, 1303.89, 1804.78 ) LPos=( 12.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, 1303.89, 1804.78 ) LPos=( 18.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, 1328.01, 1766.49 ) LPos=( 21.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1321.88, 1776.22 ) LPos=( 21.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1329.54, 1764.06 ) LPos=( 18.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1328.01, 1766.49 ) LPos=( 18.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1323.41, 1773.79 ) LPos=( 18.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1321.88, 1776.22 ) LPos=( 18.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, 1318.81, 1781.09 ) LPos=( 18.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, 1329.54, 1764.06 ) LPos=( 15.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 15.44, 1328.01, 1766.49 ) LPos=( 15.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 12.56, 1329.54, 1764.06 ) LPos=( 12.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, 1326.47, 1768.92 ) LPos=( 12.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1324.94, 1771.36 ) LPos=( 12.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1323.41, 1773.79 ) LPos=( 12.56, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, 1329.54, 1764.06 ) LPos=( 9.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 9.69, 1323.41, 1773.79 ) LPos=( 9.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1321.88, 1776.22 ) LPos=( 9.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1328.01, 1766.49 ) LPos=( 6.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1328.01, 1766.49 ) LPos=( 3.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3.94, 1324.94, 1771.36 ) LPos=( 3.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3.94, 1320.35, 1778.66 ) LPos=( 3.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -24.06, 1303.89, 1804.78 ) LPos=( -24.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -24.06, 1305.43, 1802.35 ) LPos=( -24.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, 1306.96, 1799.92 ) LPos=( -24.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, 1308.49, 1797.48 ) LPos=( -24.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, 1310.02, 1795.05 ) LPos=( -24.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, 1314.62, 1787.75 ) LPos=( -24.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1303.89, 1804.78 ) LPos=( -21.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, 1306.96, 1799.92 ) LPos=( -21.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1313.09, 1790.19 ) LPos=( -21.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -15.44, 1306.96, 1799.92 ) LPos=( -15.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -12.56, 1306.96, 1799.92 ) LPos=( -12.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1308.49, 1797.48 ) LPos=( -12.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, 1305.43, 1802.35 ) LPos=( -9.69, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1306.96, 1799.92 ) LPos=( -9.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, 1311.55, 1792.62 ) LPos=( -9.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, 1313.09, 1790.19 ) LPos=( -9.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1305.43, 1802.35 ) LPos=( -6.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, 1310.02, 1795.05 ) LPos=( -3.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3.94, 1311.55, 1792.62 ) LPos=( -3.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3.94, 1313.09, 1790.19 ) LPos=( -3.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3.94, 1318.81, 1781.09 ) LPos=( -3.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, 1318.81, 1781.09 ) LPos=( -9.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -18.31, 1318.81, 1781.09 ) LPos=( -18.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -21.19, 1318.81, 1781.09 ) LPos=( -21.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3.94, 1320.35, 1778.66 ) LPos=( -3.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, 1320.35, 1778.66 ) LPos=( -6.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1320.35, 1778.66 ) LPos=( -9.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -12.56, 1320.35, 1778.66 ) LPos=( -12.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -18.31, 1320.35, 1778.66 ) LPos=( -18.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1320.35, 1778.66 ) LPos=( -21.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, 1320.35, 1778.66 ) LPos=( -24.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -6.81, 1321.88, 1776.22 ) LPos=( -6.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -9.69, 1321.88, 1776.22 ) LPos=( -9.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3.94, 1323.41, 1773.79 ) LPos=( -3.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -21.19, 1324.94, 1771.36 ) LPos=( -21.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3.94, 1326.47, 1768.92 ) LPos=( -3.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -18.31, 1326.47, 1768.92 ) LPos=( -18.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -21.19, 1326.47, 1768.92 ) LPos=( -21.19, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1328.01, 1766.49 ) LPos=( -15.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -18.31, 1328.01, 1766.49 ) LPos=( -18.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -21.19, 1328.01, 1766.49 ) LPos=( -21.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -9.69, 1329.54, 1764.06 ) LPos=( -9.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -18.31, 1329.54, 1764.06 ) LPos=( -18.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, 1329.54, 1764.06 ) LPos=( -21.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1329.54, 1764.06 ) LPos=( -24.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, 1314.62, 1787.75 ) LPos=( -52.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -43.44, 1314.62, 1787.75 ) LPos=( -43.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -40.56, 1314.62, 1787.75 ) LPos=( -40.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1314.62, 1787.75 ) LPos=( -31.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -46.31, 1313.09, 1790.19 ) LPos=( -46.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, 1313.09, 1790.19 ) LPos=( -43.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -40.56, 1313.09, 1790.19 ) LPos=( -40.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, 1313.09, 1790.19 ) LPos=( -31.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, 1311.55, 1792.62 ) LPos=( -49.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, 1311.55, 1792.62 ) LPos=( -43.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -31.94, 1311.55, 1792.62 ) LPos=( -31.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1308.49, 1797.48 ) LPos=( -52.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, 1308.49, 1797.48 ) LPos=( -37.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -34.81, 1308.49, 1797.48 ) LPos=( -34.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -52.06, 1306.96, 1799.92 ) LPos=( -52.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -49.19, 1306.96, 1799.92 ) LPos=( -49.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, 1306.96, 1799.92 ) LPos=( -37.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, 1305.43, 1802.35 ) LPos=( -43.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, 1303.89, 1804.78 ) LPos=( -52.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -49.19, 1303.89, 1804.78 ) LPos=( -49.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, 1303.89, 1804.78 ) LPos=( -40.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, 1303.89, 1804.78 ) LPos=( -34.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -31.94, 1329.54, 1764.06 ) LPos=( -31.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1328.01, 1766.49 ) LPos=( -31.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, 1326.47, 1768.92 ) LPos=( -31.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -31.94, 1323.41, 1773.79 ) LPos=( -31.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -31.94, 1320.35, 1778.66 ) LPos=( -31.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, 1329.54, 1764.06 ) LPos=( -34.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -34.81, 1326.47, 1768.92 ) LPos=( -34.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, 1318.81, 1781.09 ) LPos=( -34.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -37.69, 1323.41, 1773.79 ) LPos=( -37.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1321.88, 1776.22 ) LPos=( -37.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -37.69, 1318.81, 1781.09 ) LPos=( -37.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1329.54, 1764.06 ) LPos=( -40.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -40.56, 1328.01, 1766.49 ) LPos=( -40.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, 1321.88, 1776.22 ) LPos=( -40.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, 1318.81, 1781.09 ) LPos=( -40.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, 1329.54, 1764.06 ) LPos=( -43.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, 1326.47, 1768.92 ) LPos=( -43.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, 1323.41, 1773.79 ) LPos=( -43.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1318.81, 1781.09 ) LPos=( -43.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1324.94, 1771.36 ) LPos=( -46.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, 1318.81, 1781.09 ) LPos=( -46.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, 1323.41, 1773.79 ) LPos=( -49.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -49.19, 1320.35, 1778.66 ) LPos=( -49.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, 1318.81, 1781.09 ) LPos=( -49.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -52.06, 1324.94, 1771.36 ) LPos=( -52.06, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -52.06, 1323.41, 1773.79 ) LPos=( -52.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -52.06, 1320.35, 1778.66 ) LPos=( -52.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, 1303.89, 1804.78 ) LPos=( -80.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1311.55, 1792.62 ) LPos=( -80.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -77.19, 1305.43, 1802.35 ) LPos=( -77.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, 1311.55, 1792.62 ) LPos=( -77.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, 1314.62, 1787.75 ) LPos=( -77.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -74.31, 1313.09, 1790.19 ) LPos=( -74.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, 1314.62, 1787.75 ) LPos=( -74.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1310.02, 1795.05 ) LPos=( -71.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, 1310.02, 1795.05 ) LPos=( -68.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, 1314.62, 1787.75 ) LPos=( -68.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, 1306.96, 1799.92 ) LPos=( -65.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -62.81, 1313.09, 1790.19 ) LPos=( -62.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1308.49, 1797.48 ) LPos=( -59.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, 1313.09, 1790.19 ) LPos=( -59.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, 1318.81, 1781.09 ) LPos=( -59.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, 1318.81, 1781.09 ) LPos=( -62.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, 1318.81, 1781.09 ) LPos=( -68.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, 1318.81, 1781.09 ) LPos=( -71.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, 1318.81, 1781.09 ) LPos=( -80.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, 1320.35, 1778.66 ) LPos=( -62.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -65.69, 1320.35, 1778.66 ) LPos=( -65.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1320.35, 1778.66 ) LPos=( -68.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, 1320.35, 1778.66 ) LPos=( -74.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -80.06, 1320.35, 1778.66 ) LPos=( -80.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1321.88, 1776.22 ) LPos=( -59.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -62.81, 1321.88, 1776.22 ) LPos=( -62.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -71.44, 1321.88, 1776.22 ) LPos=( -71.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1323.41, 1773.79 ) LPos=( -62.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1323.41, 1773.79 ) LPos=( -80.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -59.94, 1324.94, 1771.36 ) LPos=( -59.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, 1324.94, 1771.36 ) LPos=( -62.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, 1324.94, 1771.36 ) LPos=( -65.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, 1324.94, 1771.36 ) LPos=( -71.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, 1324.94, 1771.36 ) LPos=( -77.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, 1326.47, 1768.92 ) LPos=( -59.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -74.31, 1326.47, 1768.92 ) LPos=( -74.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -65.69, 1328.01, 1766.49 ) LPos=( -65.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, 1329.54, 1764.06 ) LPos=( -62.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, 1329.54, 1764.06 ) LPos=( -68.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -74.31, 1329.54, 1764.06 ) LPos=( -74.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, 1329.54, 1764.06 ) LPos=( -77.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, 1314.62, 1787.75 ) LPos=( -90.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, 1314.62, 1787.75 ) LPos=( -87.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, 1313.09, 1790.19 ) LPos=( -93.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1313.09, 1790.19 ) LPos=( -90.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -90.81, 1308.49, 1797.48 ) LPos=( -90.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -87.94, 1308.49, 1797.48 ) LPos=( -87.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, 1306.96, 1799.92 ) LPos=( -96.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -93.69, 1305.43, 1802.35 ) LPos=( -93.69, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1305.43, 1802.35 ) LPos=( -87.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, 1303.89, 1804.78 ) LPos=( -108.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, 1324.94, 1771.36 ) LPos=( -87.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, 1318.81, 1781.09 ) LPos=( -87.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1326.47, 1768.92 ) LPos=( -90.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, 1323.41, 1773.79 ) LPos=( -90.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1320.35, 1778.66 ) LPos=( -90.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, 1318.81, 1781.09 ) LPos=( -90.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, 1320.35, 1778.66 ) LPos=( -93.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, 1318.81, 1781.09 ) LPos=( -93.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -96.56, 1329.54, 1764.06 ) LPos=( -96.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, 1328.01, 1766.49 ) LPos=( -96.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, 1324.94, 1771.36 ) LPos=( -96.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, 1321.88, 1776.22 ) LPos=( -96.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -96.56, 1318.81, 1781.09 ) LPos=( -96.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -99.44, 1318.81, 1781.09 ) LPos=( -99.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, 1324.94, 1771.36 ) LPos=( -102.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, 1321.88, 1776.22 ) LPos=( -102.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1320.35, 1778.66 ) LPos=( -102.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, 1321.88, 1776.22 ) LPos=( -105.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -105.19, 1320.35, 1778.66 ) LPos=( -105.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -108.06, 1328.01, 1766.49 ) LPos=( -108.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1324.94, 1771.36 ) LPos=( -108.06, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, 1323.41, 1773.79 ) LPos=( -108.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, 1320.35, 1778.66 ) LPos=( -108.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -108.06, 1318.81, 1781.09 ) LPos=( -108.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -136.06, 1306.96, 1799.92 ) LPos=( -136.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, 1308.49, 1797.48 ) LPos=( -136.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, 1314.62, 1787.75 ) LPos=( -136.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -133.19, 1305.43, 1802.35 ) LPos=( -133.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -133.19, 1306.96, 1799.92 ) LPos=( -133.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -133.19, 1308.49, 1797.48 ) LPos=( -133.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, 1313.09, 1790.19 ) LPos=( -133.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, 1314.62, 1787.75 ) LPos=( -133.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1313.09, 1790.19 ) LPos=( -130.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1310.02, 1795.05 ) LPos=( -127.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, 1311.55, 1792.62 ) LPos=( -127.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, 1314.62, 1787.75 ) LPos=( -127.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -124.56, 1303.89, 1804.78 ) LPos=( -124.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -124.56, 1305.43, 1802.35 ) LPos=( -124.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -124.56, 1308.49, 1797.48 ) LPos=( -124.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -124.56, 1311.55, 1792.62 ) LPos=( -124.56, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -121.69, 1303.89, 1804.78 ) LPos=( -121.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -115.94, 1313.09, 1790.19 ) LPos=( -115.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, 1314.62, 1787.75 ) LPos=( -115.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -127.44, 1318.81, 1781.09 ) LPos=( -127.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, 1318.81, 1781.09 ) LPos=( -133.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, 1320.35, 1778.66 ) LPos=( -127.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, 1320.35, 1778.66 ) LPos=( -133.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -115.94, 1321.88, 1776.22 ) LPos=( -115.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, 1321.88, 1776.22 ) LPos=( -121.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, 1321.88, 1776.22 ) LPos=( -124.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -127.44, 1321.88, 1776.22 ) LPos=( -127.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -115.94, 1323.41, 1773.79 ) LPos=( -115.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1323.41, 1773.79 ) LPos=( -127.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -130.31, 1323.41, 1773.79 ) LPos=( -130.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -136.06, 1323.41, 1773.79 ) LPos=( -136.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -121.69, 1324.94, 1771.36 ) LPos=( -121.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, 1324.94, 1771.36 ) LPos=( -127.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1324.94, 1771.36 ) LPos=( -133.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, 1326.47, 1768.92 ) LPos=( -130.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -136.06, 1326.47, 1768.92 ) LPos=( -136.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, 1328.01, 1766.49 ) LPos=( -118.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, 1328.01, 1766.49 ) LPos=( -130.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1329.54, 1764.06 ) LPos=( -115.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1329.54, 1764.06 ) LPos=( -121.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, 1329.54, 1764.06 ) LPos=( -136.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -158.31, 1314.62, 1787.75 ) LPos=( -158.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -146.81, 1314.62, 1787.75 ) LPos=( -146.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, 1313.09, 1790.19 ) LPos=( -158.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, 1311.55, 1792.62 ) LPos=( -158.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, 1311.55, 1792.62 ) LPos=( -146.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, 1310.02, 1795.05 ) LPos=( -155.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -149.69, 1310.02, 1795.05 ) LPos=( -149.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, 1310.02, 1795.05 ) LPos=( -143.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -161.19, 1306.96, 1799.92 ) LPos=( -161.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, 1305.43, 1802.35 ) LPos=( -143.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -158.31, 1303.89, 1804.78 ) LPos=( -158.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -146.81, 1303.89, 1804.78 ) LPos=( -146.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, 1303.89, 1804.78 ) LPos=( -143.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -143.94, 1324.94, 1771.36 ) LPos=( -143.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, 1324.94, 1771.36 ) LPos=( -149.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, 1323.41, 1773.79 ) LPos=( -149.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, 1324.94, 1771.36 ) LPos=( -152.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, 1320.35, 1778.66 ) LPos=( -152.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -155.44, 1328.01, 1766.49 ) LPos=( -155.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, 1324.94, 1771.36 ) LPos=( -155.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, 1321.88, 1776.22 ) LPos=( -155.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -155.44, 1318.81, 1781.09 ) LPos=( -155.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, 1328.01, 1766.49 ) LPos=( -158.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -158.31, 1323.41, 1773.79 ) LPos=( -158.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -161.19, 1328.01, 1766.49 ) LPos=( -161.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, 1306.96, 1799.92 ) LPos=( -186.31, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -183.44, 1305.43, 1802.35 ) LPos=( -183.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -180.56, 1310.02, 1795.05 ) LPos=( -180.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -180.56, 1314.62, 1787.75 ) LPos=( -180.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -177.69, 1308.49, 1797.48 ) LPos=( -177.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -171.94, 1305.43, 1802.35 ) LPos=( -171.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -180.56, 1318.81, 1781.09 ) LPos=( -180.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -189.19, 1318.81, 1781.09 ) LPos=( -189.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -174.81, 1321.88, 1776.22 ) LPos=( -174.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -177.69, 1321.88, 1776.22 ) LPos=( -177.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, 1321.88, 1776.22 ) LPos=( -186.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -189.19, 1323.41, 1773.79 ) LPos=( -189.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -208.56, 1314.62, 1787.75 ) LPos=( -208.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -205.69, 1314.62, 1787.75 ) LPos=( -205.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -202.81, 1314.62, 1787.75 ) LPos=( -202.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -217.19, 1310.02, 1795.05 ) LPos=( -217.19, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -217.19, 1308.49, 1797.48 ) LPos=( -217.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -208.56, 1308.49, 1797.48 ) LPos=( -208.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -205.69, 1308.49, 1797.48 ) LPos=( -205.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -202.81, 1308.49, 1797.48 ) LPos=( -202.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -199.94, 1308.49, 1797.48 ) LPos=( -199.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -205.69, 1306.96, 1799.92 ) LPos=( -205.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -217.19, 1305.43, 1802.35 ) LPos=( -217.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -211.44, 1305.43, 1802.35 ) LPos=( -211.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -208.56, 1305.43, 1802.35 ) LPos=( -208.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -208.56, 1303.89, 1804.78 ) LPos=( -208.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -199.94, 1324.94, 1771.36 ) LPos=( -199.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -211.44, 1329.54, 1764.06 ) LPos=( -211.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -217.19, 1328.01, 1766.49 ) LPos=( -217.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -220.06, 1328.01, 1766.49 ) LPos=( -220.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -242.31, 1310.02, 1795.05 ) LPos=( -242.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -242.31, 1313.09, 1790.19 ) LPos=( -242.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -239.44, 1310.02, 1795.05 ) LPos=( -239.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, 1308.49, 1797.48 ) LPos=( -236.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -236.56, 1310.02, 1795.05 ) LPos=( -236.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -227.94, 1313.09, 1790.19 ) LPos=( -227.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -233.69, 1320.35, 1778.66 ) LPos=( -233.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -233.69, 1321.88, 1776.22 ) LPos=( -233.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -248.06, 1321.88, 1776.22 ) LPos=( -248.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -242.31, 1323.41, 1773.79 ) LPos=( -242.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -245.19, 1323.41, 1773.79 ) LPos=( -245.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, 1324.94, 1771.36 ) LPos=( -227.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -239.44, 1324.94, 1771.36 ) LPos=( -239.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -270.31, 1314.62, 1787.75 ) LPos=( -270.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -261.69, 1313.09, 1790.19 ) LPos=( -261.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -258.81, 1303.89, 1804.78 ) LPos=( -258.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -255.94, 1320.35, 1778.66 ) LPos=( -255.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -258.81, 1328.01, 1766.49 ) LPos=( -258.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -261.69, 1326.47, 1768.92 ) LPos=( -261.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -264.56, 1318.81, 1781.09 ) LPos=( -264.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -267.44, 1320.35, 1778.66 ) LPos=( -267.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -267.44, 1318.81, 1781.09 ) LPos=( -267.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -276.06, 1326.47, 1768.92 ) LPos=( -276.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -304.06, 1313.09, 1790.19 ) LPos=( -304.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -289.69, 1303.89, 1804.78 ) LPos=( -289.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -286.81, 1308.49, 1797.48 ) LPos=( -286.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -286.81, 1310.02, 1795.05 ) LPos=( -286.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1303.89, 1804.78 ) LPos=( -283.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -283.94, 1311.55, 1792.62 ) LPos=( -283.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -283.94, 1313.09, 1790.19 ) LPos=( -283.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -283.94, 1314.62, 1787.75 ) LPos=( -283.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -292.56, 1320.35, 1778.66 ) LPos=( -292.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -292.56, 1323.41, 1773.79 ) LPos=( -292.56, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -286.81, 1324.94, 1771.36 ) LPos=( -286.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -298.31, 1324.94, 1771.36 ) LPos=( -298.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -323.44, 1308.49, 1797.48 ) LPos=( -323.44, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -311.94, 1324.94, 1771.36 ) LPos=( -311.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -314.81, 1328.01, 1766.49 ) LPos=( -314.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -314.81, 1324.94, 1771.36 ) LPos=( -314.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -320.56, 1329.54, 1764.06 ) LPos=( -320.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -320.56, 1321.88, 1776.22 ) LPos=( -320.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -326.31, 1321.88, 1776.22 ) LPos=( -326.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -357.19, 1306.96, 1799.92 ) LPos=( -357.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -357.19, 1311.55, 1792.62 ) LPos=( -357.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -351.44, 1314.62, 1787.75 ) LPos=( -351.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -348.56, 1306.96, 1799.92 ) LPos=( -348.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -345.69, 1311.55, 1792.62 ) LPos=( -345.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -342.81, 1310.02, 1795.05 ) LPos=( -342.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -339.94, 1313.09, 1790.19 ) LPos=( -339.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -351.44, 1318.81, 1781.09 ) LPos=( -351.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -342.81, 1320.35, 1778.66 ) LPos=( -342.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, 1323.41, 1773.79 ) LPos=( -354.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -345.69, 1324.94, 1771.36 ) LPos=( -345.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -351.44, 1324.94, 1771.36 ) LPos=( -351.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -342.81, 1326.47, 1768.92 ) LPos=( -342.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -348.56, 1326.47, 1768.92 ) LPos=( -348.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -354.31, 1328.01, 1766.49 ) LPos=( -354.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -354.31, 1329.54, 1764.06 ) LPos=( -354.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -357.19, 1329.54, 1764.06 ) LPos=( -357.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -379.44, 1314.62, 1787.75 ) LPos=( -379.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -370.81, 1313.09, 1790.19 ) LPos=( -370.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -382.31, 1308.49, 1797.48 ) LPos=( -382.31, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -370.81, 1306.96, 1799.92 ) LPos=( -370.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -367.94, 1305.43, 1802.35 ) LPos=( -367.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -367.94, 1328.01, 1766.49 ) LPos=( -367.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -370.81, 1329.54, 1764.06 ) LPos=( -370.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -370.81, 1323.41, 1773.79 ) LPos=( -370.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -388.06, 1328.01, 1766.49 ) LPos=( -388.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -413.19, 1303.89, 1804.78 ) LPos=( -413.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -410.31, 1311.55, 1792.62 ) LPos=( -410.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -407.44, 1314.62, 1787.75 ) LPos=( -407.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -404.56, 1306.96, 1799.92 ) LPos=( -404.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -395.94, 1313.09, 1790.19 ) LPos=( -395.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -401.69, 1318.81, 1781.09 ) LPos=( -401.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -407.44, 1318.81, 1781.09 ) LPos=( -407.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -444.06, 1305.43, 1802.35 ) LPos=( -444.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -438.31, 1303.89, 1804.78 ) LPos=( -438.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -423.94, 1320.35, 1778.66 ) LPos=( -423.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -429.69, 1320.35, 1778.66 ) LPos=( -429.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -438.31, 1318.81, 1781.09 ) LPos=( -438.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -441.19, 1318.81, 1781.09 ) LPos=( -441.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -444.06, 1318.81, 1781.09 ) LPos=( -444.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -457.69, 1313.09, 1790.19 ) LPos=( -457.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -454.81, 1310.02, 1795.05 ) LPos=( -454.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -454.81, 1318.81, 1781.09 ) LPos=( -454.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -451.94, 1326.47, 1768.92 ) LPos=( -451.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -494.31, 1311.55, 1792.62 ) LPos=( -494.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -482.81, 1318.81, 1781.09 ) LPos=( -482.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -519.44, 1314.62, 1787.75 ) LPos=( -519.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -516.56, 1308.49, 1797.48 ) LPos=( -516.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -516.56, 1311.55, 1792.62 ) LPos=( -516.56, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -519.44, 1320.35, 1778.66 ) LPos=( -519.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -510.81, 1324.94, 1771.36 ) LPos=( -510.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -541.69, 1318.81, 1781.09 ) LPos=( -541.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -547.44, 1323.41, 1773.79 ) LPos=( -547.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -578.31, 1310.02, 1795.05 ) LPos=( -578.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -572.56, 1314.62, 1787.75 ) LPos=( -572.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -563.94, 1308.49, 1797.48 ) LPos=( -563.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -569.69, 1329.54, 1764.06 ) LPos=( -569.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -603.44, 1305.43, 1802.35 ) LPos=( -603.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -594.81, 1303.89, 1804.78 ) LPos=( -594.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 597.69, 1278.38, 1845.29 ) LPos=( 597.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 597.69, 1282.98, 1838.00 ) LPos=( 597.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 606.31, 1276.85, 1847.73 ) LPos=( 606.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 600.56, 1288.71, 1828.90 ) LPos=( 600.56, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 603.44, 1293.30, 1821.60 ) LPos=( 603.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 594.81, 1293.30, 1821.60 ) LPos=( 594.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 591.94, 1294.83, 1819.17 ) LPos=( 591.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 612.06, 1297.90, 1814.30 ) LPos=( 612.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 597.69, 1297.90, 1814.30 ) LPos=( 597.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 591.94, 1297.90, 1814.30 ) LPos=( 591.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 572.56, 1281.45, 1840.43 ) LPos=( 572.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 566.81, 1273.79, 1852.59 ) LPos=( 566.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 578.31, 1273.79, 1852.59 ) LPos=( 578.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 581.19, 1296.37, 1816.73 ) LPos=( 581.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 578.31, 1297.90, 1814.30 ) LPos=( 578.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 578.31, 1293.30, 1821.60 ) LPos=( 578.31, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 563.94, 1297.90, 1814.30 ) LPos=( 563.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 535.94, 1282.98, 1838.00 ) LPos=( 535.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 550.31, 1288.71, 1828.90 ) LPos=( 550.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 541.69, 1291.77, 1824.03 ) LPos=( 541.69, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 553.19, 1296.37, 1816.73 ) LPos=( 553.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 544.56, 1296.37, 1816.73 ) LPos=( 544.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 535.94, 1296.37, 1816.73 ) LPos=( 535.94, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 550.31, 1297.90, 1814.30 ) LPos=( 550.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 547.44, 1297.90, 1814.30 ) LPos=( 547.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 519.44, 1284.51, 1835.56 ) LPos=( 519.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 507.94, 1278.38, 1845.29 ) LPos=( 507.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 510.81, 1276.85, 1847.73 ) LPos=( 510.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 522.31, 1275.32, 1850.16 ) LPos=( 522.31, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 525.19, 1290.24, 1826.47 ) LPos=( 525.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 519.44, 1299.43, 1811.87 ) LPos=( 519.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 513.69, 1290.24, 1826.47 ) LPos=( 513.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 479.94, 1275.32, 1850.16 ) LPos=( 479.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 491.44, 1276.85, 1847.73 ) LPos=( 491.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 497.19, 1278.38, 1845.29 ) LPos=( 497.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 497.19, 1281.45, 1840.43 ) LPos=( 497.19, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 500.06, 1273.79, 1852.59 ) LPos=( 500.06, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 479.94, 1296.37, 1816.73 ) LPos=( 479.94, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 500.06, 1299.43, 1811.87 ) LPos=( 500.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 463.44, 1273.79, 1852.59 ) LPos=( 463.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 463.44, 1299.43, 1811.87 ) LPos=( 463.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 460.56, 1290.24, 1826.47 ) LPos=( 460.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 423.94, 1276.85, 1847.73 ) LPos=( 423.94, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 432.56, 1282.98, 1838.00 ) LPos=( 432.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 444.06, 1276.85, 1847.73 ) LPos=( 444.06, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 423.94, 1294.83, 1819.17 ) LPos=( 423.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 404.56, 1275.32, 1850.16 ) LPos=( 404.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 404.56, 1290.24, 1826.47 ) LPos=( 404.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 398.81, 1290.24, 1826.47 ) LPos=( 398.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 395.94, 1299.43, 1811.87 ) LPos=( 395.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 367.94, 1275.32, 1850.16 ) LPos=( 367.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 385.19, 1282.98, 1838.00 ) LPos=( 385.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 388.06, 1275.32, 1850.16 ) LPos=( 388.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 367.94, 1293.30, 1821.60 ) LPos=( 367.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 388.06, 1297.90, 1814.30 ) LPos=( 388.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 370.81, 1297.90, 1814.30 ) LPos=( 370.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 385.19, 1299.43, 1811.87 ) LPos=( 385.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1282.98, 1838.00 ) LPos=( 357.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 342.81, 1279.91, 1842.86 ) LPos=( 342.81, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, 1275.32, 1850.16 ) LPos=( 339.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1290.24, 1826.47 ) LPos=( 357.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 354.31, 1297.90, 1814.30 ) LPos=( 354.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 354.31, 1288.71, 1828.90 ) LPos=( 354.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 351.44, 1297.90, 1814.30 ) LPos=( 351.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 311.94, 1278.38, 1845.29 ) LPos=( 311.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 326.31, 1279.91, 1842.86 ) LPos=( 326.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 317.69, 1299.43, 1811.87 ) LPos=( 317.69, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 311.94, 1299.43, 1811.87 ) LPos=( 311.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 283.94, 1284.51, 1835.56 ) LPos=( 283.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 301.19, 1279.91, 1842.86 ) LPos=( 301.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 289.69, 1273.79, 1852.59 ) LPos=( 289.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 304.06, 1293.30, 1821.60 ) LPos=( 304.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 304.06, 1291.77, 1824.03 ) LPos=( 304.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 261.69, 1275.32, 1850.16 ) LPos=( 261.69, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 273.19, 1273.79, 1852.59 ) LPos=( 273.19, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 276.06, 1281.45, 1840.43 ) LPos=( 276.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 258.81, 1288.71, 1828.90 ) LPos=( 258.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, 1294.83, 1819.17 ) LPos=( 264.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1297.90, 1814.30 ) LPos=( 273.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 270.31, 1297.90, 1814.30 ) LPos=( 270.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 230.81, 1279.91, 1842.86 ) LPos=( 230.81, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 239.44, 1297.90, 1814.30 ) LPos=( 239.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 236.56, 1290.24, 1826.47 ) LPos=( 236.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 230.81, 1288.71, 1828.90 ) LPos=( 230.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 199.94, 1282.98, 1838.00 ) LPos=( 199.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, 1279.91, 1842.86 ) LPos=( 177.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 183.44, 1276.85, 1847.73 ) LPos=( 183.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, 1293.30, 1821.60 ) LPos=( 189.19, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, 1291.77, 1824.03 ) LPos=( 186.31, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 171.94, 1290.24, 1826.47 ) LPos=( 171.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, 1282.98, 1838.00 ) LPos=( 149.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, 1282.98, 1838.00 ) LPos=( 155.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1290.24, 1826.47 ) LPos=( 149.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 164.06, 1291.77, 1824.03 ) LPos=( 164.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 149.69, 1293.30, 1821.60 ) LPos=( 149.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 164.06, 1294.83, 1819.17 ) LPos=( 164.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 155.44, 1294.83, 1819.17 ) LPos=( 155.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 149.69, 1294.83, 1819.17 ) LPos=( 149.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 164.06, 1296.37, 1816.73 ) LPos=( 164.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 161.19, 1296.37, 1816.73 ) LPos=( 161.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 155.44, 1296.37, 1816.73 ) LPos=( 155.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 152.56, 1296.37, 1816.73 ) LPos=( 152.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1297.90, 1814.30 ) LPos=( 161.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 158.31, 1297.90, 1814.30 ) LPos=( 158.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 155.44, 1297.90, 1814.30 ) LPos=( 155.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, 1297.90, 1814.30 ) LPos=( 143.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 115.94, 1284.51, 1835.56 ) LPos=( 115.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, 1284.51, 1835.56 ) LPos=( 118.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 121.69, 1284.51, 1835.56 ) LPos=( 121.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1284.51, 1835.56 ) LPos=( 124.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, 1284.51, 1835.56 ) LPos=( 130.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 115.94, 1282.98, 1838.00 ) LPos=( 115.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1282.98, 1838.00 ) LPos=( 118.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 124.56, 1282.98, 1838.00 ) LPos=( 124.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, 1276.85, 1847.73 ) LPos=( 136.06, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 136.06, 1299.43, 1811.87 ) LPos=( 136.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 136.06, 1296.37, 1816.73 ) LPos=( 136.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 136.06, 1294.83, 1819.17 ) LPos=( 136.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 136.06, 1293.30, 1821.60 ) LPos=( 136.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, 1288.71, 1828.90 ) LPos=( 136.06, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 133.19, 1296.37, 1816.73 ) LPos=( 133.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 130.31, 1296.37, 1816.73 ) LPos=( 130.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, 1294.83, 1819.17 ) LPos=( 130.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1291.77, 1824.03 ) LPos=( 130.31, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, 1290.24, 1826.47 ) LPos=( 130.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 124.56, 1299.43, 1811.87 ) LPos=( 124.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 124.56, 1291.77, 1824.03 ) LPos=( 124.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 121.69, 1297.90, 1814.30 ) LPos=( 121.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 121.69, 1296.37, 1816.73 ) LPos=( 121.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 121.69, 1294.83, 1819.17 ) LPos=( 121.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 121.69, 1293.30, 1821.60 ) LPos=( 121.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, 1291.77, 1824.03 ) LPos=( 121.69, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 118.81, 1299.43, 1811.87 ) LPos=( 118.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 118.81, 1296.37, 1816.73 ) LPos=( 118.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 118.81, 1294.83, 1819.17 ) LPos=( 118.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1293.30, 1821.60 ) LPos=( 118.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, 1288.71, 1828.90 ) LPos=( 118.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 115.94, 1293.30, 1821.60 ) LPos=( 115.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, 1290.24, 1826.47 ) LPos=( 115.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, 1288.71, 1828.90 ) LPos=( 115.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, 1279.91, 1842.86 ) LPos=( 87.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1281.45, 1840.43 ) LPos=( 87.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, 1282.98, 1838.00 ) LPos=( 87.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1284.51, 1835.56 ) LPos=( 87.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 90.81, 1276.85, 1847.73 ) LPos=( 90.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 90.81, 1279.91, 1842.86 ) LPos=( 90.81, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1282.98, 1838.00 ) LPos=( 90.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, 1284.51, 1835.56 ) LPos=( 93.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1276.85, 1847.73 ) LPos=( 96.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, 1278.38, 1845.29 ) LPos=( 96.56, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 96.56, 1282.98, 1838.00 ) LPos=( 96.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1276.85, 1847.73 ) LPos=( 99.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1276.85, 1847.73 ) LPos=( 102.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, 1278.38, 1845.29 ) LPos=( 102.31, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, 1279.91, 1842.86 ) LPos=( 102.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 102.31, 1281.45, 1840.43 ) LPos=( 102.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, 1279.91, 1842.86 ) LPos=( 105.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 108.06, 1275.32, 1850.16 ) LPos=( 108.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 108.06, 1279.91, 1842.86 ) LPos=( 108.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, 1281.45, 1840.43 ) LPos=( 108.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1288.71, 1828.90 ) LPos=( 105.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 102.31, 1288.71, 1828.90 ) LPos=( 102.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, 1288.71, 1828.90 ) LPos=( 90.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 108.06, 1290.24, 1826.47 ) LPos=( 108.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, 1290.24, 1826.47 ) LPos=( 99.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 93.69, 1290.24, 1826.47 ) LPos=( 93.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, 1291.77, 1824.03 ) LPos=( 105.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1291.77, 1824.03 ) LPos=( 96.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1293.30, 1821.60 ) LPos=( 90.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, 1294.83, 1819.17 ) LPos=( 102.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1294.83, 1819.17 ) LPos=( 99.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 96.56, 1294.83, 1819.17 ) LPos=( 96.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 90.81, 1294.83, 1819.17 ) LPos=( 90.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 108.06, 1296.37, 1816.73 ) LPos=( 108.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 105.19, 1296.37, 1816.73 ) LPos=( 105.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, 1296.37, 1816.73 ) LPos=( 99.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 90.81, 1296.37, 1816.73 ) LPos=( 90.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, 1297.90, 1814.30 ) LPos=( 108.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, 1297.90, 1814.30 ) LPos=( 93.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1299.43, 1811.87 ) LPos=( 108.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 105.19, 1299.43, 1811.87 ) LPos=( 105.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, 1284.51, 1835.56 ) LPos=( 62.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 65.69, 1284.51, 1835.56 ) LPos=( 65.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1284.51, 1835.56 ) LPos=( 68.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1284.51, 1835.56 ) LPos=( 80.06, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, 1282.98, 1838.00 ) LPos=( 71.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 74.31, 1282.98, 1838.00 ) LPos=( 74.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1282.98, 1838.00 ) LPos=( 77.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, 1281.45, 1840.43 ) LPos=( 59.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 62.81, 1281.45, 1840.43 ) LPos=( 62.81, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1281.45, 1840.43 ) LPos=( 71.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, 1281.45, 1840.43 ) LPos=( 77.19, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, 1281.45, 1840.43 ) LPos=( 80.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, 1279.91, 1842.86 ) LPos=( 65.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1279.91, 1842.86 ) LPos=( 71.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1279.91, 1842.86 ) LPos=( 74.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 77.19, 1278.38, 1845.29 ) LPos=( 77.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1276.85, 1847.73 ) LPos=( 77.19, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, 1273.79, 1852.59 ) LPos=( 65.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 80.06, 1299.43, 1811.87 ) LPos=( 80.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1296.37, 1816.73 ) LPos=( 80.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 77.19, 1296.37, 1816.73 ) LPos=( 77.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, 1293.30, 1821.60 ) LPos=( 77.19, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, 1296.37, 1816.73 ) LPos=( 74.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, 1294.83, 1819.17 ) LPos=( 74.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, 1293.30, 1821.60 ) LPos=( 74.31, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, 1299.43, 1811.87 ) LPos=( 71.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 71.44, 1297.90, 1814.30 ) LPos=( 71.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1296.37, 1816.73 ) LPos=( 71.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 71.44, 1294.83, 1819.17 ) LPos=( 71.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1293.30, 1821.60 ) LPos=( 71.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 71.44, 1291.77, 1824.03 ) LPos=( 71.44, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 71.44, 1290.24, 1826.47 ) LPos=( 71.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 68.56, 1299.43, 1811.87 ) LPos=( 68.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 68.56, 1297.90, 1814.30 ) LPos=( 68.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, 1296.37, 1816.73 ) LPos=( 68.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1294.83, 1819.17 ) LPos=( 68.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 68.56, 1291.77, 1824.03 ) LPos=( 68.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1296.37, 1816.73 ) LPos=( 65.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 65.69, 1293.30, 1821.60 ) LPos=( 65.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 62.81, 1297.90, 1814.30 ) LPos=( 62.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, 1294.83, 1819.17 ) LPos=( 62.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 62.81, 1291.77, 1824.03 ) LPos=( 62.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, 1294.83, 1819.17 ) LPos=( 59.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, 1290.24, 1826.47 ) LPos=( 59.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, 1279.91, 1842.86 ) LPos=( 31.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 34.81, 1273.79, 1852.59 ) LPos=( 34.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 34.81, 1275.32, 1850.16 ) LPos=( 34.81, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 34.81, 1276.85, 1847.73 ) LPos=( 34.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 34.81, 1278.38, 1845.29 ) LPos=( 34.81, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, 1284.51, 1835.56 ) LPos=( 34.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 37.69, 1273.79, 1852.59 ) LPos=( 37.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, 1275.32, 1850.16 ) LPos=( 37.69, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 37.69, 1278.38, 1845.29 ) LPos=( 37.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 37.69, 1279.91, 1842.86 ) LPos=( 37.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 37.69, 1282.98, 1838.00 ) LPos=( 37.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, 1275.32, 1850.16 ) LPos=( 40.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, 1276.85, 1847.73 ) LPos=( 40.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, 1281.45, 1840.43 ) LPos=( 40.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1278.38, 1845.29 ) LPos=( 43.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 43.44, 1279.91, 1842.86 ) LPos=( 43.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 43.44, 1282.98, 1838.00 ) LPos=( 43.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, 1276.85, 1847.73 ) LPos=( 46.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1282.98, 1838.00 ) LPos=( 46.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 46.31, 1284.51, 1835.56 ) LPos=( 46.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 49.19, 1273.79, 1852.59 ) LPos=( 49.19, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1276.85, 1847.73 ) LPos=( 49.19, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1278.38, 1845.29 ) LPos=( 49.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1284.51, 1835.56 ) LPos=( 49.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 52.06, 1284.51, 1835.56 ) LPos=( 52.06, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 52.06, 1288.71, 1828.90 ) LPos=( 52.06, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1288.71, 1828.90 ) LPos=( 49.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, 1288.71, 1828.90 ) LPos=( 46.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 43.44, 1288.71, 1828.90 ) LPos=( 43.44, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, 1288.71, 1828.90 ) LPos=( 37.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1288.71, 1828.90 ) LPos=( 34.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, 1288.71, 1828.90 ) LPos=( 31.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 52.06, 1290.24, 1826.47 ) LPos=( 52.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, 1290.24, 1826.47 ) LPos=( 49.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, 1290.24, 1826.47 ) LPos=( 43.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 40.56, 1290.24, 1826.47 ) LPos=( 40.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 37.69, 1290.24, 1826.47 ) LPos=( 37.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, 1290.24, 1826.47 ) LPos=( 34.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, 1291.77, 1824.03 ) LPos=( 52.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, 1291.77, 1824.03 ) LPos=( 49.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 40.56, 1291.77, 1824.03 ) LPos=( 40.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 43.44, 1293.30, 1821.60 ) LPos=( 43.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1294.83, 1819.17 ) LPos=( 52.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1294.83, 1819.17 ) LPos=( 46.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 52.06, 1296.37, 1816.73 ) LPos=( 52.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1296.37, 1816.73 ) LPos=( 43.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, 1296.37, 1816.73 ) LPos=( 37.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 34.81, 1296.37, 1816.73 ) LPos=( 34.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1296.37, 1816.73 ) LPos=( 31.94, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, 1297.90, 1814.30 ) LPos=( 40.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1297.90, 1814.30 ) LPos=( 37.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, 1297.90, 1814.30 ) LPos=( 34.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 40.56, 1299.43, 1811.87 ) LPos=( 40.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 12.56, 1284.51, 1835.56 ) LPos=( 12.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, 1282.98, 1838.00 ) LPos=( 3.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, 1282.98, 1838.00 ) LPos=( 6.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, 1282.98, 1838.00 ) LPos=( 18.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 24.06, 1282.98, 1838.00 ) LPos=( 24.06, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1281.45, 1840.43 ) LPos=( 3.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 9.69, 1281.45, 1840.43 ) LPos=( 9.69, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, 1281.45, 1840.43 ) LPos=( 12.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1281.45, 1840.43 ) LPos=( 24.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, 1279.91, 1842.86 ) LPos=( 9.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 12.56, 1279.91, 1842.86 ) LPos=( 12.56, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, 1278.38, 1845.29 ) LPos=( 6.81, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1278.38, 1845.29 ) LPos=( 21.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, 1278.38, 1845.29 ) LPos=( 24.06, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1276.85, 1847.73 ) LPos=( 9.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, 1276.85, 1847.73 ) LPos=( 18.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, 1275.32, 1850.16 ) LPos=( 12.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 15.44, 1275.32, 1850.16 ) LPos=( 15.44, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1275.32, 1850.16 ) LPos=( 21.19, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 15.44, 1273.79, 1852.59 ) LPos=( 15.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1297.90, 1814.30 ) LPos=( 24.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, 1293.30, 1821.60 ) LPos=( 24.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, 1291.77, 1824.03 ) LPos=( 24.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 24.06, 1290.24, 1826.47 ) LPos=( 24.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 21.19, 1299.43, 1811.87 ) LPos=( 21.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1294.83, 1819.17 ) LPos=( 21.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1291.77, 1824.03 ) LPos=( 21.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 21.19, 1288.71, 1828.90 ) LPos=( 21.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, 1296.37, 1816.73 ) LPos=( 18.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, 1294.83, 1819.17 ) LPos=( 18.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1293.30, 1821.60 ) LPos=( 18.31, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1291.77, 1824.03 ) LPos=( 18.31, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1290.24, 1826.47 ) LPos=( 18.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, 1288.71, 1828.90 ) LPos=( 18.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, 1299.43, 1811.87 ) LPos=( 15.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 15.44, 1297.90, 1814.30 ) LPos=( 15.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1296.37, 1816.73 ) LPos=( 15.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1293.30, 1821.60 ) LPos=( 15.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, 1296.37, 1816.73 ) LPos=( 12.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1294.83, 1819.17 ) LPos=( 12.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 12.56, 1291.77, 1824.03 ) LPos=( 12.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, 1288.71, 1828.90 ) LPos=( 12.56, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1296.37, 1816.73 ) LPos=( 9.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 9.69, 1293.30, 1821.60 ) LPos=( 9.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 9.69, 1288.71, 1828.90 ) LPos=( 9.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 6.81, 1296.37, 1816.73 ) LPos=( 6.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 6.81, 1288.71, 1828.90 ) LPos=( 6.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1297.90, 1814.30 ) LPos=( 3.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3.94, 1288.71, 1828.90 ) LPos=( 3.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, 1282.98, 1838.00 ) LPos=( -24.06, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1273.79, 1852.59 ) LPos=( -21.19, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1282.98, 1838.00 ) LPos=( -21.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1273.79, 1852.59 ) LPos=( -18.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -18.31, 1278.38, 1845.29 ) LPos=( -18.31, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, 1282.98, 1838.00 ) LPos=( -18.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -15.44, 1276.85, 1847.73 ) LPos=( -15.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1281.45, 1840.43 ) LPos=( -15.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, 1282.98, 1838.00 ) LPos=( -15.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, 1284.51, 1835.56 ) LPos=( -15.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1278.38, 1845.29 ) LPos=( -12.56, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1281.45, 1840.43 ) LPos=( -12.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, 1282.98, 1838.00 ) LPos=( -9.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -6.81, 1282.98, 1838.00 ) LPos=( -6.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, 1273.79, 1852.59 ) LPos=( -3.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, 1279.91, 1842.86 ) LPos=( -3.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3.94, 1282.98, 1838.00 ) LPos=( -3.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -6.81, 1288.71, 1828.90 ) LPos=( -6.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, 1290.24, 1826.47 ) LPos=( -6.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1290.24, 1826.47 ) LPos=( -9.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, 1291.77, 1824.03 ) LPos=( -3.94, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -6.81, 1291.77, 1824.03 ) LPos=( -6.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -12.56, 1291.77, 1824.03 ) LPos=( -12.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1291.77, 1824.03 ) LPos=( -15.44, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1293.30, 1821.60 ) LPos=( -12.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1293.30, 1821.60 ) LPos=( -24.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, 1294.83, 1819.17 ) LPos=( -9.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -21.19, 1294.83, 1819.17 ) LPos=( -21.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1294.83, 1819.17 ) LPos=( -24.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -15.44, 1296.37, 1816.73 ) LPos=( -15.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -21.19, 1296.37, 1816.73 ) LPos=( -21.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3.94, 1297.90, 1814.30 ) LPos=( -3.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, 1297.90, 1814.30 ) LPos=( -12.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1297.90, 1814.30 ) LPos=( -15.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -21.19, 1297.90, 1814.30 ) LPos=( -21.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, 1299.43, 1811.87 ) LPos=( -3.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, 1299.43, 1811.87 ) LPos=( -6.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -34.81, 1284.51, 1835.56 ) LPos=( -34.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -46.31, 1282.98, 1838.00 ) LPos=( -46.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, 1282.98, 1838.00 ) LPos=( -31.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1278.38, 1845.29 ) LPos=( -52.06, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -49.19, 1278.38, 1845.29 ) LPos=( -49.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -43.44, 1278.38, 1845.29 ) LPos=( -43.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -34.81, 1276.85, 1847.73 ) LPos=( -34.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -52.06, 1275.32, 1850.16 ) LPos=( -52.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, 1273.79, 1852.59 ) LPos=( -34.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -31.94, 1273.79, 1852.59 ) LPos=( -31.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1297.90, 1814.30 ) LPos=( -31.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, 1294.83, 1819.17 ) LPos=( -31.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, 1291.77, 1824.03 ) LPos=( -31.94, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1291.77, 1824.03 ) LPos=( -34.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -37.69, 1296.37, 1816.73 ) LPos=( -37.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -37.69, 1294.83, 1819.17 ) LPos=( -37.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1299.43, 1811.87 ) LPos=( -40.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -40.56, 1293.30, 1821.60 ) LPos=( -40.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -43.44, 1297.90, 1814.30 ) LPos=( -43.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, 1293.30, 1821.60 ) LPos=( -43.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1288.71, 1828.90 ) LPos=( -43.44, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1294.83, 1819.17 ) LPos=( -46.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, 1296.37, 1816.73 ) LPos=( -49.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -52.06, 1294.83, 1819.17 ) LPos=( -52.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -52.06, 1293.30, 1821.60 ) LPos=( -52.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1279.91, 1842.86 ) LPos=( -71.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, 1281.45, 1840.43 ) LPos=( -71.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -59.94, 1284.51, 1835.56 ) LPos=( -59.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, 1288.71, 1828.90 ) LPos=( -59.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, 1288.71, 1828.90 ) LPos=( -71.44, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1290.24, 1826.47 ) LPos=( -68.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, 1291.77, 1824.03 ) LPos=( -80.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -59.94, 1293.30, 1821.60 ) LPos=( -59.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, 1293.30, 1821.60 ) LPos=( -68.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -77.19, 1293.30, 1821.60 ) LPos=( -77.19, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1293.30, 1821.60 ) LPos=( -80.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, 1294.83, 1819.17 ) LPos=( -80.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -68.56, 1296.37, 1816.73 ) LPos=( -68.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, 1297.90, 1814.30 ) LPos=( -62.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -108.06, 1281.45, 1840.43 ) LPos=( -108.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -102.31, 1275.32, 1850.16 ) LPos=( -102.31, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1275.32, 1850.16 ) LPos=( -87.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1273.79, 1852.59 ) LPos=( -93.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -90.81, 1273.79, 1852.59 ) LPos=( -90.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, 1299.43, 1811.87 ) LPos=( -87.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -87.94, 1297.90, 1814.30 ) LPos=( -87.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -90.81, 1299.43, 1811.87 ) LPos=( -90.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1296.37, 1816.73 ) LPos=( -90.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1290.24, 1826.47 ) LPos=( -102.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, 1288.71, 1828.90 ) LPos=( -102.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -105.19, 1294.83, 1819.17 ) LPos=( -105.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, 1290.24, 1826.47 ) LPos=( -108.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, 1278.38, 1845.29 ) LPos=( -136.06, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -136.06, 1281.45, 1840.43 ) LPos=( -136.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -136.06, 1282.98, 1838.00 ) LPos=( -136.06, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -133.19, 1279.91, 1842.86 ) LPos=( -133.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, 1284.51, 1835.56 ) LPos=( -133.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1275.32, 1850.16 ) LPos=( -130.31, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -130.31, 1278.38, 1845.29 ) LPos=( -130.31, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -130.31, 1279.91, 1842.86 ) LPos=( -130.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1281.45, 1840.43 ) LPos=( -130.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -127.44, 1275.32, 1850.16 ) LPos=( -127.44, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -127.44, 1276.85, 1847.73 ) LPos=( -127.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, 1278.38, 1845.29 ) LPos=( -127.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1279.91, 1842.86 ) LPos=( -127.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1282.98, 1838.00 ) LPos=( -127.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, 1284.51, 1835.56 ) LPos=( -127.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -124.56, 1279.91, 1842.86 ) LPos=( -124.56, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -124.56, 1281.45, 1840.43 ) LPos=( -124.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, 1276.85, 1847.73 ) LPos=( -121.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -121.69, 1278.38, 1845.29 ) LPos=( -121.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -121.69, 1279.91, 1842.86 ) LPos=( -121.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, 1273.79, 1852.59 ) LPos=( -118.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -118.81, 1276.85, 1847.73 ) LPos=( -118.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -118.81, 1282.98, 1838.00 ) LPos=( -118.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1273.79, 1852.59 ) LPos=( -115.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1275.32, 1850.16 ) LPos=( -115.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -118.81, 1288.71, 1828.90 ) LPos=( -118.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, 1288.71, 1828.90 ) LPos=( -121.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -124.56, 1288.71, 1828.90 ) LPos=( -124.56, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -130.31, 1288.71, 1828.90 ) LPos=( -130.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, 1288.71, 1828.90 ) LPos=( -133.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, 1290.24, 1826.47 ) LPos=( -118.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -130.31, 1290.24, 1826.47 ) LPos=( -130.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -136.06, 1291.77, 1824.03 ) LPos=( -136.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -118.81, 1293.30, 1821.60 ) LPos=( -118.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, 1293.30, 1821.60 ) LPos=( -124.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -136.06, 1293.30, 1821.60 ) LPos=( -136.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1294.83, 1819.17 ) LPos=( -133.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -118.81, 1296.37, 1816.73 ) LPos=( -118.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -136.06, 1296.37, 1816.73 ) LPos=( -136.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1299.43, 1811.87 ) LPos=( -121.69, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, 1299.43, 1811.87 ) LPos=( -124.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, 1299.43, 1811.87 ) LPos=( -133.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -161.19, 1284.51, 1835.56 ) LPos=( -161.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, 1282.98, 1838.00 ) LPos=( -158.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -152.56, 1282.98, 1838.00 ) LPos=( -152.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, 1282.98, 1838.00 ) LPos=( -149.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -152.56, 1281.45, 1840.43 ) LPos=( -152.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, 1281.45, 1840.43 ) LPos=( -146.81, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -164.06, 1279.91, 1842.86 ) LPos=( -164.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -158.31, 1279.91, 1842.86 ) LPos=( -158.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, 1279.91, 1842.86 ) LPos=( -155.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, 1279.91, 1842.86 ) LPos=( -143.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, 1278.38, 1845.29 ) LPos=( -155.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, 1278.38, 1845.29 ) LPos=( -143.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -152.56, 1276.85, 1847.73 ) LPos=( -152.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -149.69, 1276.85, 1847.73 ) LPos=( -149.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -152.56, 1275.32, 1850.16 ) LPos=( -152.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -155.44, 1273.79, 1852.59 ) LPos=( -155.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -143.94, 1294.83, 1819.17 ) LPos=( -143.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -143.94, 1293.30, 1821.60 ) LPos=( -143.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, 1290.24, 1826.47 ) LPos=( -143.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -146.81, 1293.30, 1821.60 ) LPos=( -146.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -149.69, 1296.37, 1816.73 ) LPos=( -149.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, 1293.30, 1821.60 ) LPos=( -149.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, 1294.83, 1819.17 ) LPos=( -152.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -155.44, 1299.43, 1811.87 ) LPos=( -155.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, 1297.90, 1814.30 ) LPos=( -158.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, 1299.43, 1811.87 ) LPos=( -164.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -164.06, 1296.37, 1816.73 ) LPos=( -164.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -164.06, 1291.77, 1824.03 ) LPos=( -164.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -164.06, 1290.24, 1826.47 ) LPos=( -164.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, 1282.98, 1838.00 ) LPos=( -189.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -180.56, 1275.32, 1850.16 ) LPos=( -180.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, 1281.45, 1840.43 ) LPos=( -171.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -189.19, 1291.77, 1824.03 ) LPos=( -189.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -183.44, 1296.37, 1816.73 ) LPos=( -183.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, 1284.51, 1835.56 ) LPos=( -214.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -217.19, 1279.91, 1842.86 ) LPos=( -217.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -199.94, 1299.43, 1811.87 ) LPos=( -199.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -202.81, 1297.90, 1814.30 ) LPos=( -202.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -248.06, 1273.79, 1852.59 ) LPos=( -248.06, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -245.19, 1275.32, 1850.16 ) LPos=( -245.19, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -233.69, 1276.85, 1847.73 ) LPos=( -233.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -230.81, 1288.71, 1828.90 ) LPos=( -230.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -233.69, 1290.24, 1826.47 ) LPos=( -233.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -236.56, 1293.30, 1821.60 ) LPos=( -236.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -239.44, 1294.83, 1819.17 ) LPos=( -239.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, 1297.90, 1814.30 ) LPos=( -236.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -230.81, 1299.43, 1811.87 ) LPos=( -230.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, 1284.51, 1835.56 ) LPos=( -258.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -261.69, 1278.38, 1845.29 ) LPos=( -261.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -276.06, 1276.85, 1847.73 ) LPos=( -276.06, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -267.44, 1275.32, 1850.16 ) LPos=( -267.44, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -270.31, 1273.79, 1852.59 ) LPos=( -270.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -255.94, 1288.71, 1828.90 ) LPos=( -255.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -258.81, 1291.77, 1824.03 ) LPos=( -258.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -258.81, 1288.71, 1828.90 ) LPos=( -258.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1293.30, 1821.60 ) LPos=( -264.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -267.44, 1299.43, 1811.87 ) LPos=( -267.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -267.44, 1290.24, 1826.47 ) LPos=( -267.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -270.31, 1288.71, 1828.90 ) LPos=( -270.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -273.19, 1290.24, 1826.47 ) LPos=( -273.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -276.06, 1290.24, 1826.47 ) LPos=( -276.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -301.19, 1279.91, 1842.86 ) LPos=( -301.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -292.56, 1273.79, 1852.59 ) LPos=( -292.56, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1273.79, 1852.59 ) LPos=( -283.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -286.81, 1288.71, 1828.90 ) LPos=( -286.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -295.44, 1290.24, 1826.47 ) LPos=( -295.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -298.31, 1290.24, 1826.47 ) LPos=( -298.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -289.69, 1291.77, 1824.03 ) LPos=( -289.69, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -301.19, 1291.77, 1824.03 ) LPos=( -301.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -304.06, 1294.83, 1819.17 ) LPos=( -304.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -283.94, 1297.90, 1814.30 ) LPos=( -283.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -301.19, 1297.90, 1814.30 ) LPos=( -301.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -326.31, 1284.51, 1835.56 ) LPos=( -326.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -323.44, 1284.51, 1835.56 ) LPos=( -323.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -329.19, 1282.98, 1838.00 ) LPos=( -329.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -326.31, 1281.45, 1840.43 ) LPos=( -326.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -311.94, 1297.90, 1814.30 ) LPos=( -311.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -311.94, 1293.30, 1821.60 ) LPos=( -311.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -311.94, 1290.24, 1826.47 ) LPos=( -311.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -317.69, 1296.37, 1816.73 ) LPos=( -317.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -320.56, 1299.43, 1811.87 ) LPos=( -320.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -320.56, 1291.77, 1824.03 ) LPos=( -320.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -323.44, 1294.83, 1819.17 ) LPos=( -323.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -332.06, 1294.83, 1819.17 ) LPos=( -332.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -360.06, 1279.91, 1842.86 ) LPos=( -360.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -357.19, 1279.91, 1842.86 ) LPos=( -357.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -354.31, 1279.91, 1842.86 ) LPos=( -354.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -354.31, 1281.45, 1840.43 ) LPos=( -354.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -354.31, 1284.51, 1835.56 ) LPos=( -354.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -348.56, 1284.51, 1835.56 ) LPos=( -348.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -345.69, 1284.51, 1835.56 ) LPos=( -345.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -354.31, 1290.24, 1826.47 ) LPos=( -354.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -351.44, 1293.30, 1821.60 ) LPos=( -351.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -357.19, 1296.37, 1816.73 ) LPos=( -357.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -354.31, 1297.90, 1814.30 ) LPos=( -354.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -360.06, 1297.90, 1814.30 ) LPos=( -360.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -357.19, 1299.43, 1811.87 ) LPos=( -357.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -388.06, 1281.45, 1840.43 ) LPos=( -388.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -379.44, 1281.45, 1840.43 ) LPos=( -379.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -385.19, 1279.91, 1842.86 ) LPos=( -385.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1279.91, 1842.86 ) LPos=( -376.56, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -373.69, 1279.91, 1842.86 ) LPos=( -373.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -379.44, 1278.38, 1845.29 ) LPos=( -379.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -376.56, 1276.85, 1847.73 ) LPos=( -376.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -373.69, 1290.24, 1826.47 ) LPos=( -373.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -373.69, 1288.71, 1828.90 ) LPos=( -373.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -376.56, 1290.24, 1826.47 ) LPos=( -376.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -385.19, 1299.43, 1811.87 ) LPos=( -385.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -410.31, 1282.98, 1838.00 ) LPos=( -410.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -407.44, 1278.38, 1845.29 ) LPos=( -407.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -407.44, 1279.91, 1842.86 ) LPos=( -407.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -407.44, 1284.51, 1835.56 ) LPos=( -407.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -404.56, 1273.79, 1852.59 ) LPos=( -404.56, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -404.56, 1275.32, 1850.16 ) LPos=( -404.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -404.56, 1282.98, 1838.00 ) LPos=( -404.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -395.94, 1282.98, 1838.00 ) LPos=( -395.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -395.94, 1284.51, 1835.56 ) LPos=( -395.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -416.06, 1291.77, 1824.03 ) LPos=( -416.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -441.19, 1284.51, 1835.56 ) LPos=( -441.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -423.94, 1284.51, 1835.56 ) LPos=( -423.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -423.94, 1278.38, 1845.29 ) LPos=( -423.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -423.94, 1294.83, 1819.17 ) LPos=( -423.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -432.56, 1294.83, 1819.17 ) LPos=( -432.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -444.06, 1299.43, 1811.87 ) LPos=( -444.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -444.06, 1290.24, 1826.47 ) LPos=( -444.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -463.44, 1273.79, 1852.59 ) LPos=( -463.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -460.56, 1275.32, 1850.16 ) LPos=( -460.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -451.94, 1276.85, 1847.73 ) LPos=( -451.94, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -454.81, 1294.83, 1819.17 ) LPos=( -454.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -463.44, 1294.83, 1819.17 ) LPos=( -463.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -454.81, 1297.90, 1814.30 ) LPos=( -454.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -466.31, 1297.90, 1814.30 ) LPos=( -466.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -500.06, 1279.91, 1842.86 ) LPos=( -500.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -500.06, 1275.32, 1850.16 ) LPos=( -500.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -488.56, 1296.37, 1816.73 ) LPos=( -488.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -491.44, 1299.43, 1811.87 ) LPos=( -491.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -491.44, 1297.90, 1814.30 ) LPos=( -491.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -494.31, 1299.43, 1811.87 ) LPos=( -494.31, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -494.31, 1296.37, 1816.73 ) LPos=( -494.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -497.19, 1294.83, 1819.17 ) LPos=( -497.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -500.06, 1290.24, 1826.47 ) LPos=( -500.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -500.06, 1288.71, 1828.90 ) LPos=( -500.06, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -550.31, 1273.79, 1852.59 ) LPos=( -550.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -575.44, 1282.98, 1838.00 ) LPos=( -575.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -563.94, 1278.38, 1845.29 ) LPos=( -563.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -609.19, 1278.38, 1845.29 ) LPos=( -609.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -609.19, 1288.71, 1828.90 ) LPos=( -609.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -612.06, 1296.37, 1816.73 ) LPos=( -612.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 606.31, 1264.73, 1866.98 ) LPos=( 606.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 584.06, 1264.73, 1866.98 ) LPos=( 584.06, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 581.19, 1266.26, 1864.54 ) LPos=( 581.19, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 572.56, 1264.73, 1866.98 ) LPos=( 572.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 566.81, 1269.32, 1859.68 ) LPos=( 566.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 566.81, 1258.60, 1876.71 ) LPos=( 566.81, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 550.31, 1254.40, 1883.37 ) LPos=( 550.31, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 547.44, 1258.60, 1876.71 ) LPos=( 547.44, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 550.31, 1269.32, 1859.68 ) LPos=( 550.31, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 519.44, 1269.32, 1859.68 ) LPos=( 519.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 507.94, 1264.73, 1866.98 ) LPos=( 507.94, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 507.94, 1260.13, 1874.28 ) LPos=( 507.94, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 479.94, 1267.79, 1862.11 ) LPos=( 479.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 457.69, 1254.40, 1883.37 ) LPos=( 457.69, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 469.19, 1252.87, 1885.81 ) LPos=( 469.19, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 454.81, 1269.32, 1859.68 ) LPos=( 454.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 454.81, 1267.79, 1862.11 ) LPos=( 454.81, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 451.94, 1267.79, 1862.11 ) LPos=( 451.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 451.94, 1263.20, 1869.41 ) LPos=( 451.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 432.56, 1263.20, 1869.41 ) LPos=( 432.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 432.56, 1266.26, 1864.54 ) LPos=( 432.56, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 423.94, 1269.32, 1859.68 ) LPos=( 423.94, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 407.44, 1249.81, 1890.67 ) LPos=( 407.44, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 401.69, 1243.68, 1900.40 ) LPos=( 401.69, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 404.56, 1263.20, 1869.41 ) LPos=( 404.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 398.81, 1264.73, 1866.98 ) LPos=( 398.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 379.44, 1245.21, 1897.97 ) LPos=( 379.44, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 382.31, 1245.21, 1897.97 ) LPos=( 382.31, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 385.19, 1251.34, 1888.24 ) LPos=( 385.19, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 379.44, 1258.60, 1876.71 ) LPos=( 379.44, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 342.81, 1252.87, 1885.81 ) LPos=( 342.81, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 357.19, 1243.68, 1900.40 ) LPos=( 357.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 360.06, 1266.26, 1864.54 ) LPos=( 360.06, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 345.69, 1269.32, 1859.68 ) LPos=( 345.69, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 311.94, 1252.87, 1885.81 ) LPos=( 311.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 329.19, 1248.27, 1893.10 ) LPos=( 329.19, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 329.19, 1260.13, 1874.28 ) LPos=( 329.19, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 314.81, 1269.32, 1859.68 ) LPos=( 314.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 298.31, 1254.40, 1883.37 ) LPos=( 298.31, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 304.06, 1251.34, 1888.24 ) LPos=( 304.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 255.94, 1246.74, 1895.54 ) LPos=( 255.94, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 261.69, 1263.20, 1869.41 ) LPos=( 261.69, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 255.94, 1263.20, 1869.41 ) LPos=( 255.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 267.44, 1266.26, 1864.54 ) LPos=( 267.44, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1267.79, 1862.11 ) LPos=( 273.19, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, 1252.87, 1885.81 ) LPos=( 233.69, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, 1263.20, 1869.41 ) LPos=( 248.06, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 242.31, 1264.73, 1866.98 ) LPos=( 242.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 236.56, 1266.26, 1864.54 ) LPos=( 236.56, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 230.81, 1264.73, 1866.98 ) LPos=( 230.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 230.81, 1263.20, 1869.41 ) LPos=( 230.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, 1267.79, 1862.11 ) LPos=( 227.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, 1263.20, 1869.41 ) LPos=( 227.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 211.44, 1252.87, 1885.81 ) LPos=( 211.44, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1258.60, 1876.71 ) LPos=( 199.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 208.56, 1263.20, 1869.41 ) LPos=( 208.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 217.19, 1264.73, 1866.98 ) LPos=( 217.19, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, 1264.73, 1866.98 ) LPos=( 211.44, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 220.06, 1266.26, 1864.54 ) LPos=( 220.06, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 205.69, 1266.26, 1864.54 ) LPos=( 205.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, 1267.79, 1862.11 ) LPos=( 211.44, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 202.81, 1267.79, 1862.11 ) LPos=( 202.81, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 199.94, 1269.32, 1859.68 ) LPos=( 199.94, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, 1254.40, 1883.37 ) LPos=( 192.06, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 189.19, 1251.34, 1888.24 ) LPos=( 189.19, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1246.74, 1895.54 ) LPos=( 177.69, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, 1269.32, 1859.68 ) LPos=( 183.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1264.73, 1866.98 ) LPos=( 180.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, 1264.73, 1866.98 ) LPos=( 177.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 143.94, 1252.87, 1885.81 ) LPos=( 143.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, 1243.68, 1900.40 ) LPos=( 152.56, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 152.56, 1252.87, 1885.81 ) LPos=( 152.56, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 158.31, 1245.21, 1897.97 ) LPos=( 158.31, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 164.06, 1258.60, 1876.71 ) LPos=( 164.06, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 161.19, 1258.60, 1876.71 ) LPos=( 161.19, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, 1248.27, 1893.10 ) LPos=( 136.06, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, 1243.68, 1900.40 ) LPos=( 133.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1243.68, 1900.40 ) LPos=( 96.56, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, 1243.68, 1900.40 ) LPos=( 99.44, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, 1245.21, 1897.97 ) LPos=( 99.44, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1246.74, 1895.54 ) LPos=( 99.44, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 102.31, 1254.40, 1883.37 ) LPos=( 102.31, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1260.13, 1874.28 ) LPos=( 90.81, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, 1261.66, 1871.84 ) LPos=( 105.19, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1263.20, 1869.41 ) LPos=( 90.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 87.94, 1263.20, 1869.41 ) LPos=( 87.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 87.94, 1266.26, 1864.54 ) LPos=( 87.94, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 99.44, 1269.32, 1859.68 ) LPos=( 99.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 96.56, 1269.32, 1859.68 ) LPos=( 96.56, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, 1269.32, 1859.68 ) LPos=( 90.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1249.81, 1890.67 ) LPos=( 74.31, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1246.74, 1895.54 ) LPos=( 59.94, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 77.19, 1243.68, 1900.40 ) LPos=( 77.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, 1263.20, 1869.41 ) LPos=( 74.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1266.26, 1864.54 ) LPos=( 71.44, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1264.73, 1866.98 ) LPos=( 68.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, 1267.79, 1862.11 ) LPos=( 65.69, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 65.69, 1264.73, 1866.98 ) LPos=( 65.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, 1260.13, 1874.28 ) LPos=( 62.81, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, 1260.13, 1874.28 ) LPos=( 59.94, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, 1245.21, 1897.97 ) LPos=( 52.06, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1263.20, 1869.41 ) LPos=( 49.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, 1263.20, 1869.41 ) LPos=( 31.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 52.06, 1266.26, 1864.54 ) LPos=( 52.06, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 46.31, 1267.79, 1862.11 ) LPos=( 46.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1254.40, 1883.37 ) LPos=( 21.19, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1251.34, 1888.24 ) LPos=( 24.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1248.27, 1893.10 ) LPos=( 21.19, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, 1246.74, 1895.54 ) LPos=( 6.81, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1245.21, 1897.97 ) LPos=( 21.19, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1267.79, 1862.11 ) LPos=( 24.06, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1264.73, 1866.98 ) LPos=( 21.19, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1269.32, 1859.68 ) LPos=( 18.31, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1267.79, 1862.11 ) LPos=( 18.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1263.20, 1869.41 ) LPos=( 18.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1260.13, 1874.28 ) LPos=( 18.31, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1266.26, 1864.54 ) LPos=( 15.44, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, 1267.79, 1862.11 ) LPos=( 12.56, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, 1264.73, 1866.98 ) LPos=( 9.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1261.66, 1871.84 ) LPos=( 9.69, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 9.69, 1258.60, 1876.71 ) LPos=( 9.69, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1267.79, 1862.11 ) LPos=( 6.81, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1267.79, 1862.11 ) LPos=( 3.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, 1252.87, 1885.81 ) LPos=( -24.06, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1243.68, 1900.40 ) LPos=( -21.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1251.34, 1888.24 ) LPos=( -18.31, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1251.34, 1888.24 ) LPos=( -15.44, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -6.81, 1252.87, 1885.81 ) LPos=( -6.81, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -21.19, 1258.60, 1876.71 ) LPos=( -21.19, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, 1263.20, 1869.41 ) LPos=( -18.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, 1263.20, 1869.41 ) LPos=( -21.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, 1264.73, 1866.98 ) LPos=( -9.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1264.73, 1866.98 ) LPos=( -24.06, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, 1269.32, 1859.68 ) LPos=( -6.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, 1269.32, 1859.68 ) LPos=( -15.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1254.40, 1883.37 ) LPos=( -31.94, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -49.19, 1252.87, 1885.81 ) LPos=( -49.19, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, 1251.34, 1888.24 ) LPos=( -34.81, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1248.27, 1893.10 ) LPos=( -52.06, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -34.81, 1248.27, 1893.10 ) LPos=( -34.81, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1258.60, 1876.71 ) LPos=( -31.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, 1258.60, 1876.71 ) LPos=( -34.81, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -40.56, 1267.79, 1862.11 ) LPos=( -40.56, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, 1261.66, 1871.84 ) LPos=( -40.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, 1260.13, 1874.28 ) LPos=( -40.56, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1264.73, 1866.98 ) LPos=( -46.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1261.66, 1871.84 ) LPos=( -46.31, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -49.19, 1269.32, 1859.68 ) LPos=( -49.19, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, 1263.20, 1869.41 ) LPos=( -49.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1251.34, 1888.24 ) LPos=( -80.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -77.19, 1246.74, 1895.54 ) LPos=( -77.19, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, 1251.34, 1888.24 ) LPos=( -77.19, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -68.56, 1246.74, 1895.54 ) LPos=( -68.56, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, 1249.81, 1890.67 ) LPos=( -65.69, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -62.81, 1246.74, 1895.54 ) LPos=( -62.81, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -59.94, 1246.74, 1895.54 ) LPos=( -59.94, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1248.27, 1893.10 ) LPos=( -59.94, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, 1249.81, 1890.67 ) LPos=( -59.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, 1252.87, 1885.81 ) LPos=( -59.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, 1258.60, 1876.71 ) LPos=( -59.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, 1258.60, 1876.71 ) LPos=( -68.56, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1260.13, 1874.28 ) LPos=( -77.19, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1261.66, 1871.84 ) LPos=( -59.94, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1263.20, 1869.41 ) LPos=( -62.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -65.69, 1263.20, 1869.41 ) LPos=( -65.69, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1263.20, 1869.41 ) LPos=( -71.44, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, 1264.73, 1866.98 ) LPos=( -65.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -74.31, 1264.73, 1866.98 ) LPos=( -74.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, 1266.26, 1864.54 ) LPos=( -65.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, 1267.79, 1862.11 ) LPos=( -74.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, 1269.32, 1859.68 ) LPos=( -62.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, 1254.40, 1883.37 ) LPos=( -90.81, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -99.44, 1249.81, 1890.67 ) LPos=( -99.44, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -102.31, 1248.27, 1893.10 ) LPos=( -102.31, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -96.56, 1248.27, 1893.10 ) LPos=( -96.56, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, 1246.74, 1895.54 ) LPos=( -108.06, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1243.68, 1900.40 ) LPos=( -93.69, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, 1263.20, 1869.41 ) LPos=( -87.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -87.94, 1261.66, 1871.84 ) LPos=( -87.94, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, 1261.66, 1871.84 ) LPos=( -90.81, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1260.13, 1874.28 ) LPos=( -90.81, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -93.69, 1266.26, 1864.54 ) LPos=( -93.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, 1261.66, 1871.84 ) LPos=( -93.69, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, 1267.79, 1862.11 ) LPos=( -96.56, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, 1264.73, 1866.98 ) LPos=( -96.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, 1263.20, 1869.41 ) LPos=( -96.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, 1261.66, 1871.84 ) LPos=( -96.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1264.73, 1866.98 ) LPos=( -99.44, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -99.44, 1260.13, 1874.28 ) LPos=( -99.44, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -102.31, 1267.79, 1862.11 ) LPos=( -102.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1266.26, 1864.54 ) LPos=( -102.31, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1260.13, 1874.28 ) LPos=( -102.31, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, 1269.32, 1859.68 ) LPos=( -108.06, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1245.21, 1897.97 ) LPos=( -130.31, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -130.31, 1248.27, 1893.10 ) LPos=( -130.31, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1251.34, 1888.24 ) LPos=( -130.31, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, 1248.27, 1893.10 ) LPos=( -127.44, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -121.69, 1248.27, 1893.10 ) LPos=( -121.69, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1245.21, 1897.97 ) LPos=( -115.94, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -115.94, 1249.81, 1890.67 ) LPos=( -115.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, 1258.60, 1876.71 ) LPos=( -136.06, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, 1260.13, 1874.28 ) LPos=( -133.19, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, 1261.66, 1871.84 ) LPos=( -124.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, 1264.73, 1866.98 ) LPos=( -130.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -118.81, 1269.32, 1859.68 ) LPos=( -118.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1269.32, 1859.68 ) LPos=( -121.69, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -158.31, 1249.81, 1890.67 ) LPos=( -158.31, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -149.69, 1269.32, 1859.68 ) LPos=( -149.69, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -149.69, 1260.13, 1874.28 ) LPos=( -149.69, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -152.56, 1269.32, 1859.68 ) LPos=( -152.56, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -152.56, 1258.60, 1876.71 ) LPos=( -152.56, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, 1267.79, 1862.11 ) LPos=( -158.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -183.44, 1251.34, 1888.24 ) LPos=( -183.44, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -177.69, 1245.21, 1897.97 ) LPos=( -177.69, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, 1251.34, 1888.24 ) LPos=( -171.94, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -214.31, 1243.68, 1900.40 ) LPos=( -214.31, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -205.69, 1266.26, 1864.54 ) LPos=( -205.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -208.56, 1261.66, 1871.84 ) LPos=( -208.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, 1248.27, 1893.10 ) LPos=( -227.94, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -227.94, 1249.81, 1890.67 ) LPos=( -227.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -236.56, 1258.60, 1876.71 ) LPos=( -236.56, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -227.94, 1260.13, 1874.28 ) LPos=( -227.94, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -233.69, 1260.13, 1874.28 ) LPos=( -233.69, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -233.69, 1263.20, 1869.41 ) LPos=( -233.69, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -245.19, 1263.20, 1869.41 ) LPos=( -245.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -248.06, 1263.20, 1869.41 ) LPos=( -248.06, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, 1264.73, 1866.98 ) LPos=( -227.94, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -233.69, 1264.73, 1866.98 ) LPos=( -233.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, 1264.73, 1866.98 ) LPos=( -236.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, 1269.32, 1859.68 ) LPos=( -236.56, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -273.19, 1248.27, 1893.10 ) LPos=( -273.19, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -264.56, 1264.73, 1866.98 ) LPos=( -264.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1263.20, 1869.41 ) LPos=( -264.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -267.44, 1261.66, 1871.84 ) LPos=( -267.44, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -286.81, 1246.74, 1895.54 ) LPos=( -286.81, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -283.94, 1252.87, 1885.81 ) LPos=( -283.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -283.94, 1263.20, 1869.41 ) LPos=( -283.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -301.19, 1266.26, 1864.54 ) LPos=( -301.19, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -314.81, 1243.68, 1900.40 ) LPos=( -314.81, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -314.81, 1264.73, 1866.98 ) LPos=( -314.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -314.81, 1263.20, 1869.41 ) LPos=( -314.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -323.44, 1267.79, 1862.11 ) LPos=( -323.44, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -339.94, 1245.21, 1897.97 ) LPos=( -339.94, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -351.44, 1261.66, 1871.84 ) LPos=( -351.44, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, 1263.20, 1869.41 ) LPos=( -354.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -357.19, 1263.20, 1869.41 ) LPos=( -357.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -373.69, 1254.40, 1883.37 ) LPos=( -373.69, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -388.06, 1245.21, 1897.97 ) LPos=( -388.06, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -367.94, 1258.60, 1876.71 ) LPos=( -367.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -370.81, 1269.32, 1859.68 ) LPos=( -370.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -413.19, 1246.74, 1895.54 ) LPos=( -413.19, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -410.31, 1243.68, 1900.40 ) LPos=( -410.31, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -401.69, 1243.68, 1900.40 ) LPos=( -401.69, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -438.31, 1249.81, 1890.67 ) LPos=( -438.31, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -438.31, 1267.79, 1862.11 ) LPos=( -438.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -444.06, 1267.79, 1862.11 ) LPos=( -444.06, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -444.06, 1258.60, 1876.71 ) LPos=( -444.06, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -472.06, 1246.74, 1895.54 ) LPos=( -472.06, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -457.69, 1249.81, 1890.67 ) LPos=( -457.69, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -466.31, 1260.13, 1874.28 ) LPos=( -466.31, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -454.81, 1264.73, 1866.98 ) LPos=( -454.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -479.94, 1251.34, 1888.24 ) LPos=( -479.94, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -479.94, 1245.21, 1897.97 ) LPos=( -479.94, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -494.31, 1261.66, 1871.84 ) LPos=( -494.31, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -497.19, 1266.26, 1864.54 ) LPos=( -497.19, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -528.06, 1249.81, 1890.67 ) LPos=( -528.06, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -556.06, 1254.40, 1883.37 ) LPos=( -556.06, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -550.31, 1252.87, 1885.81 ) LPos=( -550.31, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -547.44, 1252.87, 1885.81 ) LPos=( -547.44, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -535.94, 1249.81, 1890.67 ) LPos=( -535.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -584.06, 1251.34, 1888.24 ) LPos=( -584.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -566.81, 1252.87, 1885.81 ) LPos=( -566.81, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -606.31, 1264.73, 1866.98 ) LPos=( -606.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:066,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -556.06, -1550.88, 1412.57 ) LPos=( -556.06, -580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:066,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -507.94, -1562.74, 1393.74 ) LPos=( -507.94, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:066,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -494.31, -1568.87, 1384.01 ) LPos=( -494.31, -614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -376.56, -1559.67, 1398.61 ) LPos=( -376.56, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -360.06, -1562.74, 1393.74 ) LPos=( -360.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -339.94, -1561.21, 1396.18 ) LPos=( -339.94, -600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -339.94, -1559.67, 1398.61 ) LPos=( -339.94, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -332.06, -1552.41, 1410.14 ) LPos=( -332.06, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, -1544.75, 1422.30 ) LPos=( -236.56, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -208.56, -1570.40, 1381.58 ) LPos=( -208.56, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, -1565.80, 1388.88 ) LPos=( -171.94, -608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, -1568.87, 1384.01 ) LPos=( -118.81, -614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, -1565.80, 1388.88 ) LPos=( -115.94, -608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1549.35, 1415.00 ) LPos=( -99.44, -577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1552.41, 1410.14 ) LPos=( -105.19, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, -1544.75, 1422.30 ) LPos=( -15.44, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, -1564.27, 1391.31 ) LPos=( -24.06, -605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, -1562.74, 1393.74 ) LPos=( -24.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, -1567.33, 1386.45 ) LPos=( -21.19, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, -1562.74, 1393.74 ) LPos=( 24.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 52.06, -1567.33, 1386.45 ) LPos=( 52.06, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, -1564.27, 1391.31 ) LPos=( 87.94, -605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, -1565.80, 1388.88 ) LPos=( 105.19, -608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, -1561.21, 1396.18 ) LPos=( 127.44, -600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, -1562.74, 1393.74 ) LPos=( 127.44, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1567.33, 1386.45 ) LPos=( 115.94, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, -1570.40, 1381.58 ) LPos=( 121.69, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, -1570.40, 1381.58 ) LPos=( 133.19, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 155.44, -1552.41, 1410.14 ) LPos=( 155.44, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1550.88, 1412.57 ) LPos=( 152.56, -580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 152.56, -1546.29, 1419.87 ) LPos=( 152.56, -572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 161.19, -1544.75, 1422.30 ) LPos=( 161.19, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 149.69, -1568.87, 1384.01 ) LPos=( 149.69, -614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 164.06, -1562.74, 1393.74 ) LPos=( 164.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, -1549.35, 1415.00 ) LPos=( 248.06, -577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 267.44, -1546.29, 1419.87 ) LPos=( 267.44, -572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 270.31, -1544.75, 1422.30 ) LPos=( 270.31, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 264.56, -1544.75, 1422.30 ) LPos=( 264.56, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 255.94, -1567.33, 1386.45 ) LPos=( 255.94, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 276.06, -1567.33, 1386.45 ) LPos=( 276.06, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 301.19, -1559.67, 1398.61 ) LPos=( 301.19, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 323.44, -1555.48, 1405.27 ) LPos=( 323.44, -589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 326.31, -1544.75, 1422.30 ) LPos=( 326.31, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 360.06, -1570.40, 1381.58 ) LPos=( 360.06, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 385.19, -1555.48, 1405.27 ) LPos=( 385.19, -589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 376.56, -1553.95, 1407.71 ) LPos=( 376.56, -586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 395.94, -1550.88, 1412.57 ) LPos=( 395.94, -580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 398.81, -1559.67, 1398.61 ) LPos=( 398.81, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 404.56, -1561.21, 1396.18 ) LPos=( 404.56, -600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 426.81, -1544.75, 1422.30 ) LPos=( 426.81, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 451.94, -1549.35, 1415.00 ) LPos=( 451.94, -577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 488.56, -1544.75, 1422.30 ) LPos=( 488.56, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 507.94, -1552.41, 1410.14 ) LPos=( 507.94, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 556.06, -1562.74, 1393.74 ) LPos=( 556.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -591.94, -1522.31, 1457.95 ) LPos=( -591.94, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -591.94, -1523.84, 1455.52 ) LPos=( -591.94, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -603.44, -1514.65, 1470.11 ) LPos=( -603.44, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -612.06, -1514.65, 1470.11 ) LPos=( -612.06, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -612.06, -1522.31, 1457.95 ) LPos=( -612.06, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -612.06, -1525.37, 1453.08 ) LPos=( -612.06, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -578.31, -1520.77, 1460.38 ) LPos=( -578.31, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -535.94, -1517.71, 1465.25 ) LPos=( -535.94, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -556.06, -1514.65, 1470.11 ) LPos=( -556.06, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -528.06, -1532.63, 1441.55 ) LPos=( -528.06, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -519.44, -1535.70, 1436.69 ) LPos=( -519.44, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -507.94, -1529.57, 1446.42 ) LPos=( -507.94, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -398.81, -1525.37, 1453.08 ) LPos=( -398.81, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -407.44, -1514.65, 1470.11 ) LPos=( -407.44, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -410.31, -1514.65, 1470.11 ) LPos=( -410.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -379.44, -1516.18, 1467.68 ) LPos=( -379.44, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -388.06, -1516.18, 1467.68 ) LPos=( -388.06, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -370.81, -1540.29, 1429.39 ) LPos=( -370.81, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -367.94, -1540.29, 1429.39 ) LPos=( -367.94, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -360.06, -1529.57, 1446.42 ) LPos=( -360.06, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -339.94, -1535.70, 1436.69 ) LPos=( -339.94, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -171.94, -1538.76, 1431.82 ) LPos=( -171.94, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, -1514.65, 1470.11 ) LPos=( -121.69, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, -1514.65, 1470.11 ) LPos=( -133.19, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, -1535.70, 1436.69 ) LPos=( -136.06, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1532.63, 1441.55 ) LPos=( -130.31, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -99.44, -1514.65, 1470.11 ) LPos=( -99.44, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -102.31, -1514.65, 1470.11 ) LPos=( -102.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, -1517.71, 1465.25 ) LPos=( -108.06, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, -1522.31, 1457.95 ) LPos=( -108.06, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -59.94, -1514.65, 1470.11 ) LPos=( -59.94, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, -1514.65, 1470.11 ) LPos=( -62.81, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1514.65, 1470.11 ) LPos=( -37.69, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -37.69, -1516.18, 1467.68 ) LPos=( -37.69, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1517.71, 1465.25 ) LPos=( -9.69, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -21.19, -1516.18, 1467.68 ) LPos=( -21.19, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1529.57, 1446.42 ) LPos=( -15.44, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 6.81, -1517.71, 1465.25 ) LPos=( 6.81, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, -1516.18, 1467.68 ) LPos=( 3.94, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, -1520.77, 1460.38 ) LPos=( 52.06, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, -1520.77, 1460.38 ) LPos=( 49.19, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, -1534.16, 1439.12 ) LPos=( 31.94, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, -1516.18, 1467.68 ) LPos=( 80.06, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 68.56, -1534.16, 1439.12 ) LPos=( 68.56, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1523.84, 1455.52 ) LPos=( 90.81, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, -1520.77, 1460.38 ) LPos=( 105.19, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 105.19, -1516.18, 1467.68 ) LPos=( 105.19, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, -1514.65, 1470.11 ) LPos=( 108.06, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, -1514.65, 1470.11 ) LPos=( 102.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, -1531.10, 1443.99 ) LPos=( 102.31, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1529.57, 1446.42 ) LPos=( 105.19, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 108.06, -1534.16, 1439.12 ) LPos=( 108.06, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1531.10, 1443.99 ) LPos=( 108.06, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, -1525.37, 1453.08 ) LPos=( 136.06, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, -1534.16, 1439.12 ) LPos=( 115.94, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, -1538.76, 1431.82 ) LPos=( 124.56, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 127.44, -1538.76, 1431.82 ) LPos=( 127.44, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, -1538.76, 1431.82 ) LPos=( 130.31, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 161.19, -1523.84, 1455.52 ) LPos=( 161.19, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 158.31, -1522.31, 1457.95 ) LPos=( 158.31, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 158.31, -1519.24, 1462.81 ) LPos=( 158.31, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 146.81, -1538.76, 1431.82 ) LPos=( 146.81, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 149.69, -1535.70, 1436.69 ) LPos=( 149.69, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, -1531.10, 1443.99 ) LPos=( 149.69, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 155.44, -1535.70, 1436.69 ) LPos=( 155.44, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 161.19, -1537.23, 1434.26 ) LPos=( 161.19, -555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 164.06, -1531.10, 1443.99 ) LPos=( 164.06, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 180.56, -1532.63, 1441.55 ) LPos=( 180.56, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 174.81, -1534.16, 1439.12 ) LPos=( 174.81, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 180.56, -1537.23, 1434.26 ) LPos=( 180.56, -555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, -1540.29, 1429.39 ) LPos=( 199.94, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 205.69, -1535.70, 1436.69 ) LPos=( 205.69, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 211.44, -1537.23, 1434.26 ) LPos=( 211.44, -555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 214.31, -1532.63, 1441.55 ) LPos=( 214.31, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 217.19, -1532.63, 1441.55 ) LPos=( 217.19, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 220.06, -1534.16, 1439.12 ) LPos=( 220.06, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, -1520.77, 1460.38 ) LPos=( 248.06, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, -1516.18, 1467.68 ) LPos=( 245.19, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 245.19, -1519.24, 1462.81 ) LPos=( 245.19, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 245.19, -1525.37, 1453.08 ) LPos=( 245.19, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 242.31, -1523.84, 1455.52 ) LPos=( 242.31, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 239.44, -1520.77, 1460.38 ) LPos=( 239.44, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 236.56, -1519.24, 1462.81 ) LPos=( 236.56, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 230.81, -1529.57, 1446.42 ) LPos=( 230.81, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, -1531.10, 1443.99 ) LPos=( 227.94, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, -1531.10, 1443.99 ) LPos=( 233.69, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 227.94, -1534.16, 1439.12 ) LPos=( 227.94, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 239.44, -1538.76, 1431.82 ) LPos=( 239.44, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 270.31, -1517.71, 1465.25 ) LPos=( 270.31, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 348.56, -1540.29, 1429.39 ) LPos=( 348.56, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 373.69, -1525.37, 1453.08 ) LPos=( 373.69, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 367.94, -1532.63, 1441.55 ) LPos=( 367.94, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 416.06, -1522.31, 1457.95 ) LPos=( 416.06, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 398.81, -1540.29, 1429.39 ) LPos=( 398.81, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 435.44, -1525.37, 1453.08 ) LPos=( 435.44, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 432.56, -1514.65, 1470.11 ) LPos=( 432.56, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 525.19, -1540.29, 1429.39 ) LPos=( 525.19, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 550.31, -1514.65, 1470.11 ) LPos=( 550.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 535.94, -1529.57, 1446.42 ) LPos=( 535.94, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 563.94, -1519.24, 1462.81 ) LPos=( 563.94, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 600.56, -1514.65, 1470.11 ) LPos=( 600.56, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -600.56, -1499.46, 1494.23 ) LPos=( -600.56, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -578.31, -1507.12, 1482.07 ) LPos=( -578.31, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -535.94, -1484.54, 1517.92 ) LPos=( -535.94, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -538.81, -1489.14, 1510.62 ) LPos=( -538.81, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -547.44, -1492.20, 1505.76 ) LPos=( -547.44, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -547.44, -1508.65, 1479.63 ) LPos=( -547.44, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -535.94, -1508.65, 1479.63 ) LPos=( -535.94, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -494.31, -1499.46, 1494.23 ) LPos=( -494.31, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -488.56, -1499.46, 1494.23 ) LPos=( -488.56, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -488.56, -1508.65, 1479.63 ) LPos=( -488.56, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -426.81, -1507.12, 1482.07 ) LPos=( -426.81, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -395.94, -1507.12, 1482.07 ) LPos=( -395.94, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -311.94, -1490.67, 1508.19 ) LPos=( -311.94, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -314.81, -1492.20, 1505.76 ) LPos=( -314.81, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -326.31, -1500.99, 1491.80 ) LPos=( -326.31, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -329.19, -1505.59, 1484.50 ) LPos=( -329.19, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -267.44, -1484.54, 1517.92 ) LPos=( -267.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -273.19, -1484.54, 1517.92 ) LPos=( -273.19, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, -1489.14, 1510.62 ) LPos=( -227.94, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -227.94, -1486.07, 1515.49 ) LPos=( -227.94, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, -1486.07, 1515.49 ) LPos=( -236.56, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -239.44, -1486.07, 1515.49 ) LPos=( -239.44, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -242.31, -1486.07, 1515.49 ) LPos=( -242.31, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, -1486.07, 1515.49 ) LPos=( -245.19, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -248.06, -1486.07, 1515.49 ) LPos=( -248.06, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, -1484.54, 1517.92 ) LPos=( -236.56, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -199.94, -1490.67, 1508.19 ) LPos=( -199.94, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -199.94, -1493.73, 1503.33 ) LPos=( -199.94, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -199.94, -1495.26, 1500.89 ) LPos=( -199.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -208.56, -1492.20, 1505.76 ) LPos=( -208.56, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -214.31, -1492.20, 1505.76 ) LPos=( -214.31, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1493.73, 1503.33 ) LPos=( -214.31, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -217.19, -1487.60, 1513.06 ) LPos=( -217.19, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -171.94, -1495.26, 1500.89 ) LPos=( -171.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -174.81, -1495.26, 1500.89 ) LPos=( -174.81, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -189.19, -1495.26, 1500.89 ) LPos=( -189.19, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -189.19, -1499.46, 1494.23 ) LPos=( -189.19, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -174.81, -1499.46, 1494.23 ) LPos=( -174.81, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -146.81, -1495.26, 1500.89 ) LPos=( -146.81, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -149.69, -1495.26, 1500.89 ) LPos=( -149.69, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -164.06, -1495.26, 1500.89 ) LPos=( -164.06, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, -1499.46, 1494.23 ) LPos=( -164.06, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -161.19, -1499.46, 1494.23 ) LPos=( -161.19, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1499.46, 1494.23 ) LPos=( -155.44, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -127.44, -1495.26, 1500.89 ) LPos=( -127.44, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1495.26, 1500.89 ) LPos=( -133.19, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -121.69, -1493.73, 1503.33 ) LPos=( -121.69, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, -1493.73, 1503.33 ) LPos=( -124.56, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, -1490.67, 1508.19 ) LPos=( -121.69, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, -1489.14, 1510.62 ) LPos=( -133.19, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -115.94, -1486.07, 1515.49 ) LPos=( -115.94, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -121.69, -1486.07, 1515.49 ) LPos=( -121.69, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, -1484.54, 1517.92 ) LPos=( -115.94, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, -1486.07, 1515.49 ) LPos=( -96.56, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -99.44, -1484.54, 1517.92 ) LPos=( -99.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -105.19, -1487.60, 1513.06 ) LPos=( -105.19, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -80.06, -1507.12, 1482.07 ) LPos=( -80.06, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, -1508.65, 1479.63 ) LPos=( -68.56, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, -1505.59, 1484.50 ) LPos=( -37.69, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -34.81, -1505.59, 1484.50 ) LPos=( -34.81, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, -1507.12, 1482.07 ) LPos=( -37.69, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1508.65, 1479.63 ) LPos=( -43.44, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, -1510.18, 1477.20 ) LPos=( -46.31, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, -1510.18, 1477.20 ) LPos=( -40.56, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, -1495.26, 1500.89 ) LPos=( -24.06, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, -1490.67, 1508.19 ) LPos=( -18.31, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -24.06, -1508.65, 1479.63 ) LPos=( -24.06, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, -1507.12, 1482.07 ) LPos=( -24.06, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1510.18, 1477.20 ) LPos=( -9.69, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1507.12, 1482.07 ) LPos=( -9.69, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1508.65, 1479.63 ) LPos=( -6.81, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, -1487.60, 1513.06 ) LPos=( 18.31, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, -1486.07, 1515.49 ) LPos=( 12.56, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 9.69, -1486.07, 1515.49 ) LPos=( 9.69, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, -1486.07, 1515.49 ) LPos=( 6.81, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1484.54, 1517.92 ) LPos=( 3.94, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3.94, -1487.60, 1513.06 ) LPos=( 3.94, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, -1492.20, 1505.76 ) LPos=( 3.94, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, -1508.65, 1479.63 ) LPos=( 3.94, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 49.19, -1487.60, 1513.06 ) LPos=( 49.19, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, -1487.60, 1513.06 ) LPos=( 37.69, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, -1487.60, 1513.06 ) LPos=( 31.94, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 40.56, -1484.54, 1517.92 ) LPos=( 40.56, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 40.56, -1505.59, 1484.50 ) LPos=( 40.56, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, -1510.18, 1477.20 ) LPos=( 52.06, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 80.06, -1492.20, 1505.76 ) LPos=( 80.06, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1495.26, 1500.89 ) LPos=( 80.06, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 77.19, -1486.07, 1515.49 ) LPos=( 77.19, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 74.31, -1484.54, 1517.92 ) LPos=( 74.31, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1492.20, 1505.76 ) LPos=( 74.31, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 71.44, -1492.20, 1505.76 ) LPos=( 71.44, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, -1484.54, 1517.92 ) LPos=( 62.81, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1502.52, 1489.36 ) LPos=( 74.31, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1504.06, 1486.93 ) LPos=( 80.06, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, -1505.59, 1484.50 ) LPos=( 71.44, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 74.31, -1505.59, 1484.50 ) LPos=( 74.31, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 77.19, -1505.59, 1484.50 ) LPos=( 77.19, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, -1507.12, 1482.07 ) LPos=( 77.19, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 77.19, -1508.65, 1479.63 ) LPos=( 77.19, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, -1504.06, 1486.93 ) LPos=( 93.69, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, -1505.59, 1484.50 ) LPos=( 96.56, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1504.06, 1486.93 ) LPos=( 96.56, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, -1510.18, 1477.20 ) LPos=( 99.44, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 99.44, -1502.52, 1489.36 ) LPos=( 99.44, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, -1500.99, 1491.80 ) LPos=( 99.44, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 105.19, -1510.18, 1477.20 ) LPos=( 105.19, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1500.99, 1491.80 ) LPos=( 108.06, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, -1490.67, 1508.19 ) LPos=( 124.56, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 124.56, -1493.73, 1503.33 ) LPos=( 124.56, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 121.69, -1489.14, 1510.62 ) LPos=( 121.69, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, -1495.26, 1500.89 ) LPos=( 115.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, -1499.46, 1494.23 ) LPos=( 130.31, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, -1504.06, 1486.93 ) LPos=( 130.31, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 124.56, -1507.12, 1482.07 ) LPos=( 124.56, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 158.31, -1486.07, 1515.49 ) LPos=( 158.31, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 149.69, -1510.18, 1477.20 ) LPos=( 149.69, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 149.69, -1508.65, 1479.63 ) LPos=( 149.69, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 164.06, -1499.46, 1494.23 ) LPos=( 164.06, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 248.06, -1486.07, 1515.49 ) LPos=( 248.06, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 239.44, -1484.54, 1517.92 ) LPos=( 239.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 248.06, -1502.52, 1489.36 ) LPos=( 248.06, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 245.19, -1504.06, 1486.93 ) LPos=( 245.19, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 245.19, -1508.65, 1479.63 ) LPos=( 245.19, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 267.44, -1495.26, 1500.89 ) LPos=( 267.44, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 261.69, -1495.26, 1500.89 ) LPos=( 261.69, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 255.94, -1495.26, 1500.89 ) LPos=( 255.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 258.81, -1487.60, 1513.06 ) LPos=( 258.81, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 255.94, -1510.18, 1477.20 ) LPos=( 255.94, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 258.81, -1505.59, 1484.50 ) LPos=( 258.81, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, -1504.06, 1486.93 ) LPos=( 261.69, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 261.69, -1500.99, 1491.80 ) LPos=( 261.69, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 261.69, -1499.46, 1494.23 ) LPos=( 261.69, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, -1487.60, 1513.06 ) LPos=( 304.06, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 292.56, -1484.54, 1517.92 ) LPos=( 292.56, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, -1505.59, 1484.50 ) LPos=( 283.94, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, -1490.67, 1508.19 ) LPos=( 320.56, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 451.94, -1499.46, 1494.23 ) LPos=( 451.94, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 472.06, -1508.65, 1479.63 ) LPos=( 472.06, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 522.31, -1500.99, 1491.80 ) LPos=( 522.31, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 525.19, -1502.52, 1489.36 ) LPos=( 525.19, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 547.44, -1484.54, 1517.92 ) LPos=( 547.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 584.06, -1499.46, 1494.23 ) LPos=( 584.06, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 591.94, -1487.60, 1513.06 ) LPos=( 591.94, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -591.94, -1463.62, 1551.14 ) LPos=( -591.94, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -550.31, -1460.56, 1556.00 ) LPos=( -550.31, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -479.94, -1454.43, 1565.73 ) LPos=( -479.94, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -479.94, -1455.96, 1563.30 ) LPos=( -479.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -485.69, -1473.95, 1534.74 ) LPos=( -485.69, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -500.06, -1478.54, 1527.44 ) LPos=( -500.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -460.56, -1465.16, 1548.70 ) LPos=( -460.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -460.56, -1463.62, 1551.14 ) LPos=( -460.56, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -426.81, -1460.56, 1556.00 ) LPos=( -426.81, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -432.56, -1459.03, 1558.43 ) LPos=( -432.56, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -435.44, -1454.43, 1565.73 ) LPos=( -435.44, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -435.44, -1455.96, 1563.30 ) LPos=( -435.44, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -438.31, -1462.09, 1553.57 ) LPos=( -438.31, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -441.19, -1455.96, 1563.30 ) LPos=( -441.19, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -444.06, -1469.35, 1542.04 ) LPos=( -444.06, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -438.31, -1469.35, 1542.04 ) LPos=( -438.31, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -432.56, -1470.88, 1539.61 ) LPos=( -432.56, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -429.69, -1470.88, 1539.61 ) LPos=( -429.69, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -423.94, -1472.42, 1537.17 ) LPos=( -423.94, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -413.19, -1472.42, 1537.17 ) LPos=( -413.19, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -410.31, -1472.42, 1537.17 ) LPos=( -410.31, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -410.31, -1470.88, 1539.61 ) LPos=( -410.31, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -407.44, -1472.42, 1537.17 ) LPos=( -407.44, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -404.56, -1473.95, 1534.74 ) LPos=( -404.56, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -401.69, -1477.01, 1529.88 ) LPos=( -401.69, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -401.69, -1475.48, 1532.31 ) LPos=( -401.69, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -401.69, -1472.42, 1537.17 ) LPos=( -401.69, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -401.69, -1470.88, 1539.61 ) LPos=( -401.69, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -398.81, -1475.48, 1532.31 ) LPos=( -398.81, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -398.81, -1470.88, 1539.61 ) LPos=( -398.81, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -367.94, -1465.16, 1548.70 ) LPos=( -367.94, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -373.69, -1470.88, 1539.61 ) LPos=( -373.69, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -388.06, -1480.08, 1525.01 ) LPos=( -388.06, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -385.19, -1480.08, 1525.01 ) LPos=( -385.19, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, -1460.56, 1556.00 ) LPos=( -354.31, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -339.94, -1455.96, 1563.30 ) LPos=( -339.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -351.44, -1469.35, 1542.04 ) LPos=( -351.44, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -320.56, -1462.09, 1553.57 ) LPos=( -320.56, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -320.56, -1463.62, 1551.14 ) LPos=( -320.56, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -323.44, -1460.56, 1556.00 ) LPos=( -323.44, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -323.44, -1463.62, 1551.14 ) LPos=( -323.44, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -326.31, -1457.50, 1560.87 ) LPos=( -326.31, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -329.19, -1460.56, 1556.00 ) LPos=( -329.19, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -329.19, -1463.62, 1551.14 ) LPos=( -329.19, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, -1454.43, 1565.73 ) LPos=( -332.06, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -314.81, -1473.95, 1534.74 ) LPos=( -314.81, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -311.94, -1475.48, 1532.31 ) LPos=( -311.94, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -320.56, -1478.54, 1527.44 ) LPos=( -320.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -314.81, -1478.54, 1527.44 ) LPos=( -314.81, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, -1480.08, 1525.01 ) LPos=( -332.06, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -329.19, -1480.08, 1525.01 ) LPos=( -329.19, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -326.31, -1480.08, 1525.01 ) LPos=( -326.31, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -292.56, -1465.16, 1548.70 ) LPos=( -292.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -286.81, -1463.62, 1551.14 ) LPos=( -286.81, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -286.81, -1462.09, 1553.57 ) LPos=( -286.81, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -283.94, -1457.50, 1560.87 ) LPos=( -283.94, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -304.06, -1475.48, 1532.31 ) LPos=( -304.06, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -301.19, -1477.01, 1529.88 ) LPos=( -301.19, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -298.31, -1478.54, 1527.44 ) LPos=( -298.31, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -298.31, -1472.42, 1537.17 ) LPos=( -298.31, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -298.31, -1470.88, 1539.61 ) LPos=( -298.31, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -295.44, -1480.08, 1525.01 ) LPos=( -295.44, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -295.44, -1478.54, 1527.44 ) LPos=( -295.44, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -292.56, -1478.54, 1527.44 ) LPos=( -292.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -255.94, -1460.56, 1556.00 ) LPos=( -255.94, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -261.69, -1460.56, 1556.00 ) LPos=( -261.69, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -264.56, -1465.16, 1548.70 ) LPos=( -264.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -267.44, -1462.09, 1553.57 ) LPos=( -267.44, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -267.44, -1465.16, 1548.70 ) LPos=( -267.44, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -276.06, -1454.43, 1565.73 ) LPos=( -276.06, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -261.69, -1472.42, 1537.17 ) LPos=( -261.69, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -248.06, -1473.95, 1534.74 ) LPos=( -248.06, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -242.31, -1480.08, 1525.01 ) LPos=( -242.31, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -242.31, -1477.01, 1529.88 ) LPos=( -242.31, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -239.44, -1480.08, 1525.01 ) LPos=( -239.44, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1480.08, 1525.01 ) LPos=( -227.94, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -208.56, -1480.08, 1525.01 ) LPos=( -208.56, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -205.69, -1480.08, 1525.01 ) LPos=( -205.69, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -177.69, -1465.16, 1548.70 ) LPos=( -177.69, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -186.31, -1465.16, 1548.70 ) LPos=( -186.31, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -192.06, -1475.48, 1532.31 ) LPos=( -192.06, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1473.95, 1534.74 ) LPos=( -189.19, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -164.06, -1459.03, 1558.43 ) LPos=( -164.06, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -136.06, -1473.95, 1534.74 ) LPos=( -136.06, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -87.94, -1455.96, 1563.30 ) LPos=( -87.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, -1460.56, 1556.00 ) LPos=( -90.81, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1460.56, 1556.00 ) LPos=( -96.56, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -99.44, -1463.62, 1551.14 ) LPos=( -99.44, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1469.35, 1542.04 ) LPos=( -87.94, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, -1472.42, 1537.17 ) LPos=( -99.44, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1473.95, 1534.74 ) LPos=( -102.31, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -108.06, -1478.54, 1527.44 ) LPos=( -108.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -96.56, -1478.54, 1527.44 ) LPos=( -96.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -90.81, -1480.08, 1525.01 ) LPos=( -90.81, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1460.56, 1556.00 ) LPos=( -71.44, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, -1459.03, 1558.43 ) LPos=( -71.44, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -71.44, -1454.43, 1565.73 ) LPos=( -71.44, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, -1472.42, 1537.17 ) LPos=( -80.06, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, -1469.35, 1542.04 ) LPos=( -77.19, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, -1469.35, 1542.04 ) LPos=( -74.31, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -37.69, -1465.16, 1548.70 ) LPos=( -37.69, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, -1465.16, 1548.70 ) LPos=( -40.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, -1470.88, 1539.61 ) LPos=( -24.06, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1477.01, 1529.88 ) LPos=( -18.31, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -15.44, -1480.08, 1525.01 ) LPos=( -15.44, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -12.56, -1480.08, 1525.01 ) LPos=( -12.56, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, -1472.42, 1537.17 ) LPos=( -12.56, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, -1459.03, 1558.43 ) LPos=( 21.19, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 6.81, -1457.50, 1560.87 ) LPos=( 6.81, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, -1469.35, 1542.04 ) LPos=( 21.19, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, -1472.42, 1537.17 ) LPos=( 12.56, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, -1478.54, 1527.44 ) LPos=( 12.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1480.08, 1525.01 ) LPos=( 3.94, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, -1459.03, 1558.43 ) LPos=( 59.94, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, -1475.48, 1532.31 ) LPos=( 71.44, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 80.06, -1478.54, 1527.44 ) LPos=( 80.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, -1480.08, 1525.01 ) LPos=( 68.56, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, -1463.62, 1551.14 ) LPos=( 99.44, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, -1463.62, 1551.14 ) LPos=( 96.56, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, -1462.09, 1553.57 ) LPos=( 105.19, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1462.09, 1553.57 ) LPos=( 102.31, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, -1460.56, 1556.00 ) LPos=( 108.06, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, -1460.56, 1556.00 ) LPos=( 105.19, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 108.06, -1459.03, 1558.43 ) LPos=( 108.06, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 108.06, -1457.50, 1560.87 ) LPos=( 108.06, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 96.56, -1470.88, 1539.61 ) LPos=( 96.56, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1477.01, 1529.88 ) LPos=( 102.31, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 102.31, -1469.35, 1542.04 ) LPos=( 102.31, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 133.19, -1454.43, 1565.73 ) LPos=( 133.19, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 130.31, -1454.43, 1565.73 ) LPos=( 130.31, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 127.44, -1462.09, 1553.57 ) LPos=( 127.44, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1465.16, 1548.70 ) LPos=( 124.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, -1470.88, 1539.61 ) LPos=( 118.81, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, -1472.42, 1537.17 ) LPos=( 127.44, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, -1465.16, 1548.70 ) LPos=( 149.69, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1455.96, 1563.30 ) LPos=( 143.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1478.54, 1527.44 ) LPos=( 155.44, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, -1470.88, 1539.61 ) LPos=( 155.44, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, -1475.48, 1532.31 ) LPos=( 158.31, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 220.06, -1460.56, 1556.00 ) LPos=( 220.06, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, -1455.96, 1563.30 ) LPos=( 211.44, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 220.06, -1477.01, 1529.88 ) LPos=( 220.06, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 245.19, -1459.03, 1558.43 ) LPos=( 245.19, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 242.31, -1454.43, 1565.73 ) LPos=( 242.31, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 242.31, -1463.62, 1551.14 ) LPos=( 242.31, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 242.31, -1465.16, 1548.70 ) LPos=( 242.31, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 230.81, -1462.09, 1553.57 ) LPos=( 230.81, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, -1460.56, 1556.00 ) LPos=( 227.94, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 236.56, -1470.88, 1539.61 ) LPos=( 236.56, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 242.31, -1470.88, 1539.61 ) LPos=( 242.31, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 242.31, -1478.54, 1527.44 ) LPos=( 242.31, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 248.06, -1478.54, 1527.44 ) LPos=( 248.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, -1459.03, 1558.43 ) LPos=( 264.56, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 264.56, -1455.96, 1563.30 ) LPos=( 264.56, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, -1457.50, 1560.87 ) LPos=( 304.06, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 286.81, -1463.62, 1551.14 ) LPos=( 286.81, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 329.19, -1454.43, 1565.73 ) LPos=( 329.19, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 398.81, -1462.09, 1553.57 ) LPos=( 398.81, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 469.19, -1465.16, 1548.70 ) LPos=( 469.19, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 454.81, -1480.08, 1525.01 ) LPos=( 454.81, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 479.94, -1459.03, 1558.43 ) LPos=( 479.94, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 488.56, -1469.35, 1542.04 ) LPos=( 488.56, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 528.06, -1462.09, 1553.57 ) LPos=( 528.06, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 535.94, -1475.48, 1532.31 ) LPos=( 535.94, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 563.94, -1478.54, 1527.44 ) LPos=( 563.94, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 578.31, -1480.08, 1525.01 ) LPos=( 578.31, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -609.19, -1439.24, 1589.85 ) LPos=( -609.19, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -594.81, -1439.24, 1589.85 ) LPos=( -594.81, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -541.69, -1435.05, 1596.51 ) LPos=( -541.69, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -544.56, -1433.52, 1598.95 ) LPos=( -544.56, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -550.31, -1439.24, 1589.85 ) LPos=( -550.31, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -541.69, -1439.24, 1589.85 ) LPos=( -541.69, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -525.19, -1446.90, 1577.69 ) LPos=( -525.19, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -500.06, -1428.92, 1606.24 ) LPos=( -500.06, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -497.19, -1443.84, 1582.55 ) LPos=( -497.19, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -491.44, -1448.44, 1575.25 ) LPos=( -491.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -485.69, -1448.44, 1575.25 ) LPos=( -485.69, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -466.31, -1435.05, 1596.51 ) LPos=( -466.31, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -451.94, -1433.52, 1598.95 ) LPos=( -451.94, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -466.31, -1431.98, 1601.38 ) LPos=( -466.31, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -472.06, -1430.45, 1603.81 ) LPos=( -472.06, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -463.44, -1427.39, 1608.68 ) LPos=( -463.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -469.19, -1424.32, 1613.54 ) LPos=( -469.19, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -451.94, -1443.84, 1582.55 ) LPos=( -451.94, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -432.56, -1425.86, 1611.11 ) LPos=( -432.56, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -435.44, -1427.39, 1608.68 ) LPos=( -435.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -438.31, -1428.92, 1606.24 ) LPos=( -438.31, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -444.06, -1431.98, 1601.38 ) LPos=( -444.06, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -435.44, -1440.78, 1587.42 ) LPos=( -435.44, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -441.19, -1445.37, 1580.12 ) LPos=( -441.19, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -413.19, -1448.44, 1575.25 ) LPos=( -413.19, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -410.31, -1448.44, 1575.25 ) LPos=( -410.31, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -407.44, -1448.44, 1575.25 ) LPos=( -407.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -398.81, -1445.37, 1580.12 ) LPos=( -398.81, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -354.31, -1448.44, 1575.25 ) LPos=( -354.31, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -354.31, -1446.90, 1577.69 ) LPos=( -354.31, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -317.69, -1435.05, 1596.51 ) LPos=( -317.69, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -323.44, -1430.45, 1603.81 ) LPos=( -323.44, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -329.19, -1428.92, 1606.24 ) LPos=( -329.19, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -329.19, -1430.45, 1603.81 ) LPos=( -329.19, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -329.19, -1435.05, 1596.51 ) LPos=( -329.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -317.69, -1440.78, 1587.42 ) LPos=( -317.69, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -329.19, -1446.90, 1577.69 ) LPos=( -329.19, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -332.06, -1448.44, 1575.25 ) LPos=( -332.06, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -326.31, -1449.97, 1572.82 ) LPos=( -326.31, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -264.56, -1428.92, 1606.24 ) LPos=( -264.56, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -267.44, -1427.39, 1608.68 ) LPos=( -267.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -270.31, -1435.05, 1596.51 ) LPos=( -270.31, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -273.19, -1435.05, 1596.51 ) LPos=( -273.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -276.06, -1431.98, 1601.38 ) LPos=( -276.06, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -276.06, -1439.24, 1589.85 ) LPos=( -276.06, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -264.56, -1439.24, 1589.85 ) LPos=( -264.56, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -270.31, -1440.78, 1587.42 ) LPos=( -270.31, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -267.44, -1440.78, 1587.42 ) LPos=( -267.44, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -273.19, -1442.31, 1584.98 ) LPos=( -273.19, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -270.31, -1445.37, 1580.12 ) LPos=( -270.31, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -261.69, -1446.90, 1577.69 ) LPos=( -261.69, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -276.06, -1448.44, 1575.25 ) LPos=( -276.06, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -273.19, -1449.97, 1572.82 ) LPos=( -273.19, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -270.31, -1449.97, 1572.82 ) LPos=( -270.31, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -258.81, -1449.97, 1572.82 ) LPos=( -258.81, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -248.06, -1435.05, 1596.51 ) LPos=( -248.06, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -248.06, -1433.52, 1598.95 ) LPos=( -248.06, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -239.44, -1427.39, 1608.68 ) LPos=( -239.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -248.06, -1445.37, 1580.12 ) LPos=( -248.06, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -171.94, -1427.39, 1608.68 ) LPos=( -171.94, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -174.81, -1425.86, 1611.11 ) LPos=( -174.81, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, -1424.32, 1613.54 ) LPos=( -174.81, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -164.06, -1443.84, 1582.55 ) LPos=( -164.06, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, -1445.37, 1580.12 ) LPos=( -164.06, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -164.06, -1448.44, 1575.25 ) LPos=( -164.06, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, -1424.32, 1613.54 ) LPos=( -133.19, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, -1424.32, 1613.54 ) LPos=( -87.94, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -87.94, -1431.98, 1601.38 ) LPos=( -87.94, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1435.05, 1596.51 ) LPos=( -87.94, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, -1431.98, 1601.38 ) LPos=( -90.81, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -93.69, -1424.32, 1613.54 ) LPos=( -93.69, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -93.69, -1427.39, 1608.68 ) LPos=( -93.69, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, -1428.92, 1606.24 ) LPos=( -96.56, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1430.45, 1603.81 ) LPos=( -96.56, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -96.56, -1435.05, 1596.51 ) LPos=( -96.56, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -99.44, -1427.39, 1608.68 ) LPos=( -99.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -102.31, -1425.86, 1611.11 ) LPos=( -102.31, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -77.19, -1435.05, 1596.51 ) LPos=( -77.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, -1433.52, 1598.95 ) LPos=( -74.31, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -71.44, -1449.97, 1572.82 ) LPos=( -71.44, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -71.44, -1448.44, 1575.25 ) LPos=( -71.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, -1442.31, 1584.98 ) LPos=( -71.44, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, -1449.97, 1572.82 ) LPos=( -68.56, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -65.69, -1439.24, 1589.85 ) LPos=( -65.69, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, -1443.84, 1582.55 ) LPos=( -59.94, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, -1440.78, 1587.42 ) LPos=( -59.94, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, -1431.98, 1601.38 ) LPos=( -40.56, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, -1428.92, 1606.24 ) LPos=( -46.31, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1431.98, 1601.38 ) LPos=( -46.31, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -49.19, -1433.52, 1598.95 ) LPos=( -49.19, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1435.05, 1596.51 ) LPos=( -49.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, -1439.24, 1589.85 ) LPos=( -49.19, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -52.06, -1440.78, 1587.42 ) LPos=( -52.06, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, -1443.84, 1582.55 ) LPos=( -43.44, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -40.56, -1443.84, 1582.55 ) LPos=( -40.56, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, -1443.84, 1582.55 ) LPos=( -37.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -40.56, -1445.37, 1580.12 ) LPos=( -40.56, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -52.06, -1446.90, 1577.69 ) LPos=( -52.06, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, -1445.37, 1580.12 ) LPos=( -24.06, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, -1443.84, 1582.55 ) LPos=( -9.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -6.81, -1445.37, 1580.12 ) LPos=( -6.81, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, -1439.24, 1589.85 ) LPos=( 21.19, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1442.31, 1584.98 ) LPos=( 6.81, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1431.98, 1601.38 ) LPos=( 37.69, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, -1427.39, 1608.68 ) LPos=( 43.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 31.94, -1442.31, 1584.98 ) LPos=( 31.94, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, -1448.44, 1575.25 ) LPos=( 43.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 52.06, -1446.90, 1577.69 ) LPos=( 52.06, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, -1443.84, 1582.55 ) LPos=( 52.06, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 52.06, -1440.78, 1587.42 ) LPos=( 52.06, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, -1425.86, 1611.11 ) LPos=( 65.69, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, -1427.39, 1608.68 ) LPos=( 65.69, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, -1424.32, 1613.54 ) LPos=( 59.94, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 65.69, -1440.78, 1587.42 ) LPos=( 65.69, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1442.31, 1584.98 ) LPos=( 74.31, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, -1442.31, 1584.98 ) LPos=( 77.19, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1442.31, 1584.98 ) LPos=( 80.06, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, -1443.84, 1582.55 ) LPos=( 65.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, -1425.86, 1611.11 ) LPos=( 108.06, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 99.44, -1442.31, 1584.98 ) LPos=( 99.44, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, -1442.31, 1584.98 ) LPos=( 108.06, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, -1433.52, 1598.95 ) LPos=( 130.31, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1435.05, 1596.51 ) LPos=( 124.56, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 121.69, -1433.52, 1598.95 ) LPos=( 121.69, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 121.69, -1435.05, 1596.51 ) LPos=( 121.69, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, -1435.05, 1596.51 ) LPos=( 118.81, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, -1428.92, 1606.24 ) LPos=( 115.94, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 127.44, -1446.90, 1577.69 ) LPos=( 127.44, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 130.31, -1449.97, 1572.82 ) LPos=( 130.31, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, -1424.32, 1613.54 ) LPos=( 164.06, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 146.81, -1449.97, 1572.82 ) LPos=( 146.81, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, -1449.97, 1572.82 ) LPos=( 152.56, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 152.56, -1448.44, 1575.25 ) LPos=( 152.56, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1448.44, 1575.25 ) LPos=( 155.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, -1435.05, 1596.51 ) LPos=( 192.06, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 186.31, -1430.45, 1603.81 ) LPos=( 186.31, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 180.56, -1427.39, 1608.68 ) LPos=( 180.56, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 180.56, -1431.98, 1601.38 ) LPos=( 180.56, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 180.56, -1433.52, 1598.95 ) LPos=( 180.56, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 171.94, -1430.45, 1603.81 ) LPos=( 171.94, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, -1439.24, 1589.85 ) LPos=( 171.94, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 189.19, -1442.31, 1584.98 ) LPos=( 189.19, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, -1443.84, 1582.55 ) LPos=( 177.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, -1443.84, 1582.55 ) LPos=( 183.44, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 189.19, -1443.84, 1582.55 ) LPos=( 189.19, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 171.94, -1445.37, 1580.12 ) LPos=( 171.94, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 183.44, -1445.37, 1580.12 ) LPos=( 183.44, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 171.94, -1448.44, 1575.25 ) LPos=( 171.94, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, -1448.44, 1575.25 ) LPos=( 174.81, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 183.44, -1448.44, 1575.25 ) LPos=( 183.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 202.81, -1433.52, 1598.95 ) LPos=( 202.81, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1443.84, 1582.55 ) LPos=( 202.81, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 208.56, -1445.37, 1580.12 ) LPos=( 208.56, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1449.97, 1572.82 ) LPos=( 220.06, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 236.56, -1424.32, 1613.54 ) LPos=( 236.56, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1439.24, 1589.85 ) LPos=( 248.06, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 258.81, -1424.32, 1613.54 ) LPos=( 258.81, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 255.94, -1446.90, 1577.69 ) LPos=( 255.94, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 255.94, -1445.37, 1580.12 ) LPos=( 255.94, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 258.81, -1446.90, 1577.69 ) LPos=( 258.81, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 258.81, -1445.37, 1580.12 ) LPos=( 258.81, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 258.81, -1440.78, 1587.42 ) LPos=( 258.81, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 261.69, -1445.37, 1580.12 ) LPos=( 261.69, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, -1443.84, 1582.55 ) LPos=( 261.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 270.31, -1445.37, 1580.12 ) LPos=( 270.31, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 360.06, -1439.24, 1589.85 ) LPos=( 360.06, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 351.44, -1443.84, 1582.55 ) LPos=( 351.44, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 401.69, -1440.78, 1587.42 ) LPos=( 401.69, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:095,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 466.31, -1439.24, 1589.85 ) LPos=( 466.31, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:095,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 612.06, -1446.90, 1577.69 ) LPos=( 612.06, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -535.94, -1409.14, 1637.66 ) LPos=( -535.94, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -544.56, -1412.20, 1632.79 ) LPos=( -544.56, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -510.81, -1397.28, 1656.49 ) LPos=( -510.81, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -519.44, -1418.33, 1623.06 ) LPos=( -519.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -507.94, -1419.86, 1620.63 ) LPos=( -507.94, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -482.81, -1394.22, 1661.35 ) LPos=( -482.81, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -491.44, -1400.34, 1651.62 ) LPos=( -491.44, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -491.44, -1403.41, 1646.76 ) LPos=( -491.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -491.44, -1410.67, 1635.23 ) LPos=( -491.44, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -479.94, -1412.20, 1632.79 ) LPos=( -479.94, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -482.81, -1415.27, 1627.93 ) LPos=( -482.81, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -423.94, -1403.41, 1646.76 ) LPos=( -423.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -435.44, -1397.28, 1656.49 ) LPos=( -435.44, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -438.31, -1394.22, 1661.35 ) LPos=( -438.31, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -426.81, -1415.27, 1627.93 ) LPos=( -426.81, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -438.31, -1416.80, 1625.50 ) LPos=( -438.31, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -426.81, -1416.80, 1625.50 ) LPos=( -426.81, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -435.44, -1419.86, 1620.63 ) LPos=( -435.44, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -432.56, -1419.86, 1620.63 ) LPos=( -432.56, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -426.81, -1419.86, 1620.63 ) LPos=( -426.81, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -398.81, -1404.94, 1644.32 ) LPos=( -398.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -401.69, -1404.94, 1644.32 ) LPos=( -401.69, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -407.44, -1404.94, 1644.32 ) LPos=( -407.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -410.31, -1404.94, 1644.32 ) LPos=( -410.31, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -398.81, -1403.41, 1646.76 ) LPos=( -398.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -407.44, -1398.81, 1654.05 ) LPos=( -407.44, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -401.69, -1395.75, 1658.92 ) LPos=( -401.69, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -413.19, -1409.14, 1637.66 ) LPos=( -413.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -410.31, -1409.14, 1637.66 ) LPos=( -410.31, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -407.44, -1415.27, 1627.93 ) LPos=( -407.44, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -370.81, -1395.75, 1658.92 ) LPos=( -370.81, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -388.06, -1400.34, 1651.62 ) LPos=( -388.06, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -382.31, -1409.14, 1637.66 ) LPos=( -382.31, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -388.06, -1412.20, 1632.79 ) LPos=( -388.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -382.31, -1418.33, 1623.06 ) LPos=( -382.31, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -342.81, -1403.41, 1646.76 ) LPos=( -342.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -348.56, -1401.88, 1649.19 ) LPos=( -348.56, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -345.69, -1400.34, 1651.62 ) LPos=( -345.69, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -339.94, -1398.81, 1654.05 ) LPos=( -339.94, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -354.31, -1410.67, 1635.23 ) LPos=( -354.31, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, -1404.94, 1644.32 ) LPos=( -311.94, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -314.81, -1404.94, 1644.32 ) LPos=( -314.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -320.56, -1403.41, 1646.76 ) LPos=( -320.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -326.31, -1398.81, 1654.05 ) LPos=( -326.31, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -326.31, -1401.88, 1649.19 ) LPos=( -326.31, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -329.19, -1397.28, 1656.49 ) LPos=( -329.19, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -329.19, -1403.41, 1646.76 ) LPos=( -329.19, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, -1394.22, 1661.35 ) LPos=( -332.06, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -332.06, -1400.34, 1651.62 ) LPos=( -332.06, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -314.81, -1409.14, 1637.66 ) LPos=( -314.81, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -323.44, -1415.27, 1627.93 ) LPos=( -323.44, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -311.94, -1416.80, 1625.50 ) LPos=( -311.94, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -323.44, -1418.33, 1623.06 ) LPos=( -323.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -283.94, -1404.94, 1644.32 ) LPos=( -283.94, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -292.56, -1404.94, 1644.32 ) LPos=( -292.56, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -295.44, -1404.94, 1644.32 ) LPos=( -295.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -301.19, -1394.22, 1661.35 ) LPos=( -301.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -304.06, -1394.22, 1661.35 ) LPos=( -304.06, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -304.06, -1409.14, 1637.66 ) LPos=( -304.06, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -301.19, -1409.14, 1637.66 ) LPos=( -301.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -292.56, -1413.73, 1630.36 ) LPos=( -292.56, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -289.69, -1416.80, 1625.50 ) LPos=( -289.69, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -255.94, -1398.81, 1654.05 ) LPos=( -255.94, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -255.94, -1400.34, 1651.62 ) LPos=( -255.94, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -261.69, -1400.34, 1651.62 ) LPos=( -261.69, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -242.31, -1400.34, 1651.62 ) LPos=( -242.31, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -245.19, -1400.34, 1651.62 ) LPos=( -245.19, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -248.06, -1400.34, 1651.62 ) LPos=( -248.06, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -239.44, -1418.33, 1623.06 ) LPos=( -239.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -227.94, -1409.14, 1637.66 ) LPos=( -227.94, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -199.94, -1403.41, 1646.76 ) LPos=( -199.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -202.81, -1400.34, 1651.62 ) LPos=( -202.81, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -202.81, -1401.88, 1649.19 ) LPos=( -202.81, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -202.81, -1404.94, 1644.32 ) LPos=( -202.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, -1404.94, 1644.32 ) LPos=( -205.69, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1403.41, 1646.76 ) LPos=( -214.31, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -217.19, -1403.41, 1646.76 ) LPos=( -217.19, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -211.44, -1409.14, 1637.66 ) LPos=( -211.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -208.56, -1409.14, 1637.66 ) LPos=( -208.56, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, -1410.67, 1635.23 ) LPos=( -214.31, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -208.56, -1410.67, 1635.23 ) LPos=( -208.56, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -214.31, -1412.20, 1632.79 ) LPos=( -214.31, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -174.81, -1403.41, 1646.76 ) LPos=( -174.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -180.56, -1403.41, 1646.76 ) LPos=( -180.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -183.44, -1403.41, 1646.76 ) LPos=( -183.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -180.56, -1401.88, 1649.19 ) LPos=( -180.56, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1401.88, 1649.19 ) LPos=( -183.44, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -189.19, -1401.88, 1649.19 ) LPos=( -189.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -186.31, -1398.81, 1654.05 ) LPos=( -186.31, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -177.69, -1394.22, 1661.35 ) LPos=( -177.69, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -192.06, -1412.20, 1632.79 ) LPos=( -192.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -189.19, -1415.27, 1627.93 ) LPos=( -189.19, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, -1413.73, 1630.36 ) LPos=( -186.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -183.44, -1418.33, 1623.06 ) LPos=( -183.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -183.44, -1416.80, 1625.50 ) LPos=( -183.44, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -146.81, -1398.81, 1654.05 ) LPos=( -146.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -152.56, -1401.88, 1649.19 ) LPos=( -152.56, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, -1403.41, 1646.76 ) LPos=( -152.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, -1401.88, 1649.19 ) LPos=( -155.44, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -155.44, -1403.41, 1646.76 ) LPos=( -155.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, -1401.88, 1649.19 ) LPos=( -161.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -164.06, -1401.88, 1649.19 ) LPos=( -164.06, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -164.06, -1403.41, 1646.76 ) LPos=( -164.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, -1412.20, 1632.79 ) LPos=( -127.44, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, -1409.14, 1637.66 ) LPos=( -118.81, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -99.44, -1403.41, 1646.76 ) LPos=( -99.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1397.28, 1656.49 ) LPos=( -102.31, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, -1400.34, 1651.62 ) LPos=( -105.19, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, -1403.41, 1646.76 ) LPos=( -108.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, -1409.14, 1637.66 ) LPos=( -102.31, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -93.69, -1409.14, 1637.66 ) LPos=( -93.69, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -108.06, -1412.20, 1632.79 ) LPos=( -108.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -105.19, -1412.20, 1632.79 ) LPos=( -105.19, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -105.19, -1413.73, 1630.36 ) LPos=( -105.19, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1413.73, 1630.36 ) LPos=( -102.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -99.44, -1413.73, 1630.36 ) LPos=( -99.44, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -108.06, -1415.27, 1627.93 ) LPos=( -108.06, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, -1416.80, 1625.50 ) LPos=( -108.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1416.80, 1625.50 ) LPos=( -102.31, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, -1401.88, 1649.19 ) LPos=( -65.69, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, -1400.34, 1651.62 ) LPos=( -68.56, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, -1398.81, 1654.05 ) LPos=( -62.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, -1398.81, 1654.05 ) LPos=( -71.44, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, -1397.28, 1656.49 ) LPos=( -62.81, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, -1397.28, 1656.49 ) LPos=( -65.69, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -74.31, -1397.28, 1656.49 ) LPos=( -74.31, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -68.56, -1395.75, 1658.92 ) LPos=( -68.56, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1394.22, 1661.35 ) LPos=( -77.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -80.06, -1415.27, 1627.93 ) LPos=( -80.06, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -74.31, -1415.27, 1627.93 ) LPos=( -74.31, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1413.73, 1630.36 ) LPos=( -71.44, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -31.94, -1403.41, 1646.76 ) LPos=( -31.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -34.81, -1397.28, 1656.49 ) LPos=( -34.81, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, -1404.94, 1644.32 ) LPos=( -43.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, -1404.94, 1644.32 ) LPos=( -46.31, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, -1401.88, 1649.19 ) LPos=( -49.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1404.94, 1644.32 ) LPos=( -49.19, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, -1401.88, 1649.19 ) LPos=( -52.06, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1413.73, 1630.36 ) LPos=( -49.19, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -46.31, -1413.73, 1630.36 ) LPos=( -46.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -40.56, -1413.73, 1630.36 ) LPos=( -40.56, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, -1415.27, 1627.93 ) LPos=( -37.69, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -34.81, -1418.33, 1623.06 ) LPos=( -34.81, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, -1419.86, 1620.63 ) LPos=( -46.31, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, -1419.86, 1620.63 ) LPos=( -43.44, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, -1419.86, 1620.63 ) LPos=( -34.81, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, -1394.22, 1661.35 ) LPos=( -21.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -24.06, -1418.33, 1623.06 ) LPos=( -24.06, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, -1410.67, 1635.23 ) LPos=( -24.06, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1409.14, 1637.66 ) LPos=( -21.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -15.44, -1419.86, 1620.63 ) LPos=( -15.44, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1409.14, 1637.66 ) LPos=( -15.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1419.86, 1620.63 ) LPos=( -9.69, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, -1416.80, 1625.50 ) LPos=( -3.94, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, -1413.73, 1630.36 ) LPos=( -3.94, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, -1401.88, 1649.19 ) LPos=( 24.06, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, -1404.94, 1644.32 ) LPos=( 15.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, -1404.94, 1644.32 ) LPos=( 12.56, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, -1401.88, 1649.19 ) LPos=( 9.69, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 15.44, -1409.14, 1637.66 ) LPos=( 15.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, -1410.67, 1635.23 ) LPos=( 9.69, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, -1412.20, 1632.79 ) LPos=( 18.31, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 18.31, -1413.73, 1630.36 ) LPos=( 18.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 9.69, -1415.27, 1627.93 ) LPos=( 9.69, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, -1404.94, 1644.32 ) LPos=( 40.56, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, -1404.94, 1644.32 ) LPos=( 31.94, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 52.06, -1403.41, 1646.76 ) LPos=( 52.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, -1403.41, 1646.76 ) LPos=( 49.19, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 31.94, -1403.41, 1646.76 ) LPos=( 31.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, -1401.88, 1649.19 ) LPos=( 43.44, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 37.69, -1400.34, 1651.62 ) LPos=( 37.69, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, -1400.34, 1651.62 ) LPos=( 34.81, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1400.34, 1651.62 ) LPos=( 31.94, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 49.19, -1394.22, 1661.35 ) LPos=( 49.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 43.44, -1394.22, 1661.35 ) LPos=( 43.44, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 31.94, -1394.22, 1661.35 ) LPos=( 31.94, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, -1409.14, 1637.66 ) LPos=( 34.81, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 37.69, -1416.80, 1625.50 ) LPos=( 37.69, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 37.69, -1413.73, 1630.36 ) LPos=( 37.69, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 40.56, -1419.86, 1620.63 ) LPos=( 40.56, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 40.56, -1415.27, 1627.93 ) LPos=( 40.56, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, -1418.33, 1623.06 ) LPos=( 43.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1415.27, 1627.93 ) LPos=( 43.44, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, -1412.20, 1632.79 ) LPos=( 52.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, -1398.81, 1654.05 ) LPos=( 68.56, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 68.56, -1403.41, 1646.76 ) LPos=( 68.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, -1398.81, 1654.05 ) LPos=( 62.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, -1403.41, 1646.76 ) LPos=( 62.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, -1394.22, 1661.35 ) LPos=( 59.94, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 59.94, -1395.75, 1658.92 ) LPos=( 59.94, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, -1397.28, 1656.49 ) LPos=( 59.94, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1401.88, 1649.19 ) LPos=( 59.94, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 77.19, -1409.14, 1637.66 ) LPos=( 77.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, -1410.67, 1635.23 ) LPos=( 77.19, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1412.20, 1632.79 ) LPos=( 74.31, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 59.94, -1415.27, 1627.93 ) LPos=( 59.94, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 80.06, -1416.80, 1625.50 ) LPos=( 80.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, -1418.33, 1623.06 ) LPos=( 65.69, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 77.19, -1419.86, 1620.63 ) LPos=( 77.19, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1403.41, 1646.76 ) LPos=( 90.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 90.81, -1398.81, 1654.05 ) LPos=( 90.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 90.81, -1412.20, 1632.79 ) LPos=( 90.81, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, -1412.20, 1632.79 ) LPos=( 93.69, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, -1418.33, 1623.06 ) LPos=( 99.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, -1394.22, 1661.35 ) LPos=( 121.69, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1416.80, 1625.50 ) LPos=( 115.94, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 146.81, -1404.94, 1644.32 ) LPos=( 146.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, -1395.75, 1658.92 ) LPos=( 183.44, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1404.94, 1644.32 ) LPos=( 217.19, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 214.31, -1404.94, 1644.32 ) LPos=( 214.31, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 205.69, -1416.80, 1625.50 ) LPos=( 205.69, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, -1412.20, 1632.79 ) LPos=( 220.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, -1410.67, 1635.23 ) LPos=( 227.94, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 230.81, -1410.67, 1635.23 ) LPos=( 230.81, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 236.56, -1416.80, 1625.50 ) LPos=( 236.56, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 248.06, -1416.80, 1625.50 ) LPos=( 248.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 276.06, -1403.41, 1646.76 ) LPos=( 276.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 301.19, -1401.88, 1649.19 ) LPos=( 301.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, -1419.86, 1620.63 ) LPos=( 283.94, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 286.81, -1419.86, 1620.63 ) LPos=( 286.81, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 314.81, -1416.80, 1625.50 ) LPos=( 314.81, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 317.69, -1415.27, 1627.93 ) LPos=( 317.69, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 320.56, -1418.33, 1623.06 ) LPos=( 320.56, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1419.86, 1620.63 ) LPos=( 332.06, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 332.06, -1416.80, 1625.50 ) LPos=( 332.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 351.44, -1404.94, 1644.32 ) LPos=( 351.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 339.94, -1409.14, 1637.66 ) LPos=( 339.94, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 348.56, -1410.67, 1635.23 ) LPos=( 348.56, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 360.06, -1410.67, 1635.23 ) LPos=( 360.06, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 357.19, -1412.20, 1632.79 ) LPos=( 357.19, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 348.56, -1415.27, 1627.93 ) LPos=( 348.56, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 348.56, -1416.80, 1625.50 ) LPos=( 348.56, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1418.33, 1623.06 ) LPos=( 342.81, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 376.56, -1409.14, 1637.66 ) LPos=( 376.56, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 379.44, -1409.14, 1637.66 ) LPos=( 379.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 407.44, -1404.94, 1644.32 ) LPos=( 407.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 426.81, -1394.22, 1661.35 ) LPos=( 426.81, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:101,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 451.94, -1401.88, 1649.19 ) LPos=( 451.94, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:101,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 457.69, -1418.33, 1623.06 ) LPos=( 457.69, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:101,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 566.81, -1415.27, 1627.93 ) LPos=( 566.81, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -591.94, -1368.70, 1701.86 ) LPos=( -591.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -600.56, -1374.83, 1692.13 ) LPos=( -600.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -584.06, -1373.30, 1694.57 ) LPos=( -584.06, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -538.81, -1374.83, 1692.13 ) LPos=( -538.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -513.69, -1367.17, 1704.30 ) LPos=( -513.69, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -513.69, -1364.11, 1709.16 ) LPos=( -513.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -485.69, -1371.77, 1697.00 ) LPos=( -485.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -460.56, -1373.30, 1694.57 ) LPos=( -460.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -463.44, -1367.17, 1704.30 ) LPos=( -463.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -463.44, -1385.16, 1675.74 ) LPos=( -463.44, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -460.56, -1380.56, 1683.04 ) LPos=( -460.56, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -457.69, -1382.09, 1680.60 ) LPos=( -457.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -454.81, -1383.63, 1678.17 ) LPos=( -454.81, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -454.81, -1382.09, 1680.60 ) LPos=( -454.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -451.94, -1385.16, 1675.74 ) LPos=( -451.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -429.69, -1364.11, 1709.16 ) LPos=( -429.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -444.06, -1379.03, 1685.47 ) LPos=( -444.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -401.69, -1365.64, 1706.73 ) LPos=( -401.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -404.56, -1364.11, 1709.16 ) LPos=( -404.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -416.06, -1383.63, 1678.17 ) LPos=( -416.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -401.69, -1386.69, 1673.31 ) LPos=( -401.69, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -395.94, -1383.63, 1678.17 ) LPos=( -395.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -379.44, -1365.64, 1706.73 ) LPos=( -379.44, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -388.06, -1367.17, 1704.30 ) LPos=( -388.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -382.31, -1379.03, 1685.47 ) LPos=( -382.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -373.69, -1379.03, 1685.47 ) LPos=( -373.69, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -370.81, -1379.03, 1685.47 ) LPos=( -370.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -376.56, -1380.56, 1683.04 ) LPos=( -376.56, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -373.69, -1380.56, 1683.04 ) LPos=( -373.69, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -367.94, -1380.56, 1683.04 ) LPos=( -367.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -373.69, -1382.09, 1680.60 ) LPos=( -373.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -367.94, -1383.63, 1678.17 ) LPos=( -367.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -360.06, -1386.69, 1673.31 ) LPos=( -360.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -357.19, -1386.69, 1673.31 ) LPos=( -357.19, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -357.19, -1383.63, 1678.17 ) LPos=( -357.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -311.94, -1364.11, 1709.16 ) LPos=( -311.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -311.94, -1365.64, 1706.73 ) LPos=( -311.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, -1374.83, 1692.13 ) LPos=( -311.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, -1379.03, 1685.47 ) LPos=( -311.94, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -320.56, -1383.63, 1678.17 ) LPos=( -320.56, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -320.56, -1388.22, 1670.87 ) LPos=( -320.56, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -286.81, -1388.22, 1670.87 ) LPos=( -286.81, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, -1379.03, 1685.47 ) LPos=( -258.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -233.69, -1365.64, 1706.73 ) LPos=( -233.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1364.11, 1709.16 ) LPos=( -227.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -230.81, -1364.11, 1709.16 ) LPos=( -230.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, -1364.11, 1709.16 ) LPos=( -236.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -248.06, -1386.69, 1673.31 ) LPos=( -248.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, -1385.16, 1675.74 ) LPos=( -227.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -199.94, -1365.64, 1706.73 ) LPos=( -199.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -202.81, -1364.11, 1709.16 ) LPos=( -202.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -205.69, -1365.64, 1706.73 ) LPos=( -205.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -205.69, -1367.17, 1704.30 ) LPos=( -205.69, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -208.56, -1370.24, 1699.43 ) LPos=( -208.56, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -208.56, -1373.30, 1694.57 ) LPos=( -208.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -211.44, -1374.83, 1692.13 ) LPos=( -211.44, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1373.30, 1694.57 ) LPos=( -214.31, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -220.06, -1368.70, 1701.86 ) LPos=( -220.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -211.44, -1389.75, 1668.44 ) LPos=( -211.44, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -171.94, -1364.11, 1709.16 ) LPos=( -171.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, -1364.11, 1709.16 ) LPos=( -174.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -186.31, -1364.11, 1709.16 ) LPos=( -186.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, -1380.56, 1683.04 ) LPos=( -186.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -186.31, -1379.03, 1685.47 ) LPos=( -186.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -183.44, -1379.03, 1685.47 ) LPos=( -183.44, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -180.56, -1382.09, 1680.60 ) LPos=( -180.56, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -177.69, -1379.03, 1685.47 ) LPos=( -177.69, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -174.81, -1379.03, 1685.47 ) LPos=( -174.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, -1382.09, 1680.60 ) LPos=( -171.94, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -171.94, -1380.56, 1683.04 ) LPos=( -171.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, -1371.77, 1697.00 ) LPos=( -155.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, -1371.77, 1697.00 ) LPos=( -161.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, -1380.56, 1683.04 ) LPos=( -164.06, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, -1380.56, 1683.04 ) LPos=( -158.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -155.44, -1380.56, 1683.04 ) LPos=( -155.44, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -143.94, -1380.56, 1683.04 ) LPos=( -143.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -161.19, -1382.09, 1680.60 ) LPos=( -161.19, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, -1382.09, 1680.60 ) LPos=( -158.31, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, -1383.63, 1678.17 ) LPos=( -155.44, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -146.81, -1385.16, 1675.74 ) LPos=( -146.81, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, -1385.16, 1675.74 ) LPos=( -143.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -146.81, -1389.75, 1668.44 ) LPos=( -146.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -115.94, -1374.83, 1692.13 ) LPos=( -115.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, -1373.30, 1694.57 ) LPos=( -118.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, -1371.77, 1697.00 ) LPos=( -121.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -118.81, -1370.24, 1699.43 ) LPos=( -118.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, -1368.70, 1701.86 ) LPos=( -127.44, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, -1368.70, 1701.86 ) LPos=( -130.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -124.56, -1365.64, 1706.73 ) LPos=( -124.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, -1365.64, 1706.73 ) LPos=( -133.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, -1364.11, 1709.16 ) LPos=( -124.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, -1364.11, 1709.16 ) LPos=( -136.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, -1379.03, 1685.47 ) LPos=( -136.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1380.56, 1683.04 ) LPos=( -133.19, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, -1379.03, 1685.47 ) LPos=( -133.19, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -130.31, -1379.03, 1685.47 ) LPos=( -130.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, -1379.03, 1685.47 ) LPos=( -127.44, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -124.56, -1379.03, 1685.47 ) LPos=( -124.56, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -121.69, -1385.16, 1675.74 ) LPos=( -121.69, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, -1389.75, 1668.44 ) LPos=( -118.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, -1385.16, 1675.74 ) LPos=( -115.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, -1364.11, 1709.16 ) LPos=( -87.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, -1368.70, 1701.86 ) LPos=( -87.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -87.94, -1373.30, 1694.57 ) LPos=( -87.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, -1367.17, 1704.30 ) LPos=( -90.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -90.81, -1368.70, 1701.86 ) LPos=( -90.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, -1371.77, 1697.00 ) LPos=( -90.81, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, -1373.30, 1694.57 ) LPos=( -90.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, -1374.83, 1692.13 ) LPos=( -90.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -93.69, -1370.24, 1699.43 ) LPos=( -93.69, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1371.77, 1697.00 ) LPos=( -93.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, -1373.30, 1694.57 ) LPos=( -93.69, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, -1374.83, 1692.13 ) LPos=( -93.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -96.56, -1364.11, 1709.16 ) LPos=( -96.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, -1365.64, 1706.73 ) LPos=( -96.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -96.56, -1367.17, 1704.30 ) LPos=( -96.56, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -99.44, -1365.64, 1706.73 ) LPos=( -99.44, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -99.44, -1370.24, 1699.43 ) LPos=( -99.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -102.31, -1365.64, 1706.73 ) LPos=( -102.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, -1368.70, 1701.86 ) LPos=( -102.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -102.31, -1370.24, 1699.43 ) LPos=( -102.31, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, -1371.77, 1697.00 ) LPos=( -102.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, -1370.24, 1699.43 ) LPos=( -105.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1371.77, 1697.00 ) LPos=( -105.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, -1371.77, 1697.00 ) LPos=( -108.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, -1373.30, 1694.57 ) LPos=( -108.06, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -108.06, -1374.83, 1692.13 ) LPos=( -108.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, -1379.03, 1685.47 ) LPos=( -102.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, -1379.03, 1685.47 ) LPos=( -99.44, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -93.69, -1379.03, 1685.47 ) LPos=( -93.69, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, -1379.03, 1685.47 ) LPos=( -90.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -99.44, -1380.56, 1683.04 ) LPos=( -99.44, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, -1380.56, 1683.04 ) LPos=( -93.69, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -90.81, -1382.09, 1680.60 ) LPos=( -90.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1383.63, 1678.17 ) LPos=( -102.31, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -99.44, -1383.63, 1678.17 ) LPos=( -99.44, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1383.63, 1678.17 ) LPos=( -96.56, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, -1383.63, 1678.17 ) LPos=( -93.69, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -87.94, -1383.63, 1678.17 ) LPos=( -87.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -105.19, -1385.16, 1675.74 ) LPos=( -105.19, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, -1385.16, 1675.74 ) LPos=( -93.69, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, -1386.69, 1673.31 ) LPos=( -108.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1386.69, 1673.31 ) LPos=( -102.31, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, -1388.22, 1670.87 ) LPos=( -105.19, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -99.44, -1388.22, 1670.87 ) LPos=( -99.44, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, -1389.75, 1668.44 ) LPos=( -102.31, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, -1374.83, 1692.13 ) LPos=( -59.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1374.83, 1692.13 ) LPos=( -62.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, -1374.83, 1692.13 ) LPos=( -68.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, -1374.83, 1692.13 ) LPos=( -71.44, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, -1374.83, 1692.13 ) LPos=( -74.31, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1374.83, 1692.13 ) LPos=( -80.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -65.69, -1373.30, 1694.57 ) LPos=( -65.69, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, -1373.30, 1694.57 ) LPos=( -71.44, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, -1371.77, 1697.00 ) LPos=( -65.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -68.56, -1371.77, 1697.00 ) LPos=( -68.56, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1371.77, 1697.00 ) LPos=( -74.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -77.19, -1371.77, 1697.00 ) LPos=( -77.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, -1371.77, 1697.00 ) LPos=( -80.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, -1370.24, 1699.43 ) LPos=( -80.06, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, -1368.70, 1701.86 ) LPos=( -65.69, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -74.31, -1368.70, 1701.86 ) LPos=( -74.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1368.70, 1701.86 ) LPos=( -80.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, -1367.17, 1704.30 ) LPos=( -59.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, -1367.17, 1704.30 ) LPos=( -62.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -77.19, -1367.17, 1704.30 ) LPos=( -77.19, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -59.94, -1365.64, 1706.73 ) LPos=( -59.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, -1364.11, 1709.16 ) LPos=( -62.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1364.11, 1709.16 ) LPos=( -77.19, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, -1389.75, 1668.44 ) LPos=( -80.06, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1388.22, 1670.87 ) LPos=( -80.06, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -80.06, -1386.69, 1673.31 ) LPos=( -80.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, -1382.09, 1680.60 ) LPos=( -80.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1379.03, 1685.47 ) LPos=( -80.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -77.19, -1389.75, 1668.44 ) LPos=( -77.19, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -77.19, -1383.63, 1678.17 ) LPos=( -77.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, -1382.09, 1680.60 ) LPos=( -77.19, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -74.31, -1389.75, 1668.44 ) LPos=( -74.31, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1383.63, 1678.17 ) LPos=( -71.44, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, -1388.22, 1670.87 ) LPos=( -65.69, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, -1382.09, 1680.60 ) LPos=( -65.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, -1388.22, 1670.87 ) LPos=( -62.81, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, -1383.63, 1678.17 ) LPos=( -62.81, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, -1383.63, 1678.17 ) LPos=( -59.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, -1380.56, 1683.04 ) LPos=( -59.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -31.94, -1370.24, 1699.43 ) LPos=( -31.94, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, -1371.77, 1697.00 ) LPos=( -31.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, -1364.11, 1709.16 ) LPos=( -34.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -34.81, -1367.17, 1704.30 ) LPos=( -34.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, -1374.83, 1692.13 ) LPos=( -34.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1364.11, 1709.16 ) LPos=( -37.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1371.77, 1697.00 ) LPos=( -37.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, -1373.30, 1694.57 ) LPos=( -40.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, -1374.83, 1692.13 ) LPos=( -40.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, -1367.17, 1704.30 ) LPos=( -43.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, -1370.24, 1699.43 ) LPos=( -43.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, -1371.77, 1697.00 ) LPos=( -43.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -46.31, -1365.64, 1706.73 ) LPos=( -46.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, -1367.17, 1704.30 ) LPos=( -46.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -46.31, -1370.24, 1699.43 ) LPos=( -46.31, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1371.77, 1697.00 ) LPos=( -46.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1365.64, 1706.73 ) LPos=( -49.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, -1367.17, 1704.30 ) LPos=( -49.19, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, -1371.77, 1697.00 ) LPos=( -49.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1374.83, 1692.13 ) LPos=( -49.19, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, -1364.11, 1709.16 ) LPos=( -52.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, -1365.64, 1706.73 ) LPos=( -52.06, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -52.06, -1373.30, 1694.57 ) LPos=( -52.06, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1374.83, 1692.13 ) LPos=( -52.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, -1380.56, 1683.04 ) LPos=( -37.69, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1380.56, 1683.04 ) LPos=( -34.81, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, -1382.09, 1680.60 ) LPos=( -49.19, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, -1382.09, 1680.60 ) LPos=( -43.44, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, -1382.09, 1680.60 ) LPos=( -34.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -31.94, -1382.09, 1680.60 ) LPos=( -31.94, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1383.63, 1678.17 ) LPos=( -49.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, -1388.22, 1670.87 ) LPos=( -31.94, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, -1374.83, 1692.13 ) LPos=( -9.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, -1373.30, 1694.57 ) LPos=( -6.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, -1373.30, 1694.57 ) LPos=( -9.69, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1373.30, 1694.57 ) LPos=( -21.19, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, -1371.77, 1697.00 ) LPos=( -15.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, -1371.77, 1697.00 ) LPos=( -18.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -21.19, -1371.77, 1697.00 ) LPos=( -21.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, -1371.77, 1697.00 ) LPos=( -24.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -6.81, -1370.24, 1699.43 ) LPos=( -6.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, -1368.70, 1701.86 ) LPos=( -6.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, -1368.70, 1701.86 ) LPos=( -9.69, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1368.70, 1701.86 ) LPos=( -12.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3.94, -1367.17, 1704.30 ) LPos=( -3.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -18.31, -1367.17, 1704.30 ) LPos=( -18.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3.94, -1365.64, 1706.73 ) LPos=( -3.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, -1365.64, 1706.73 ) LPos=( -12.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -18.31, -1365.64, 1706.73 ) LPos=( -18.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -12.56, -1364.11, 1709.16 ) LPos=( -12.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, -1382.09, 1680.60 ) LPos=( -24.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1379.03, 1685.47 ) LPos=( -21.19, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, -1380.56, 1683.04 ) LPos=( -15.44, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -12.56, -1380.56, 1683.04 ) LPos=( -12.56, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -6.81, -1389.75, 1668.44 ) LPos=( -6.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, -1367.17, 1704.30 ) LPos=( 24.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, -1374.83, 1692.13 ) LPos=( 24.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, -1365.64, 1706.73 ) LPos=( 21.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 21.19, -1370.24, 1699.43 ) LPos=( 21.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, -1364.11, 1709.16 ) LPos=( 18.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1368.70, 1701.86 ) LPos=( 12.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, -1364.11, 1709.16 ) LPos=( 6.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, -1370.24, 1699.43 ) LPos=( 6.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 6.81, -1371.77, 1697.00 ) LPos=( 6.81, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 6.81, -1373.30, 1694.57 ) LPos=( 6.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1364.11, 1709.16 ) LPos=( 3.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, -1379.03, 1685.47 ) LPos=( 3.94, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, -1379.03, 1685.47 ) LPos=( 18.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, -1380.56, 1683.04 ) LPos=( 6.81, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, -1382.09, 1680.60 ) LPos=( 3.94, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 9.69, -1382.09, 1680.60 ) LPos=( 9.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, -1383.63, 1678.17 ) LPos=( 24.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, -1374.83, 1692.13 ) LPos=( 49.19, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, -1374.83, 1692.13 ) LPos=( 37.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, -1373.30, 1694.57 ) LPos=( 43.44, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 31.94, -1373.30, 1694.57 ) LPos=( 31.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, -1371.77, 1697.00 ) LPos=( 46.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1370.24, 1699.43 ) LPos=( 31.94, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, -1368.70, 1701.86 ) LPos=( 52.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, -1368.70, 1701.86 ) LPos=( 46.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 34.81, -1368.70, 1701.86 ) LPos=( 34.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, -1367.17, 1704.30 ) LPos=( 46.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, -1367.17, 1704.30 ) LPos=( 31.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, -1365.64, 1706.73 ) LPos=( 49.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 46.31, -1365.64, 1706.73 ) LPos=( 46.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, -1365.64, 1706.73 ) LPos=( 40.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 46.31, -1388.22, 1670.87 ) LPos=( 46.31, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, -1383.63, 1678.17 ) LPos=( 52.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, -1382.09, 1680.60 ) LPos=( 52.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, -1365.64, 1706.73 ) LPos=( 80.06, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 80.06, -1370.24, 1699.43 ) LPos=( 80.06, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1374.83, 1692.13 ) LPos=( 80.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, -1370.24, 1699.43 ) LPos=( 77.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1371.77, 1697.00 ) LPos=( 77.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, -1367.17, 1704.30 ) LPos=( 74.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, -1364.11, 1709.16 ) LPos=( 71.44, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, -1370.24, 1699.43 ) LPos=( 71.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, -1367.17, 1704.30 ) LPos=( 68.56, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 68.56, -1373.30, 1694.57 ) LPos=( 68.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 65.69, -1370.24, 1699.43 ) LPos=( 65.69, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, -1374.83, 1692.13 ) LPos=( 65.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, -1364.11, 1709.16 ) LPos=( 62.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 59.94, -1365.64, 1706.73 ) LPos=( 59.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, -1367.17, 1704.30 ) LPos=( 59.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, -1368.70, 1701.86 ) LPos=( 59.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, -1379.03, 1685.47 ) LPos=( 62.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1379.03, 1685.47 ) LPos=( 80.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 74.31, -1380.56, 1683.04 ) LPos=( 74.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1383.63, 1678.17 ) LPos=( 80.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 80.06, -1385.16, 1675.74 ) LPos=( 80.06, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, -1386.69, 1673.31 ) LPos=( 71.44, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, -1386.69, 1673.31 ) LPos=( 74.31, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, -1386.69, 1673.31 ) LPos=( 77.19, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, -1388.22, 1670.87 ) LPos=( 65.69, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, -1389.75, 1668.44 ) LPos=( 62.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, -1389.75, 1668.44 ) LPos=( 65.69, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, -1389.75, 1668.44 ) LPos=( 68.56, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 99.44, -1374.83, 1692.13 ) LPos=( 99.44, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, -1373.30, 1694.57 ) LPos=( 87.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 108.06, -1371.77, 1697.00 ) LPos=( 108.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, -1371.77, 1697.00 ) LPos=( 105.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1371.77, 1697.00 ) LPos=( 102.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 105.19, -1368.70, 1701.86 ) LPos=( 105.19, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 105.19, -1365.64, 1706.73 ) LPos=( 105.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, -1365.64, 1706.73 ) LPos=( 93.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1365.64, 1706.73 ) LPos=( 90.81, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 87.94, -1365.64, 1706.73 ) LPos=( 87.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, -1380.56, 1683.04 ) LPos=( 87.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, -1389.75, 1668.44 ) LPos=( 99.44, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 102.31, -1388.22, 1670.87 ) LPos=( 102.31, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1386.69, 1673.31 ) LPos=( 102.31, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, -1383.63, 1678.17 ) LPos=( 102.31, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, -1383.63, 1678.17 ) LPos=( 105.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 105.19, -1380.56, 1683.04 ) LPos=( 105.19, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1379.03, 1685.47 ) LPos=( 105.19, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, -1382.09, 1680.60 ) LPos=( 108.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 136.06, -1367.17, 1704.30 ) LPos=( 136.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 124.56, -1371.77, 1697.00 ) LPos=( 124.56, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 118.81, -1382.09, 1680.60 ) LPos=( 118.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, -1382.09, 1680.60 ) LPos=( 121.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1382.09, 1680.60 ) LPos=( 130.31, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 121.69, -1386.69, 1673.31 ) LPos=( 121.69, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, -1374.83, 1692.13 ) LPos=( 143.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1370.24, 1699.43 ) LPos=( 161.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 158.31, -1370.24, 1699.43 ) LPos=( 158.31, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1370.24, 1699.43 ) LPos=( 152.56, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 146.81, -1370.24, 1699.43 ) LPos=( 146.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 152.56, -1368.70, 1701.86 ) LPos=( 152.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1365.64, 1706.73 ) LPos=( 143.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 164.06, -1380.56, 1683.04 ) LPos=( 164.06, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, -1374.83, 1692.13 ) LPos=( 192.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 180.56, -1365.64, 1706.73 ) LPos=( 180.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, -1371.77, 1697.00 ) LPos=( 171.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, -1379.03, 1685.47 ) LPos=( 171.94, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 183.44, -1382.09, 1680.60 ) LPos=( 183.44, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 171.94, -1383.63, 1678.17 ) LPos=( 171.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, -1389.75, 1668.44 ) LPos=( 177.69, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 220.06, -1371.77, 1697.00 ) LPos=( 220.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 214.31, -1371.77, 1697.00 ) LPos=( 214.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 199.94, -1371.77, 1697.00 ) LPos=( 199.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 217.19, -1368.70, 1701.86 ) LPos=( 217.19, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, -1368.70, 1701.86 ) LPos=( 211.44, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 208.56, -1368.70, 1701.86 ) LPos=( 208.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 220.06, -1367.17, 1704.30 ) LPos=( 220.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 202.81, -1367.17, 1704.30 ) LPos=( 202.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, -1365.64, 1706.73 ) LPos=( 217.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1364.11, 1709.16 ) LPos=( 220.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1383.63, 1678.17 ) LPos=( 202.81, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 217.19, -1386.69, 1673.31 ) LPos=( 217.19, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, -1382.09, 1680.60 ) LPos=( 220.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, -1368.70, 1701.86 ) LPos=( 248.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, -1365.64, 1706.73 ) LPos=( 245.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 245.19, -1367.17, 1704.30 ) LPos=( 245.19, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 245.19, -1368.70, 1701.86 ) LPos=( 245.19, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 245.19, -1370.24, 1699.43 ) LPos=( 245.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 242.31, -1364.11, 1709.16 ) LPos=( 242.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 242.31, -1367.17, 1704.30 ) LPos=( 242.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 242.31, -1371.77, 1697.00 ) LPos=( 242.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 239.44, -1367.17, 1704.30 ) LPos=( 239.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 239.44, -1371.77, 1697.00 ) LPos=( 239.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 236.56, -1368.70, 1701.86 ) LPos=( 236.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 233.69, -1371.77, 1697.00 ) LPos=( 233.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 230.81, -1368.70, 1701.86 ) LPos=( 230.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 230.81, -1371.77, 1697.00 ) LPos=( 230.81, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 227.94, -1364.11, 1709.16 ) LPos=( 227.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, -1365.64, 1706.73 ) LPos=( 227.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 227.94, -1367.17, 1704.30 ) LPos=( 227.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1379.03, 1685.47 ) LPos=( 248.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 236.56, -1382.09, 1680.60 ) LPos=( 236.56, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 227.94, -1385.16, 1675.74 ) LPos=( 227.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 270.31, -1373.30, 1694.57 ) LPos=( 270.31, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 267.44, -1373.30, 1694.57 ) LPos=( 267.44, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 276.06, -1368.70, 1701.86 ) LPos=( 276.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, -1368.70, 1701.86 ) LPos=( 264.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 258.81, -1368.70, 1701.86 ) LPos=( 258.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 267.44, -1367.17, 1704.30 ) LPos=( 267.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 264.56, -1367.17, 1704.30 ) LPos=( 264.56, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 255.94, -1367.17, 1704.30 ) LPos=( 255.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 255.94, -1365.64, 1706.73 ) LPos=( 255.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 276.06, -1364.11, 1709.16 ) LPos=( 276.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 261.69, -1364.11, 1709.16 ) LPos=( 261.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 255.94, -1364.11, 1709.16 ) LPos=( 255.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 258.81, -1379.03, 1685.47 ) LPos=( 258.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 267.44, -1382.09, 1680.60 ) LPos=( 267.44, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 276.06, -1383.63, 1678.17 ) LPos=( 276.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 276.06, -1380.56, 1683.04 ) LPos=( 276.06, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, -1367.17, 1704.30 ) LPos=( 304.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 301.19, -1371.77, 1697.00 ) LPos=( 301.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 298.31, -1364.11, 1709.16 ) LPos=( 298.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 292.56, -1373.30, 1694.57 ) LPos=( 292.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 292.56, -1374.83, 1692.13 ) LPos=( 292.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 283.94, -1371.77, 1697.00 ) LPos=( 283.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 283.94, -1373.30, 1694.57 ) LPos=( 283.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 283.94, -1374.83, 1692.13 ) LPos=( 283.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 301.19, -1389.75, 1668.44 ) LPos=( 301.19, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 323.44, -1371.77, 1697.00 ) LPos=( 323.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, -1371.77, 1697.00 ) LPos=( 317.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 332.06, -1370.24, 1699.43 ) LPos=( 332.06, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 323.44, -1370.24, 1699.43 ) LPos=( 323.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 317.69, -1370.24, 1699.43 ) LPos=( 317.69, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 332.06, -1367.17, 1704.30 ) LPos=( 332.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 332.06, -1365.64, 1706.73 ) LPos=( 332.06, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1365.64, 1706.73 ) LPos=( 342.81, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 360.06, -1386.69, 1673.31 ) LPos=( 360.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 367.94, -1368.70, 1701.86 ) LPos=( 367.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 382.31, -1380.56, 1683.04 ) LPos=( 382.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, -1379.03, 1685.47 ) LPos=( 382.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 401.69, -1383.63, 1678.17 ) LPos=( 401.69, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 423.94, -1388.22, 1670.87 ) LPos=( 423.94, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 525.19, -1370.24, 1699.43 ) LPos=( 525.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 547.44, -1370.24, 1699.43 ) LPos=( 547.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 584.06, -1371.77, 1697.00 ) LPos=( 584.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 581.19, -1373.30, 1694.57 ) LPos=( 581.19, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 606.31, -1365.64, 1706.73 ) LPos=( 606.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -591.94, -1340.13, 1747.24 ) LPos=( -591.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -563.94, -1356.58, 1721.11 ) LPos=( -563.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -507.94, -1353.52, 1725.98 ) LPos=( -507.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -507.94, -1348.92, 1733.28 ) LPos=( -507.94, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -454.81, -1344.73, 1739.94 ) LPos=( -454.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -451.94, -1340.13, 1747.24 ) LPos=( -451.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -463.44, -1359.65, 1716.25 ) LPos=( -463.44, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -457.69, -1359.65, 1716.25 ) LPos=( -457.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -454.81, -1355.05, 1723.55 ) LPos=( -454.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -423.94, -1337.07, 1752.11 ) LPos=( -423.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -432.56, -1334.00, 1756.97 ) LPos=( -432.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -438.31, -1337.07, 1752.11 ) LPos=( -438.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -444.06, -1340.13, 1747.24 ) LPos=( -444.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -410.31, -1358.11, 1718.68 ) LPos=( -410.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -410.31, -1356.58, 1721.11 ) LPos=( -410.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -404.56, -1353.52, 1725.98 ) LPos=( -404.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -401.69, -1353.52, 1725.98 ) LPos=( -401.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -367.94, -1337.07, 1752.11 ) LPos=( -367.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -370.81, -1335.53, 1754.54 ) LPos=( -370.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -382.31, -1353.52, 1725.98 ) LPos=( -382.31, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -370.81, -1355.05, 1723.55 ) LPos=( -370.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -348.56, -1344.73, 1739.94 ) LPos=( -348.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -339.94, -1335.53, 1754.54 ) LPos=( -339.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -342.81, -1335.53, 1754.54 ) LPos=( -342.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -348.56, -1334.00, 1756.97 ) LPos=( -348.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -360.06, -1358.11, 1718.68 ) LPos=( -360.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -348.56, -1358.11, 1718.68 ) LPos=( -348.56, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -348.56, -1350.45, 1730.85 ) LPos=( -348.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -342.81, -1356.58, 1721.11 ) LPos=( -342.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -342.81, -1350.45, 1730.85 ) LPos=( -342.81, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -326.31, -1343.19, 1742.38 ) LPos=( -326.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -326.31, -1344.73, 1739.94 ) LPos=( -326.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -323.44, -1348.92, 1733.28 ) LPos=( -323.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -317.69, -1350.45, 1730.85 ) LPos=( -317.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -314.81, -1356.58, 1721.11 ) LPos=( -314.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -317.69, -1359.65, 1716.25 ) LPos=( -317.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -311.94, -1359.65, 1716.25 ) LPos=( -311.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -283.94, -1344.73, 1739.94 ) LPos=( -283.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -286.81, -1341.66, 1744.81 ) LPos=( -286.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -292.56, -1337.07, 1752.11 ) LPos=( -292.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -295.44, -1334.00, 1756.97 ) LPos=( -295.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -304.06, -1356.58, 1721.11 ) LPos=( -304.06, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -289.69, -1359.65, 1716.25 ) LPos=( -289.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -286.81, -1356.58, 1721.11 ) LPos=( -286.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -255.94, -1334.00, 1756.97 ) LPos=( -255.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -255.94, -1344.73, 1739.94 ) LPos=( -255.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -258.81, -1338.60, 1749.67 ) LPos=( -258.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -255.94, -1351.99, 1728.41 ) LPos=( -255.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -270.31, -1358.11, 1718.68 ) LPos=( -270.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -230.81, -1343.19, 1742.38 ) LPos=( -230.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -248.06, -1343.19, 1742.38 ) LPos=( -248.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -236.56, -1341.66, 1744.81 ) LPos=( -236.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -236.56, -1340.13, 1747.24 ) LPos=( -236.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1334.00, 1756.97 ) LPos=( -227.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -248.06, -1358.11, 1718.68 ) LPos=( -248.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -242.31, -1351.99, 1728.41 ) LPos=( -242.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -239.44, -1358.11, 1718.68 ) LPos=( -239.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -230.81, -1348.92, 1733.28 ) LPos=( -230.81, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -199.94, -1334.00, 1756.97 ) LPos=( -199.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -199.94, -1343.19, 1742.38 ) LPos=( -199.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -202.81, -1335.53, 1754.54 ) LPos=( -202.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -205.69, -1335.53, 1754.54 ) LPos=( -205.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, -1344.73, 1739.94 ) LPos=( -205.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -208.56, -1343.19, 1742.38 ) LPos=( -208.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -220.06, -1334.00, 1756.97 ) LPos=( -220.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -220.06, -1348.92, 1733.28 ) LPos=( -220.06, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -220.06, -1350.45, 1730.85 ) LPos=( -220.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -217.19, -1350.45, 1730.85 ) LPos=( -217.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -199.94, -1350.45, 1730.85 ) LPos=( -199.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -199.94, -1351.99, 1728.41 ) LPos=( -199.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -174.81, -1344.73, 1739.94 ) LPos=( -174.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -180.56, -1344.73, 1739.94 ) LPos=( -180.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -186.31, -1344.73, 1739.94 ) LPos=( -186.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, -1344.73, 1739.94 ) LPos=( -192.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -180.56, -1343.19, 1742.38 ) LPos=( -180.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -192.06, -1343.19, 1742.38 ) LPos=( -192.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -171.94, -1341.66, 1744.81 ) LPos=( -171.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -180.56, -1341.66, 1744.81 ) LPos=( -180.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1341.66, 1744.81 ) LPos=( -183.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, -1341.66, 1744.81 ) LPos=( -186.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1338.60, 1749.67 ) LPos=( -180.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -189.19, -1338.60, 1749.67 ) LPos=( -189.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, -1338.60, 1749.67 ) LPos=( -192.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -177.69, -1337.07, 1752.11 ) LPos=( -177.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -186.31, -1337.07, 1752.11 ) LPos=( -186.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -171.94, -1335.53, 1754.54 ) LPos=( -171.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -180.56, -1335.53, 1754.54 ) LPos=( -180.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, -1334.00, 1756.97 ) LPos=( -174.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -186.31, -1334.00, 1756.97 ) LPos=( -186.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -192.06, -1356.58, 1721.11 ) LPos=( -192.06, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -189.19, -1355.05, 1723.55 ) LPos=( -189.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1353.52, 1725.98 ) LPos=( -189.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, -1356.58, 1721.11 ) LPos=( -186.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -186.31, -1355.05, 1723.55 ) LPos=( -186.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -177.69, -1350.45, 1730.85 ) LPos=( -177.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, -1356.58, 1721.11 ) LPos=( -171.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -143.94, -1337.07, 1752.11 ) LPos=( -143.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, -1343.19, 1742.38 ) LPos=( -143.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -146.81, -1341.66, 1744.81 ) LPos=( -146.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -149.69, -1334.00, 1756.97 ) LPos=( -149.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -149.69, -1337.07, 1752.11 ) LPos=( -149.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, -1338.60, 1749.67 ) LPos=( -149.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, -1340.13, 1747.24 ) LPos=( -149.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -152.56, -1334.00, 1756.97 ) LPos=( -152.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -152.56, -1337.07, 1752.11 ) LPos=( -152.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -152.56, -1340.13, 1747.24 ) LPos=( -152.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -152.56, -1344.73, 1739.94 ) LPos=( -152.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -155.44, -1337.07, 1752.11 ) LPos=( -155.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, -1338.60, 1749.67 ) LPos=( -155.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -158.31, -1340.13, 1747.24 ) LPos=( -158.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -161.19, -1340.13, 1747.24 ) LPos=( -161.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -164.06, -1335.53, 1754.54 ) LPos=( -164.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -164.06, -1338.60, 1749.67 ) LPos=( -164.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -164.06, -1340.13, 1747.24 ) LPos=( -164.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -164.06, -1341.66, 1744.81 ) LPos=( -164.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -158.31, -1348.92, 1733.28 ) LPos=( -158.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1348.92, 1733.28 ) LPos=( -155.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -149.69, -1348.92, 1733.28 ) LPos=( -149.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, -1350.45, 1730.85 ) LPos=( -164.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -161.19, -1350.45, 1730.85 ) LPos=( -161.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, -1350.45, 1730.85 ) LPos=( -158.31, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -155.44, -1350.45, 1730.85 ) LPos=( -155.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, -1350.45, 1730.85 ) LPos=( -149.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -155.44, -1351.99, 1728.41 ) LPos=( -155.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -152.56, -1351.99, 1728.41 ) LPos=( -152.56, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -149.69, -1353.52, 1725.98 ) LPos=( -149.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, -1353.52, 1725.98 ) LPos=( -143.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, -1355.05, 1723.55 ) LPos=( -143.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, -1356.58, 1721.11 ) LPos=( -146.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -164.06, -1358.11, 1718.68 ) LPos=( -164.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -146.81, -1358.11, 1718.68 ) LPos=( -146.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -161.19, -1359.65, 1716.25 ) LPos=( -161.19, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -155.44, -1359.65, 1716.25 ) LPos=( -155.44, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -152.56, -1359.65, 1716.25 ) LPos=( -152.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1344.73, 1739.94 ) LPos=( -121.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -130.31, -1344.73, 1739.94 ) LPos=( -130.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1344.73, 1739.94 ) LPos=( -133.19, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, -1344.73, 1739.94 ) LPos=( -136.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, -1343.19, 1742.38 ) LPos=( -127.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1343.19, 1742.38 ) LPos=( -133.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, -1341.66, 1744.81 ) LPos=( -124.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1341.66, 1744.81 ) LPos=( -130.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -136.06, -1341.66, 1744.81 ) LPos=( -136.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -115.94, -1340.13, 1747.24 ) LPos=( -115.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, -1340.13, 1747.24 ) LPos=( -121.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, -1340.13, 1747.24 ) LPos=( -124.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -118.81, -1338.60, 1749.67 ) LPos=( -118.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -124.56, -1338.60, 1749.67 ) LPos=( -124.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, -1338.60, 1749.67 ) LPos=( -127.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, -1338.60, 1749.67 ) LPos=( -130.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, -1338.60, 1749.67 ) LPos=( -133.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, -1337.07, 1752.11 ) LPos=( -121.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, -1337.07, 1752.11 ) LPos=( -130.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -133.19, -1337.07, 1752.11 ) LPos=( -133.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -115.94, -1335.53, 1754.54 ) LPos=( -115.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, -1335.53, 1754.54 ) LPos=( -133.19, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, -1334.00, 1756.97 ) LPos=( -115.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, -1334.00, 1756.97 ) LPos=( -136.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1351.99, 1728.41 ) LPos=( -130.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, -1353.52, 1725.98 ) LPos=( -127.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, -1351.99, 1728.41 ) LPos=( -127.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -124.56, -1353.52, 1725.98 ) LPos=( -124.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -124.56, -1350.45, 1730.85 ) LPos=( -124.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -121.69, -1353.52, 1725.98 ) LPos=( -121.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -121.69, -1351.99, 1728.41 ) LPos=( -121.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -121.69, -1350.45, 1730.85 ) LPos=( -121.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -121.69, -1348.92, 1733.28 ) LPos=( -121.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -118.81, -1355.05, 1723.55 ) LPos=( -118.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, -1355.05, 1723.55 ) LPos=( -115.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -115.94, -1351.99, 1728.41 ) LPos=( -115.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, -1340.13, 1747.24 ) LPos=( -87.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -87.94, -1343.19, 1742.38 ) LPos=( -87.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1344.73, 1739.94 ) LPos=( -87.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, -1340.13, 1747.24 ) LPos=( -90.81, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, -1343.19, 1742.38 ) LPos=( -90.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, -1344.73, 1739.94 ) LPos=( -90.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, -1343.19, 1742.38 ) LPos=( -93.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, -1344.73, 1739.94 ) LPos=( -93.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -96.56, -1337.07, 1752.11 ) LPos=( -96.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, -1338.60, 1749.67 ) LPos=( -96.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, -1341.66, 1744.81 ) LPos=( -96.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -96.56, -1344.73, 1739.94 ) LPos=( -96.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -99.44, -1334.00, 1756.97 ) LPos=( -99.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -99.44, -1337.07, 1752.11 ) LPos=( -99.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1338.60, 1749.67 ) LPos=( -99.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -102.31, -1334.00, 1756.97 ) LPos=( -102.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1337.07, 1752.11 ) LPos=( -102.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, -1338.60, 1749.67 ) LPos=( -102.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -102.31, -1340.13, 1747.24 ) LPos=( -102.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, -1343.19, 1742.38 ) LPos=( -102.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, -1344.73, 1739.94 ) LPos=( -102.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -105.19, -1334.00, 1756.97 ) LPos=( -105.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, -1335.53, 1754.54 ) LPos=( -105.19, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -105.19, -1337.07, 1752.11 ) LPos=( -105.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -105.19, -1338.60, 1749.67 ) LPos=( -105.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, -1340.13, 1747.24 ) LPos=( -105.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1341.66, 1744.81 ) LPos=( -105.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -105.19, -1344.73, 1739.94 ) LPos=( -105.19, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, -1334.00, 1756.97 ) LPos=( -108.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -108.06, -1335.53, 1754.54 ) LPos=( -108.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, -1338.60, 1749.67 ) LPos=( -108.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -108.06, -1344.73, 1739.94 ) LPos=( -108.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, -1348.92, 1733.28 ) LPos=( -90.81, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -87.94, -1350.45, 1730.85 ) LPos=( -87.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -102.31, -1351.99, 1728.41 ) LPos=( -102.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1351.99, 1728.41 ) LPos=( -93.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -90.81, -1351.99, 1728.41 ) LPos=( -90.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1353.52, 1725.98 ) LPos=( -102.31, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1353.52, 1725.98 ) LPos=( -96.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, -1353.52, 1725.98 ) LPos=( -93.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, -1353.52, 1725.98 ) LPos=( -90.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1355.05, 1723.55 ) LPos=( -99.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, -1355.05, 1723.55 ) LPos=( -93.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -90.81, -1355.05, 1723.55 ) LPos=( -90.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1356.58, 1721.11 ) LPos=( -102.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -99.44, -1356.58, 1721.11 ) LPos=( -99.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, -1356.58, 1721.11 ) LPos=( -93.69, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, -1344.73, 1739.94 ) LPos=( -59.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1344.73, 1739.94 ) LPos=( -62.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -65.69, -1344.73, 1739.94 ) LPos=( -65.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, -1344.73, 1739.94 ) LPos=( -68.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, -1344.73, 1739.94 ) LPos=( -74.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1344.73, 1739.94 ) LPos=( -80.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -59.94, -1343.19, 1742.38 ) LPos=( -59.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, -1343.19, 1742.38 ) LPos=( -62.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, -1343.19, 1742.38 ) LPos=( -71.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -80.06, -1343.19, 1742.38 ) LPos=( -80.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -68.56, -1341.66, 1744.81 ) LPos=( -68.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -71.44, -1341.66, 1744.81 ) LPos=( -71.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1341.66, 1744.81 ) LPos=( -74.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -65.69, -1340.13, 1747.24 ) LPos=( -65.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, -1340.13, 1747.24 ) LPos=( -68.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1340.13, 1747.24 ) LPos=( -71.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, -1340.13, 1747.24 ) LPos=( -80.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -59.94, -1338.60, 1749.67 ) LPos=( -59.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, -1337.07, 1752.11 ) LPos=( -59.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -80.06, -1337.07, 1752.11 ) LPos=( -80.06, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -65.69, -1335.53, 1754.54 ) LPos=( -65.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, -1335.53, 1754.54 ) LPos=( -74.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, -1334.00, 1756.97 ) LPos=( -62.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1334.00, 1756.97 ) LPos=( -77.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -80.06, -1334.00, 1756.97 ) LPos=( -80.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, -1359.65, 1716.25 ) LPos=( -80.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1358.11, 1718.68 ) LPos=( -80.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, -1351.99, 1728.41 ) LPos=( -80.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -80.06, -1350.45, 1730.85 ) LPos=( -80.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -77.19, -1356.58, 1721.11 ) LPos=( -77.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -74.31, -1358.11, 1718.68 ) LPos=( -74.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, -1356.58, 1721.11 ) LPos=( -74.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1351.99, 1728.41 ) LPos=( -74.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, -1348.92, 1733.28 ) LPos=( -74.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -71.44, -1358.11, 1718.68 ) LPos=( -71.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -71.44, -1356.58, 1721.11 ) LPos=( -71.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -71.44, -1355.05, 1723.55 ) LPos=( -71.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1353.52, 1725.98 ) LPos=( -71.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -71.44, -1350.45, 1730.85 ) LPos=( -71.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, -1348.92, 1733.28 ) LPos=( -68.56, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, -1353.52, 1725.98 ) LPos=( -65.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -65.69, -1350.45, 1730.85 ) LPos=( -65.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, -1358.11, 1718.68 ) LPos=( -62.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, -1353.52, 1725.98 ) LPos=( -62.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -62.81, -1351.99, 1728.41 ) LPos=( -62.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, -1353.52, 1725.98 ) LPos=( -59.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -59.94, -1351.99, 1728.41 ) LPos=( -59.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, -1337.07, 1752.11 ) LPos=( -31.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, -1338.60, 1749.67 ) LPos=( -31.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, -1335.53, 1754.54 ) LPos=( -34.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -34.81, -1338.60, 1749.67 ) LPos=( -34.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, -1341.66, 1744.81 ) LPos=( -34.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1343.19, 1742.38 ) LPos=( -34.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, -1344.73, 1739.94 ) LPos=( -34.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1334.00, 1756.97 ) LPos=( -37.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -37.69, -1340.13, 1747.24 ) LPos=( -37.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1341.66, 1744.81 ) LPos=( -37.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, -1334.00, 1756.97 ) LPos=( -40.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, -1341.66, 1744.81 ) LPos=( -40.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, -1343.19, 1742.38 ) LPos=( -40.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, -1344.73, 1739.94 ) LPos=( -40.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, -1334.00, 1756.97 ) LPos=( -43.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -43.44, -1335.53, 1754.54 ) LPos=( -43.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -43.44, -1343.19, 1742.38 ) LPos=( -43.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, -1344.73, 1739.94 ) LPos=( -43.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -46.31, -1334.00, 1756.97 ) LPos=( -46.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -46.31, -1335.53, 1754.54 ) LPos=( -46.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, -1338.60, 1749.67 ) LPos=( -46.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1341.66, 1744.81 ) LPos=( -46.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, -1344.73, 1739.94 ) LPos=( -46.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, -1337.07, 1752.11 ) LPos=( -49.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, -1340.13, 1747.24 ) LPos=( -49.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -49.19, -1343.19, 1742.38 ) LPos=( -49.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1344.73, 1739.94 ) LPos=( -49.19, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -52.06, -1338.60, 1749.67 ) LPos=( -52.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, -1341.66, 1744.81 ) LPos=( -52.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -52.06, -1343.19, 1742.38 ) LPos=( -52.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1344.73, 1739.94 ) LPos=( -52.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, -1348.92, 1733.28 ) LPos=( -49.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -49.19, -1350.45, 1730.85 ) LPos=( -49.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, -1350.45, 1730.85 ) LPos=( -43.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -52.06, -1351.99, 1728.41 ) LPos=( -52.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, -1351.99, 1728.41 ) LPos=( -43.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1351.99, 1728.41 ) LPos=( -37.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, -1353.52, 1725.98 ) LPos=( -37.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -31.94, -1353.52, 1725.98 ) LPos=( -31.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -40.56, -1355.05, 1723.55 ) LPos=( -40.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, -1355.05, 1723.55 ) LPos=( -37.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, -1355.05, 1723.55 ) LPos=( -31.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -43.44, -1356.58, 1721.11 ) LPos=( -43.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, -1356.58, 1721.11 ) LPos=( -37.69, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -31.94, -1356.58, 1721.11 ) LPos=( -31.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1358.11, 1718.68 ) LPos=( -49.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1358.11, 1718.68 ) LPos=( -43.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -37.69, -1358.11, 1718.68 ) LPos=( -37.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -34.81, -1358.11, 1718.68 ) LPos=( -34.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, -1359.65, 1716.25 ) LPos=( -46.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, -1359.65, 1716.25 ) LPos=( -40.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -37.69, -1359.65, 1716.25 ) LPos=( -37.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -31.94, -1359.65, 1716.25 ) LPos=( -31.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -12.56, -1344.73, 1739.94 ) LPos=( -12.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, -1343.19, 1742.38 ) LPos=( -6.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1343.19, 1742.38 ) LPos=( -21.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, -1343.19, 1742.38 ) LPos=( -24.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, -1341.66, 1744.81 ) LPos=( -15.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, -1341.66, 1744.81 ) LPos=( -18.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, -1341.66, 1744.81 ) LPos=( -24.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, -1340.13, 1747.24 ) LPos=( -12.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, -1340.13, 1747.24 ) LPos=( -15.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, -1340.13, 1747.24 ) LPos=( -18.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, -1340.13, 1747.24 ) LPos=( -21.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, -1340.13, 1747.24 ) LPos=( -24.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3.94, -1338.60, 1749.67 ) LPos=( -3.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, -1338.60, 1749.67 ) LPos=( -6.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -15.44, -1338.60, 1749.67 ) LPos=( -15.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -18.31, -1338.60, 1749.67 ) LPos=( -18.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1337.07, 1752.11 ) LPos=( -9.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1335.53, 1754.54 ) LPos=( -6.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, -1335.53, 1754.54 ) LPos=( -12.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, -1335.53, 1754.54 ) LPos=( -15.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, -1334.00, 1756.97 ) LPos=( -3.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, -1334.00, 1756.97 ) LPos=( -6.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, -1334.00, 1756.97 ) LPos=( -15.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -18.31, -1334.00, 1756.97 ) LPos=( -18.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -21.19, -1358.11, 1718.68 ) LPos=( -21.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, -1356.58, 1721.11 ) LPos=( -21.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1356.58, 1721.11 ) LPos=( -18.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, -1355.05, 1723.55 ) LPos=( -15.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -12.56, -1359.65, 1716.25 ) LPos=( -12.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1355.05, 1723.55 ) LPos=( -12.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -12.56, -1353.52, 1725.98 ) LPos=( -12.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, -1358.11, 1718.68 ) LPos=( -9.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -9.69, -1355.05, 1723.55 ) LPos=( -9.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, -1351.99, 1728.41 ) LPos=( -9.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, -1350.45, 1730.85 ) LPos=( -9.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -9.69, -1348.92, 1733.28 ) LPos=( -9.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, -1359.65, 1716.25 ) LPos=( -3.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, -1337.07, 1752.11 ) LPos=( 24.06, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, -1338.60, 1749.67 ) LPos=( 24.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, -1335.53, 1754.54 ) LPos=( 21.19, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, -1335.53, 1754.54 ) LPos=( 18.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, -1338.60, 1749.67 ) LPos=( 18.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, -1340.13, 1747.24 ) LPos=( 18.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, -1343.19, 1742.38 ) LPos=( 18.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, -1340.13, 1747.24 ) LPos=( 15.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 15.44, -1343.19, 1742.38 ) LPos=( 15.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, -1335.53, 1754.54 ) LPos=( 12.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, -1337.07, 1752.11 ) LPos=( 12.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, -1340.13, 1747.24 ) LPos=( 12.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, -1341.66, 1744.81 ) LPos=( 9.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, -1334.00, 1756.97 ) LPos=( 6.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3.94, -1344.73, 1739.94 ) LPos=( 3.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, -1348.92, 1733.28 ) LPos=( 3.94, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 12.56, -1348.92, 1733.28 ) LPos=( 12.56, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, -1348.92, 1733.28 ) LPos=( 24.06, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, -1350.45, 1730.85 ) LPos=( 3.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 12.56, -1350.45, 1730.85 ) LPos=( 12.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, -1350.45, 1730.85 ) LPos=( 15.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1350.45, 1730.85 ) LPos=( 18.31, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, -1351.99, 1728.41 ) LPos=( 15.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, -1351.99, 1728.41 ) LPos=( 18.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 6.81, -1353.52, 1725.98 ) LPos=( 6.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, -1353.52, 1725.98 ) LPos=( 9.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, -1353.52, 1725.98 ) LPos=( 15.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 21.19, -1353.52, 1725.98 ) LPos=( 21.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, -1355.05, 1723.55 ) LPos=( 3.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 9.69, -1355.05, 1723.55 ) LPos=( 9.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, -1356.58, 1721.11 ) LPos=( 15.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, -1356.58, 1721.11 ) LPos=( 21.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 9.69, -1358.11, 1718.68 ) LPos=( 9.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 15.44, -1358.11, 1718.68 ) LPos=( 15.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, -1358.11, 1718.68 ) LPos=( 18.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 9.69, -1359.65, 1716.25 ) LPos=( 9.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 12.56, -1359.65, 1716.25 ) LPos=( 12.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, -1359.65, 1716.25 ) LPos=( 18.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 52.06, -1344.73, 1739.94 ) LPos=( 52.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, -1344.73, 1739.94 ) LPos=( 37.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, -1343.19, 1742.38 ) LPos=( 49.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 31.94, -1343.19, 1742.38 ) LPos=( 31.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, -1341.66, 1744.81 ) LPos=( 52.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1341.66, 1744.81 ) LPos=( 37.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 49.19, -1338.60, 1749.67 ) LPos=( 49.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, -1338.60, 1749.67 ) LPos=( 46.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, -1335.53, 1754.54 ) LPos=( 37.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, -1335.53, 1754.54 ) LPos=( 34.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 31.94, -1359.65, 1716.25 ) LPos=( 31.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 34.81, -1358.11, 1718.68 ) LPos=( 34.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 34.81, -1351.99, 1728.41 ) LPos=( 34.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, -1358.11, 1718.68 ) LPos=( 40.56, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, -1356.58, 1721.11 ) LPos=( 40.56, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, -1351.99, 1728.41 ) LPos=( 40.56, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, -1358.11, 1718.68 ) LPos=( 43.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1355.05, 1723.55 ) LPos=( 43.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 43.44, -1351.99, 1728.41 ) LPos=( 43.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 43.44, -1350.45, 1730.85 ) LPos=( 43.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, -1358.11, 1718.68 ) LPos=( 49.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, -1355.05, 1723.55 ) LPos=( 49.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, -1351.99, 1728.41 ) LPos=( 52.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, -1335.53, 1754.54 ) LPos=( 80.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 80.06, -1340.13, 1747.24 ) LPos=( 80.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 80.06, -1341.66, 1744.81 ) LPos=( 80.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, -1343.19, 1742.38 ) LPos=( 80.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 77.19, -1338.60, 1749.67 ) LPos=( 77.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1341.66, 1744.81 ) LPos=( 77.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, -1337.07, 1752.11 ) LPos=( 74.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, -1338.60, 1749.67 ) LPos=( 74.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, -1340.13, 1747.24 ) LPos=( 74.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, -1334.00, 1756.97 ) LPos=( 71.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 71.44, -1335.53, 1754.54 ) LPos=( 71.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 71.44, -1344.73, 1739.94 ) LPos=( 71.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, -1340.13, 1747.24 ) LPos=( 68.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, -1335.53, 1754.54 ) LPos=( 65.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, -1334.00, 1756.97 ) LPos=( 62.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 62.81, -1341.66, 1744.81 ) LPos=( 62.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, -1334.00, 1756.97 ) LPos=( 59.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1341.66, 1744.81 ) LPos=( 59.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, -1348.92, 1733.28 ) LPos=( 62.81, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, -1348.92, 1733.28 ) LPos=( 68.56, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 71.44, -1348.92, 1733.28 ) LPos=( 71.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 77.19, -1348.92, 1733.28 ) LPos=( 77.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 62.81, -1350.45, 1730.85 ) LPos=( 62.81, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, -1350.45, 1730.85 ) LPos=( 68.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, -1350.45, 1730.85 ) LPos=( 71.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, -1351.99, 1728.41 ) LPos=( 59.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, -1351.99, 1728.41 ) LPos=( 77.19, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1351.99, 1728.41 ) LPos=( 80.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, -1353.52, 1725.98 ) LPos=( 65.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, -1355.05, 1723.55 ) LPos=( 65.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, -1355.05, 1723.55 ) LPos=( 68.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, -1355.05, 1723.55 ) LPos=( 71.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 80.06, -1355.05, 1723.55 ) LPos=( 80.06, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, -1344.73, 1739.94 ) LPos=( 93.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, -1344.73, 1739.94 ) LPos=( 90.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, -1344.73, 1739.94 ) LPos=( 87.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 108.06, -1343.19, 1742.38 ) LPos=( 108.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, -1343.19, 1742.38 ) LPos=( 105.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, -1343.19, 1742.38 ) LPos=( 102.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, -1343.19, 1742.38 ) LPos=( 96.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 93.69, -1343.19, 1742.38 ) LPos=( 93.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1343.19, 1742.38 ) LPos=( 90.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, -1343.19, 1742.38 ) LPos=( 87.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, -1341.66, 1744.81 ) LPos=( 105.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1341.66, 1744.81 ) LPos=( 102.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, -1341.66, 1744.81 ) LPos=( 96.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 90.81, -1341.66, 1744.81 ) LPos=( 90.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1340.13, 1747.24 ) LPos=( 96.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, -1340.13, 1747.24 ) LPos=( 93.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, -1340.13, 1747.24 ) LPos=( 90.81, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 108.06, -1338.60, 1749.67 ) LPos=( 108.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 105.19, -1338.60, 1749.67 ) LPos=( 105.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, -1338.60, 1749.67 ) LPos=( 102.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1338.60, 1749.67 ) LPos=( 99.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 96.56, -1338.60, 1749.67 ) LPos=( 96.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, -1338.60, 1749.67 ) LPos=( 93.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 90.81, -1338.60, 1749.67 ) LPos=( 90.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 105.19, -1337.07, 1752.11 ) LPos=( 105.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1337.07, 1752.11 ) LPos=( 102.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, -1337.07, 1752.11 ) LPos=( 99.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, -1335.53, 1754.54 ) LPos=( 108.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, -1335.53, 1754.54 ) LPos=( 102.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1335.53, 1754.54 ) LPos=( 90.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 87.94, -1335.53, 1754.54 ) LPos=( 87.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, -1334.00, 1756.97 ) LPos=( 93.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, -1334.00, 1756.97 ) LPos=( 90.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 87.94, -1334.00, 1756.97 ) LPos=( 87.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 87.94, -1356.58, 1721.11 ) LPos=( 87.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, -1355.05, 1723.55 ) LPos=( 87.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, -1353.52, 1725.98 ) LPos=( 87.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, -1350.45, 1730.85 ) LPos=( 87.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 90.81, -1359.65, 1716.25 ) LPos=( 90.81, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, -1355.05, 1723.55 ) LPos=( 96.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1353.52, 1725.98 ) LPos=( 96.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, -1356.58, 1721.11 ) LPos=( 99.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1355.05, 1723.55 ) LPos=( 99.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 102.31, -1359.65, 1716.25 ) LPos=( 102.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1356.58, 1721.11 ) LPos=( 102.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, -1355.05, 1723.55 ) LPos=( 102.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, -1350.45, 1730.85 ) LPos=( 102.31, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, -1355.05, 1723.55 ) LPos=( 105.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, -1353.52, 1725.98 ) LPos=( 105.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, -1359.65, 1716.25 ) LPos=( 108.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1350.45, 1730.85 ) LPos=( 108.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 136.06, -1338.60, 1749.67 ) LPos=( 136.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 133.19, -1338.60, 1749.67 ) LPos=( 133.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, -1338.60, 1749.67 ) LPos=( 130.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1341.66, 1744.81 ) LPos=( 130.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, -1343.19, 1742.38 ) LPos=( 130.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, -1343.19, 1742.38 ) LPos=( 127.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 127.44, -1344.73, 1739.94 ) LPos=( 127.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, -1338.60, 1749.67 ) LPos=( 124.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 124.56, -1343.19, 1742.38 ) LPos=( 124.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1344.73, 1739.94 ) LPos=( 124.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 121.69, -1335.53, 1754.54 ) LPos=( 121.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 121.69, -1344.73, 1739.94 ) LPos=( 121.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1335.53, 1754.54 ) LPos=( 118.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 118.81, -1338.60, 1749.67 ) LPos=( 118.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, -1344.73, 1739.94 ) LPos=( 118.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, -1334.00, 1756.97 ) LPos=( 115.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 115.94, -1335.53, 1754.54 ) LPos=( 115.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, -1341.66, 1744.81 ) LPos=( 115.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, -1344.73, 1739.94 ) LPos=( 115.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, -1351.99, 1728.41 ) LPos=( 127.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 133.19, -1351.99, 1728.41 ) LPos=( 133.19, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, -1351.99, 1728.41 ) LPos=( 136.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, -1353.52, 1725.98 ) LPos=( 115.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, -1353.52, 1725.98 ) LPos=( 118.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, -1353.52, 1725.98 ) LPos=( 130.31, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 127.44, -1355.05, 1723.55 ) LPos=( 127.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, -1359.65, 1716.25 ) LPos=( 115.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 164.06, -1344.73, 1739.94 ) LPos=( 164.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, -1344.73, 1739.94 ) LPos=( 149.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 143.94, -1343.19, 1742.38 ) LPos=( 143.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 161.19, -1341.66, 1744.81 ) LPos=( 161.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 164.06, -1340.13, 1747.24 ) LPos=( 164.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1340.13, 1747.24 ) LPos=( 161.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 155.44, -1340.13, 1747.24 ) LPos=( 155.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1340.13, 1747.24 ) LPos=( 152.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 146.81, -1338.60, 1749.67 ) LPos=( 146.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 149.69, -1337.07, 1752.11 ) LPos=( 149.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 143.94, -1337.07, 1752.11 ) LPos=( 143.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 152.56, -1335.53, 1754.54 ) LPos=( 152.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1335.53, 1754.54 ) LPos=( 143.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 152.56, -1334.00, 1756.97 ) LPos=( 152.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 149.69, -1334.00, 1756.97 ) LPos=( 149.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, -1356.58, 1721.11 ) LPos=( 143.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 143.94, -1351.99, 1728.41 ) LPos=( 143.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 146.81, -1351.99, 1728.41 ) LPos=( 146.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, -1359.65, 1716.25 ) LPos=( 152.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 161.19, -1350.45, 1730.85 ) LPos=( 161.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 192.06, -1343.19, 1742.38 ) LPos=( 192.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, -1340.13, 1747.24 ) LPos=( 189.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 186.31, -1335.53, 1754.54 ) LPos=( 186.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, -1334.00, 1756.97 ) LPos=( 183.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 183.44, -1337.07, 1752.11 ) LPos=( 183.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 180.56, -1334.00, 1756.97 ) LPos=( 180.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 180.56, -1335.53, 1754.54 ) LPos=( 180.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, -1338.60, 1749.67 ) LPos=( 180.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, -1338.60, 1749.67 ) LPos=( 177.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 177.69, -1341.66, 1744.81 ) LPos=( 177.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 177.69, -1344.73, 1739.94 ) LPos=( 177.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 174.81, -1338.60, 1749.67 ) LPos=( 174.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 171.94, -1340.13, 1747.24 ) LPos=( 171.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 183.44, -1348.92, 1733.28 ) LPos=( 183.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 171.94, -1350.45, 1730.85 ) LPos=( 171.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 177.69, -1350.45, 1730.85 ) LPos=( 177.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 177.69, -1351.99, 1728.41 ) LPos=( 177.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, -1353.52, 1725.98 ) LPos=( 177.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 171.94, -1355.05, 1723.55 ) LPos=( 171.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 183.44, -1356.58, 1721.11 ) LPos=( 183.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 192.06, -1358.11, 1718.68 ) LPos=( 192.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, -1359.65, 1716.25 ) LPos=( 174.81, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 180.56, -1359.65, 1716.25 ) LPos=( 180.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 183.44, -1359.65, 1716.25 ) LPos=( 183.44, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 192.06, -1359.65, 1716.25 ) LPos=( 192.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 211.44, -1343.19, 1742.38 ) LPos=( 211.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 220.06, -1341.66, 1744.81 ) LPos=( 220.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, -1341.66, 1744.81 ) LPos=( 217.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 214.31, -1341.66, 1744.81 ) LPos=( 214.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 211.44, -1341.66, 1744.81 ) LPos=( 211.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 199.94, -1340.13, 1747.24 ) LPos=( 199.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 205.69, -1338.60, 1749.67 ) LPos=( 205.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 202.81, -1338.60, 1749.67 ) LPos=( 202.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 199.94, -1338.60, 1749.67 ) LPos=( 199.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, -1335.53, 1754.54 ) LPos=( 211.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 214.31, -1334.00, 1756.97 ) LPos=( 214.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, -1359.65, 1716.25 ) LPos=( 199.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 202.81, -1356.58, 1721.11 ) LPos=( 202.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 208.56, -1355.05, 1723.55 ) LPos=( 208.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 211.44, -1356.58, 1721.11 ) LPos=( 211.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 214.31, -1359.65, 1716.25 ) LPos=( 214.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 214.31, -1348.92, 1733.28 ) LPos=( 214.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, -1358.11, 1718.68 ) LPos=( 217.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 217.19, -1350.45, 1730.85 ) LPos=( 217.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, -1343.19, 1742.38 ) LPos=( 248.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 239.44, -1344.73, 1739.94 ) LPos=( 239.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 236.56, -1344.73, 1739.94 ) LPos=( 236.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 233.69, -1334.00, 1756.97 ) LPos=( 233.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 230.81, -1334.00, 1756.97 ) LPos=( 230.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 230.81, -1343.19, 1742.38 ) LPos=( 230.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, -1340.13, 1747.24 ) LPos=( 227.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 227.94, -1341.66, 1744.81 ) LPos=( 227.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 227.94, -1344.73, 1739.94 ) LPos=( 227.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 233.69, -1348.92, 1733.28 ) LPos=( 233.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 236.56, -1350.45, 1730.85 ) LPos=( 236.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 230.81, -1353.52, 1725.98 ) LPos=( 230.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 236.56, -1353.52, 1725.98 ) LPos=( 236.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 239.44, -1353.52, 1725.98 ) LPos=( 239.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 248.06, -1353.52, 1725.98 ) LPos=( 248.06, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 227.94, -1355.05, 1723.55 ) LPos=( 227.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 239.44, -1355.05, 1723.55 ) LPos=( 239.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 242.31, -1355.05, 1723.55 ) LPos=( 242.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 236.56, -1356.58, 1721.11 ) LPos=( 236.56, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 239.44, -1358.11, 1718.68 ) LPos=( 239.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 233.69, -1359.65, 1716.25 ) LPos=( 233.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 236.56, -1359.65, 1716.25 ) LPos=( 236.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 261.69, -1343.19, 1742.38 ) LPos=( 261.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 255.94, -1343.19, 1742.38 ) LPos=( 255.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 270.31, -1341.66, 1744.81 ) LPos=( 270.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 264.56, -1341.66, 1744.81 ) LPos=( 264.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 276.06, -1334.00, 1756.97 ) LPos=( 276.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 255.94, -1355.05, 1723.55 ) LPos=( 255.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 255.94, -1353.52, 1725.98 ) LPos=( 255.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 261.69, -1350.45, 1730.85 ) LPos=( 261.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 264.56, -1358.11, 1718.68 ) LPos=( 264.56, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 270.31, -1359.65, 1716.25 ) LPos=( 270.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 273.19, -1359.65, 1716.25 ) LPos=( 273.19, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 273.19, -1356.58, 1721.11 ) LPos=( 273.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 273.19, -1353.52, 1725.98 ) LPos=( 273.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 304.06, -1343.19, 1742.38 ) LPos=( 304.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 301.19, -1334.00, 1756.97 ) LPos=( 301.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 295.44, -1337.07, 1752.11 ) LPos=( 295.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 295.44, -1340.13, 1747.24 ) LPos=( 295.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 292.56, -1344.73, 1739.94 ) LPos=( 292.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 286.81, -1340.13, 1747.24 ) LPos=( 286.81, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 301.19, -1348.92, 1733.28 ) LPos=( 301.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 295.44, -1350.45, 1730.85 ) LPos=( 295.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 286.81, -1353.52, 1725.98 ) LPos=( 286.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 292.56, -1353.52, 1725.98 ) LPos=( 292.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 286.81, -1356.58, 1721.11 ) LPos=( 286.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 289.69, -1358.11, 1718.68 ) LPos=( 289.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 289.69, -1359.65, 1716.25 ) LPos=( 289.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 326.31, -1344.73, 1739.94 ) LPos=( 326.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, -1358.11, 1718.68 ) LPos=( 314.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 317.69, -1350.45, 1730.85 ) LPos=( 317.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 326.31, -1358.11, 1718.68 ) LPos=( 326.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1359.65, 1716.25 ) LPos=( 332.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 357.19, -1334.00, 1756.97 ) LPos=( 357.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 351.44, -1343.19, 1742.38 ) LPos=( 351.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 342.81, -1343.19, 1742.38 ) LPos=( 342.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 354.31, -1348.92, 1733.28 ) LPos=( 354.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 360.06, -1348.92, 1733.28 ) LPos=( 360.06, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 348.56, -1351.99, 1728.41 ) LPos=( 348.56, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 351.44, -1351.99, 1728.41 ) LPos=( 351.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 354.31, -1351.99, 1728.41 ) LPos=( 354.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 360.06, -1353.52, 1725.98 ) LPos=( 360.06, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 357.19, -1356.58, 1721.11 ) LPos=( 357.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, -1358.11, 1718.68 ) LPos=( 339.94, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 354.31, -1358.11, 1718.68 ) LPos=( 354.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 348.56, -1359.65, 1716.25 ) LPos=( 348.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 354.31, -1359.65, 1716.25 ) LPos=( 354.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 385.19, -1343.19, 1742.38 ) LPos=( 385.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 376.56, -1343.19, 1742.38 ) LPos=( 376.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 373.69, -1343.19, 1742.38 ) LPos=( 373.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 367.94, -1340.13, 1747.24 ) LPos=( 367.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 388.06, -1337.07, 1752.11 ) LPos=( 388.06, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 379.44, -1335.53, 1754.54 ) LPos=( 379.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 373.69, -1334.00, 1756.97 ) LPos=( 373.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 370.81, -1351.99, 1728.41 ) LPos=( 370.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 373.69, -1355.05, 1723.55 ) LPos=( 373.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 379.44, -1353.52, 1725.98 ) LPos=( 379.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 388.06, -1353.52, 1725.98 ) LPos=( 388.06, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 416.06, -1341.66, 1744.81 ) LPos=( 416.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 407.44, -1335.53, 1754.54 ) LPos=( 407.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 398.81, -1335.53, 1754.54 ) LPos=( 398.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 395.94, -1334.00, 1756.97 ) LPos=( 395.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 413.19, -1355.05, 1723.55 ) LPos=( 413.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 401.69, -1359.65, 1716.25 ) LPos=( 401.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 497.19, -1341.66, 1744.81 ) LPos=( 497.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 553.19, -1348.92, 1733.28 ) LPos=( 553.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 584.06, -1341.66, 1744.81 ) LPos=( 584.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 563.94, -1337.07, 1752.11 ) LPos=( 563.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 569.69, -1348.92, 1733.28 ) LPos=( 569.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 600.56, -1341.66, 1744.81 ) LPos=( 600.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 606.31, -1334.00, 1756.97 ) LPos=( 606.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 606.31, -1355.05, 1723.55 ) LPos=( 606.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -606.31, -1310.02, 1795.05 ) LPos=( -606.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -507.94, -1310.02, 1795.05 ) LPos=( -507.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -500.06, -1324.94, 1771.36 ) LPos=( -500.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -454.81, -1314.62, 1787.75 ) LPos=( -454.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -423.94, -1305.43, 1802.35 ) LPos=( -423.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -429.69, -1305.43, 1802.35 ) LPos=( -429.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -429.69, -1306.96, 1799.92 ) LPos=( -429.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -435.44, -1305.43, 1802.35 ) LPos=( -435.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -398.81, -1303.89, 1804.78 ) LPos=( -398.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -407.44, -1320.35, 1778.66 ) LPos=( -407.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -401.69, -1326.47, 1768.92 ) LPos=( -401.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -395.94, -1328.01, 1766.49 ) LPos=( -395.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -379.44, -1326.47, 1768.92 ) LPos=( -379.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -388.06, -1328.01, 1766.49 ) LPos=( -388.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -376.56, -1328.01, 1766.49 ) LPos=( -376.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -373.69, -1328.01, 1766.49 ) LPos=( -373.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -367.94, -1329.54, 1764.06 ) LPos=( -367.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -339.94, -1310.02, 1795.05 ) LPos=( -339.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -332.06, -1320.35, 1778.66 ) LPos=( -332.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -329.19, -1324.94, 1771.36 ) LPos=( -329.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -311.94, -1324.94, 1771.36 ) LPos=( -311.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -332.06, -1326.47, 1768.92 ) LPos=( -332.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -323.44, -1326.47, 1768.92 ) LPos=( -323.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -311.94, -1328.01, 1766.49 ) LPos=( -311.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -289.69, -1329.54, 1764.06 ) LPos=( -289.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -255.94, -1303.89, 1804.78 ) LPos=( -255.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -261.69, -1314.62, 1787.75 ) LPos=( -261.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -267.44, -1318.81, 1781.09 ) LPos=( -267.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, -1318.81, 1781.09 ) LPos=( -258.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -255.94, -1318.81, 1781.09 ) LPos=( -255.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -258.81, -1323.41, 1773.79 ) LPos=( -258.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -258.81, -1324.94, 1771.36 ) LPos=( -258.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -261.69, -1326.47, 1768.92 ) LPos=( -261.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -258.81, -1328.01, 1766.49 ) LPos=( -258.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -248.06, -1311.55, 1792.62 ) LPos=( -248.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -242.31, -1310.02, 1795.05 ) LPos=( -242.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -248.06, -1310.02, 1795.05 ) LPos=( -248.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, -1308.49, 1797.48 ) LPos=( -236.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -239.44, -1306.96, 1799.92 ) LPos=( -239.44, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, -1305.43, 1802.35 ) LPos=( -236.56, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, -1305.43, 1802.35 ) LPos=( -245.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -248.06, -1305.43, 1802.35 ) LPos=( -248.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1303.89, 1804.78 ) LPos=( -227.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -242.31, -1303.89, 1804.78 ) LPos=( -242.31, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -242.31, -1318.81, 1781.09 ) LPos=( -242.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -236.56, -1321.88, 1776.22 ) LPos=( -236.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -227.94, -1328.01, 1766.49 ) LPos=( -227.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -199.94, -1303.89, 1804.78 ) LPos=( -199.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -199.94, -1306.96, 1799.92 ) LPos=( -199.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -199.94, -1308.49, 1797.48 ) LPos=( -199.94, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -199.94, -1314.62, 1787.75 ) LPos=( -199.94, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -202.81, -1310.02, 1795.05 ) LPos=( -202.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, -1311.55, 1792.62 ) LPos=( -205.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -208.56, -1308.49, 1797.48 ) LPos=( -208.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -208.56, -1310.02, 1795.05 ) LPos=( -208.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -208.56, -1314.62, 1787.75 ) LPos=( -208.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -211.44, -1311.55, 1792.62 ) LPos=( -211.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -211.44, -1313.09, 1790.19 ) LPos=( -211.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1313.09, 1790.19 ) LPos=( -214.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -214.31, -1314.62, 1787.75 ) LPos=( -214.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -217.19, -1305.43, 1802.35 ) LPos=( -217.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -217.19, -1311.55, 1792.62 ) LPos=( -217.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -220.06, -1305.43, 1802.35 ) LPos=( -220.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -220.06, -1308.49, 1797.48 ) LPos=( -220.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -220.06, -1311.55, 1792.62 ) LPos=( -220.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -220.06, -1318.81, 1781.09 ) LPos=( -220.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, -1318.81, 1781.09 ) LPos=( -214.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -211.44, -1318.81, 1781.09 ) LPos=( -211.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -208.56, -1318.81, 1781.09 ) LPos=( -208.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, -1320.35, 1778.66 ) LPos=( -214.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -211.44, -1320.35, 1778.66 ) LPos=( -211.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -208.56, -1320.35, 1778.66 ) LPos=( -208.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -202.81, -1320.35, 1778.66 ) LPos=( -202.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -199.94, -1320.35, 1778.66 ) LPos=( -199.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -211.44, -1321.88, 1776.22 ) LPos=( -211.44, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -208.56, -1321.88, 1776.22 ) LPos=( -208.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, -1321.88, 1776.22 ) LPos=( -205.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -208.56, -1323.41, 1773.79 ) LPos=( -208.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -205.69, -1323.41, 1773.79 ) LPos=( -205.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -208.56, -1324.94, 1771.36 ) LPos=( -208.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -205.69, -1324.94, 1771.36 ) LPos=( -205.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -202.81, -1324.94, 1771.36 ) LPos=( -202.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -208.56, -1326.47, 1768.92 ) LPos=( -208.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -202.81, -1326.47, 1768.92 ) LPos=( -202.81, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -199.94, -1326.47, 1768.92 ) LPos=( -199.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -211.44, -1328.01, 1766.49 ) LPos=( -211.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -208.56, -1328.01, 1766.49 ) LPos=( -208.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -202.81, -1328.01, 1766.49 ) LPos=( -202.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -217.19, -1329.54, 1764.06 ) LPos=( -217.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -211.44, -1329.54, 1764.06 ) LPos=( -211.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -202.81, -1329.54, 1764.06 ) LPos=( -202.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -174.81, -1314.62, 1787.75 ) LPos=( -174.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -192.06, -1313.09, 1790.19 ) LPos=( -192.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -174.81, -1311.55, 1792.62 ) LPos=( -174.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1311.55, 1792.62 ) LPos=( -183.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -192.06, -1311.55, 1792.62 ) LPos=( -192.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -192.06, -1310.02, 1795.05 ) LPos=( -192.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -177.69, -1306.96, 1799.92 ) LPos=( -177.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -189.19, -1306.96, 1799.92 ) LPos=( -189.19, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -171.94, -1305.43, 1802.35 ) LPos=( -171.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -186.31, -1305.43, 1802.35 ) LPos=( -186.31, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -180.56, -1303.89, 1804.78 ) LPos=( -180.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -177.69, -1329.54, 1764.06 ) LPos=( -177.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -177.69, -1324.94, 1771.36 ) LPos=( -177.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -146.81, -1311.55, 1792.62 ) LPos=( -146.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, -1308.49, 1797.48 ) LPos=( -149.69, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -149.69, -1311.55, 1792.62 ) LPos=( -149.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, -1308.49, 1797.48 ) LPos=( -152.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -152.56, -1310.02, 1795.05 ) LPos=( -152.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, -1313.09, 1790.19 ) LPos=( -152.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -152.56, -1314.62, 1787.75 ) LPos=( -152.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -155.44, -1305.43, 1802.35 ) LPos=( -155.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, -1308.49, 1797.48 ) LPos=( -155.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -155.44, -1310.02, 1795.05 ) LPos=( -155.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -155.44, -1313.09, 1790.19 ) LPos=( -155.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, -1306.96, 1799.92 ) LPos=( -158.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -161.19, -1306.96, 1799.92 ) LPos=( -161.19, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -161.19, -1310.02, 1795.05 ) LPos=( -161.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, -1311.55, 1792.62 ) LPos=( -161.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, -1303.89, 1804.78 ) LPos=( -164.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -164.06, -1305.43, 1802.35 ) LPos=( -164.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -164.06, -1314.62, 1787.75 ) LPos=( -164.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, -1318.81, 1781.09 ) LPos=( -164.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -158.31, -1318.81, 1781.09 ) LPos=( -158.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1318.81, 1781.09 ) LPos=( -155.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -152.56, -1318.81, 1781.09 ) LPos=( -152.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -149.69, -1318.81, 1781.09 ) LPos=( -149.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, -1320.35, 1778.66 ) LPos=( -149.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, -1321.88, 1776.22 ) LPos=( -158.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, -1321.88, 1776.22 ) LPos=( -146.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, -1323.41, 1773.79 ) LPos=( -155.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, -1323.41, 1773.79 ) LPos=( -143.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -149.69, -1324.94, 1771.36 ) LPos=( -149.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -146.81, -1324.94, 1771.36 ) LPos=( -146.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, -1324.94, 1771.36 ) LPos=( -143.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, -1326.47, 1768.92 ) LPos=( -146.81, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -149.69, -1328.01, 1766.49 ) LPos=( -149.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -146.81, -1328.01, 1766.49 ) LPos=( -146.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, -1328.01, 1766.49 ) LPos=( -143.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, -1329.54, 1764.06 ) LPos=( -164.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -149.69, -1329.54, 1764.06 ) LPos=( -149.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1314.62, 1787.75 ) LPos=( -121.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, -1313.09, 1790.19 ) LPos=( -124.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -118.81, -1311.55, 1792.62 ) LPos=( -118.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, -1311.55, 1792.62 ) LPos=( -121.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, -1306.96, 1799.92 ) LPos=( -121.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -121.69, -1305.43, 1802.35 ) LPos=( -121.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -136.06, -1329.54, 1764.06 ) LPos=( -136.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -133.19, -1329.54, 1764.06 ) LPos=( -133.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -133.19, -1326.47, 1768.92 ) LPos=( -133.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, -1321.88, 1776.22 ) LPos=( -133.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, -1328.01, 1766.49 ) LPos=( -130.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -130.31, -1326.47, 1768.92 ) LPos=( -130.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -130.31, -1324.94, 1771.36 ) LPos=( -130.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -127.44, -1329.54, 1764.06 ) LPos=( -127.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -127.44, -1328.01, 1766.49 ) LPos=( -127.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -127.44, -1326.47, 1768.92 ) LPos=( -127.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, -1324.94, 1771.36 ) LPos=( -127.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -124.56, -1329.54, 1764.06 ) LPos=( -124.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -118.81, -1320.35, 1778.66 ) LPos=( -118.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, -1318.81, 1781.09 ) LPos=( -118.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -115.94, -1326.47, 1768.92 ) LPos=( -115.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -115.94, -1321.88, 1776.22 ) LPos=( -115.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, -1303.89, 1804.78 ) LPos=( -87.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, -1308.49, 1797.48 ) LPos=( -87.94, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -90.81, -1308.49, 1797.48 ) LPos=( -90.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, -1310.02, 1795.05 ) LPos=( -90.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -93.69, -1310.02, 1795.05 ) LPos=( -93.69, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1311.55, 1792.62 ) LPos=( -93.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, -1314.62, 1787.75 ) LPos=( -93.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -102.31, -1310.02, 1795.05 ) LPos=( -102.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -105.19, -1303.89, 1804.78 ) LPos=( -105.19, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, -1303.89, 1804.78 ) LPos=( -108.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1318.81, 1781.09 ) LPos=( -87.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, -1320.35, 1778.66 ) LPos=( -90.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -87.94, -1320.35, 1778.66 ) LPos=( -87.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -87.94, -1323.41, 1773.79 ) LPos=( -87.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -96.56, -1324.94, 1771.36 ) LPos=( -96.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, -1324.94, 1771.36 ) LPos=( -93.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -99.44, -1326.47, 1768.92 ) LPos=( -99.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, -1326.47, 1768.92 ) LPos=( -96.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, -1326.47, 1768.92 ) LPos=( -93.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, -1329.54, 1764.06 ) LPos=( -102.31, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -99.44, -1329.54, 1764.06 ) LPos=( -99.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1314.62, 1787.75 ) LPos=( -62.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, -1314.62, 1787.75 ) LPos=( -71.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, -1314.62, 1787.75 ) LPos=( -74.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1314.62, 1787.75 ) LPos=( -80.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -59.94, -1313.09, 1790.19 ) LPos=( -59.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, -1313.09, 1790.19 ) LPos=( -62.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, -1313.09, 1790.19 ) LPos=( -74.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, -1313.09, 1790.19 ) LPos=( -77.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, -1311.55, 1792.62 ) LPos=( -65.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1311.55, 1792.62 ) LPos=( -74.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -77.19, -1311.55, 1792.62 ) LPos=( -77.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -59.94, -1310.02, 1795.05 ) LPos=( -59.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1310.02, 1795.05 ) LPos=( -71.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -77.19, -1310.02, 1795.05 ) LPos=( -77.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, -1310.02, 1795.05 ) LPos=( -80.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1308.49, 1797.48 ) LPos=( -80.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, -1305.43, 1802.35 ) LPos=( -74.31, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, -1303.89, 1804.78 ) LPos=( -65.69, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, -1303.89, 1804.78 ) LPos=( -68.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1328.01, 1766.49 ) LPos=( -80.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -77.19, -1328.01, 1766.49 ) LPos=( -77.19, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, -1321.88, 1776.22 ) LPos=( -77.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -71.44, -1329.54, 1764.06 ) LPos=( -71.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, -1321.88, 1776.22 ) LPos=( -71.44, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -71.44, -1318.81, 1781.09 ) LPos=( -71.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, -1329.54, 1764.06 ) LPos=( -68.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, -1328.01, 1766.49 ) LPos=( -68.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -68.56, -1326.47, 1768.92 ) LPos=( -68.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, -1318.81, 1781.09 ) LPos=( -68.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -65.69, -1329.54, 1764.06 ) LPos=( -65.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, -1328.01, 1766.49 ) LPos=( -65.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, -1324.94, 1771.36 ) LPos=( -65.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -65.69, -1318.81, 1781.09 ) LPos=( -65.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -59.94, -1326.47, 1768.92 ) LPos=( -59.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -31.94, -1303.89, 1804.78 ) LPos=( -31.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, -1305.43, 1802.35 ) LPos=( -31.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -31.94, -1310.02, 1795.05 ) LPos=( -31.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, -1311.55, 1792.62 ) LPos=( -31.94, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, -1305.43, 1802.35 ) LPos=( -34.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, -1314.62, 1787.75 ) LPos=( -43.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -46.31, -1313.09, 1790.19 ) LPos=( -46.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, -1314.62, 1787.75 ) LPos=( -46.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1305.43, 1802.35 ) LPos=( -49.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -49.19, -1308.49, 1797.48 ) LPos=( -49.19, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -52.06, -1306.96, 1799.92 ) LPos=( -52.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1314.62, 1787.75 ) LPos=( -52.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, -1318.81, 1781.09 ) LPos=( -52.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -40.56, -1318.81, 1781.09 ) LPos=( -40.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -34.81, -1318.81, 1781.09 ) LPos=( -34.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -49.19, -1320.35, 1778.66 ) LPos=( -49.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, -1320.35, 1778.66 ) LPos=( -43.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, -1320.35, 1778.66 ) LPos=( -37.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1320.35, 1778.66 ) LPos=( -34.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, -1320.35, 1778.66 ) LPos=( -31.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, -1321.88, 1776.22 ) LPos=( -49.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -40.56, -1321.88, 1776.22 ) LPos=( -40.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1321.88, 1776.22 ) LPos=( -37.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, -1321.88, 1776.22 ) LPos=( -34.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1323.41, 1773.79 ) LPos=( -49.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -34.81, -1323.41, 1773.79 ) LPos=( -34.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, -1324.94, 1771.36 ) LPos=( -52.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, -1324.94, 1771.36 ) LPos=( -31.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1328.01, 1766.49 ) LPos=( -43.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -37.69, -1328.01, 1766.49 ) LPos=( -37.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -34.81, -1328.01, 1766.49 ) LPos=( -34.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, -1329.54, 1764.06 ) LPos=( -52.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, -1329.54, 1764.06 ) LPos=( -43.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, -1329.54, 1764.06 ) LPos=( -40.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, -1329.54, 1764.06 ) LPos=( -34.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -31.94, -1329.54, 1764.06 ) LPos=( -31.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -12.56, -1314.62, 1787.75 ) LPos=( -12.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -15.44, -1314.62, 1787.75 ) LPos=( -15.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, -1314.62, 1787.75 ) LPos=( -24.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, -1313.09, 1790.19 ) LPos=( -9.69, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -15.44, -1313.09, 1790.19 ) LPos=( -15.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -18.31, -1313.09, 1790.19 ) LPos=( -18.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, -1313.09, 1790.19 ) LPos=( -24.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -21.19, -1311.55, 1792.62 ) LPos=( -21.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -6.81, -1310.02, 1795.05 ) LPos=( -6.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, -1310.02, 1795.05 ) LPos=( -12.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, -1310.02, 1795.05 ) LPos=( -18.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, -1308.49, 1797.48 ) LPos=( -6.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1308.49, 1797.48 ) LPos=( -12.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -15.44, -1308.49, 1797.48 ) LPos=( -15.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -18.31, -1308.49, 1797.48 ) LPos=( -18.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -6.81, -1306.96, 1799.92 ) LPos=( -6.81, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1306.96, 1799.92 ) LPos=( -9.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -12.56, -1306.96, 1799.92 ) LPos=( -12.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3.94, -1305.43, 1802.35 ) LPos=( -3.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1305.43, 1802.35 ) LPos=( -6.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -9.69, -1305.43, 1802.35 ) LPos=( -9.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, -1305.43, 1802.35 ) LPos=( -15.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, -1303.89, 1804.78 ) LPos=( -6.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, -1326.47, 1768.92 ) LPos=( -24.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, -1321.88, 1776.22 ) LPos=( -24.06, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -21.19, -1324.94, 1771.36 ) LPos=( -21.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -21.19, -1323.41, 1773.79 ) LPos=( -21.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1320.35, 1778.66 ) LPos=( -21.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1318.81, 1781.09 ) LPos=( -21.19, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, -1329.54, 1764.06 ) LPos=( -18.31, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1326.47, 1768.92 ) LPos=( -18.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -18.31, -1324.94, 1771.36 ) LPos=( -18.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -18.31, -1323.41, 1773.79 ) LPos=( -18.31, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, -1320.35, 1778.66 ) LPos=( -18.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, -1323.41, 1773.79 ) LPos=( -15.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1318.81, 1781.09 ) LPos=( -15.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, -1321.88, 1776.22 ) LPos=( -12.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1329.54, 1764.06 ) LPos=( -9.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, -1328.01, 1766.49 ) LPos=( -9.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1328.01, 1766.49 ) LPos=( -6.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, -1326.47, 1768.92 ) LPos=( -3.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3.94, -1318.81, 1781.09 ) LPos=( -3.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 24.06, -1303.89, 1804.78 ) LPos=( 24.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, -1305.43, 1802.35 ) LPos=( 24.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, -1306.96, 1799.92 ) LPos=( 24.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, -1310.02, 1795.05 ) LPos=( 24.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, -1311.55, 1792.62 ) LPos=( 24.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 24.06, -1313.09, 1790.19 ) LPos=( 24.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 21.19, -1310.02, 1795.05 ) LPos=( 21.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, -1311.55, 1792.62 ) LPos=( 21.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, -1313.09, 1790.19 ) LPos=( 21.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, -1303.89, 1804.78 ) LPos=( 18.31, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, -1306.96, 1799.92 ) LPos=( 18.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, -1308.49, 1797.48 ) LPos=( 18.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, -1310.02, 1795.05 ) LPos=( 18.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, -1313.09, 1790.19 ) LPos=( 18.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, -1314.62, 1787.75 ) LPos=( 18.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, -1303.89, 1804.78 ) LPos=( 15.44, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 15.44, -1305.43, 1802.35 ) LPos=( 15.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, -1314.62, 1787.75 ) LPos=( 15.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 12.56, -1313.09, 1790.19 ) LPos=( 12.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, -1314.62, 1787.75 ) LPos=( 12.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, -1308.49, 1797.48 ) LPos=( 9.69, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, -1311.55, 1792.62 ) LPos=( 9.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, -1303.89, 1804.78 ) LPos=( 6.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 6.81, -1308.49, 1797.48 ) LPos=( 6.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, -1310.02, 1795.05 ) LPos=( 6.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 6.81, -1311.55, 1792.62 ) LPos=( 6.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3.94, -1306.96, 1799.92 ) LPos=( 3.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, -1318.81, 1781.09 ) LPos=( 9.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, -1318.81, 1781.09 ) LPos=( 18.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, -1318.81, 1781.09 ) LPos=( 21.19, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, -1318.81, 1781.09 ) LPos=( 24.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, -1320.35, 1778.66 ) LPos=( 6.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1320.35, 1778.66 ) LPos=( 18.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, -1320.35, 1778.66 ) LPos=( 21.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1321.88, 1776.22 ) LPos=( 6.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, -1321.88, 1776.22 ) LPos=( 18.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, -1321.88, 1776.22 ) LPos=( 21.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, -1323.41, 1773.79 ) LPos=( 9.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, -1323.41, 1773.79 ) LPos=( 24.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, -1324.94, 1771.36 ) LPos=( 6.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1324.94, 1771.36 ) LPos=( 12.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 18.31, -1324.94, 1771.36 ) LPos=( 18.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, -1324.94, 1771.36 ) LPos=( 21.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, -1324.94, 1771.36 ) LPos=( 24.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3.94, -1326.47, 1768.92 ) LPos=( 3.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, -1326.47, 1768.92 ) LPos=( 12.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, -1326.47, 1768.92 ) LPos=( 18.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, -1326.47, 1768.92 ) LPos=( 21.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 9.69, -1328.01, 1766.49 ) LPos=( 9.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, -1328.01, 1766.49 ) LPos=( 12.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, -1328.01, 1766.49 ) LPos=( 18.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, -1328.01, 1766.49 ) LPos=( 21.19, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1329.54, 1764.06 ) LPos=( 3.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 9.69, -1329.54, 1764.06 ) LPos=( 9.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 15.44, -1329.54, 1764.06 ) LPos=( 15.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, -1314.62, 1787.75 ) LPos=( 46.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, -1314.62, 1787.75 ) LPos=( 34.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, -1314.62, 1787.75 ) LPos=( 31.94, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, -1313.09, 1790.19 ) LPos=( 34.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, -1311.55, 1792.62 ) LPos=( 52.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, -1311.55, 1792.62 ) LPos=( 46.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1311.55, 1792.62 ) LPos=( 37.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 34.81, -1311.55, 1792.62 ) LPos=( 34.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, -1310.02, 1795.05 ) LPos=( 52.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, -1310.02, 1795.05 ) LPos=( 34.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1310.02, 1795.05 ) LPos=( 31.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, -1308.49, 1797.48 ) LPos=( 52.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, -1305.43, 1802.35 ) LPos=( 37.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 31.94, -1329.54, 1764.06 ) LPos=( 31.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 31.94, -1324.94, 1771.36 ) LPos=( 31.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, -1323.41, 1773.79 ) LPos=( 31.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 31.94, -1321.88, 1776.22 ) LPos=( 31.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, -1323.41, 1773.79 ) LPos=( 34.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, -1318.81, 1781.09 ) LPos=( 34.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, -1328.01, 1766.49 ) LPos=( 37.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 37.69, -1326.47, 1768.92 ) LPos=( 37.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1321.88, 1776.22 ) LPos=( 37.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, -1326.47, 1768.92 ) LPos=( 40.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, -1321.88, 1776.22 ) LPos=( 40.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 43.44, -1326.47, 1768.92 ) LPos=( 43.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1324.94, 1771.36 ) LPos=( 43.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 43.44, -1323.41, 1773.79 ) LPos=( 43.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, -1329.54, 1764.06 ) LPos=( 46.31, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, -1324.94, 1771.36 ) LPos=( 46.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 46.31, -1323.41, 1773.79 ) LPos=( 46.31, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 49.19, -1329.54, 1764.06 ) LPos=( 49.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, -1324.94, 1771.36 ) LPos=( 49.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 49.19, -1323.41, 1773.79 ) LPos=( 49.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 49.19, -1321.88, 1776.22 ) LPos=( 49.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 49.19, -1320.35, 1778.66 ) LPos=( 49.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, -1329.54, 1764.06 ) LPos=( 52.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, -1328.01, 1766.49 ) LPos=( 52.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 80.06, -1310.02, 1795.05 ) LPos=( 80.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1311.55, 1792.62 ) LPos=( 77.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, -1306.96, 1799.92 ) LPos=( 74.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, -1308.49, 1797.48 ) LPos=( 74.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 68.56, -1305.43, 1802.35 ) LPos=( 68.56, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, -1306.96, 1799.92 ) LPos=( 68.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, -1303.89, 1804.78 ) LPos=( 65.69, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, -1314.62, 1787.75 ) LPos=( 65.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 62.81, -1311.55, 1792.62 ) LPos=( 62.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 59.94, -1310.02, 1795.05 ) LPos=( 59.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 71.44, -1318.81, 1781.09 ) LPos=( 71.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1318.81, 1781.09 ) LPos=( 80.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 62.81, -1320.35, 1778.66 ) LPos=( 62.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 65.69, -1320.35, 1778.66 ) LPos=( 65.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, -1320.35, 1778.66 ) LPos=( 71.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, -1321.88, 1776.22 ) LPos=( 59.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, -1323.41, 1773.79 ) LPos=( 62.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, -1323.41, 1773.79 ) LPos=( 65.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1323.41, 1773.79 ) LPos=( 80.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 62.81, -1324.94, 1771.36 ) LPos=( 62.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, -1324.94, 1771.36 ) LPos=( 65.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 62.81, -1326.47, 1768.92 ) LPos=( 62.81, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, -1326.47, 1768.92 ) LPos=( 71.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 59.94, -1328.01, 1766.49 ) LPos=( 59.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 68.56, -1328.01, 1766.49 ) LPos=( 68.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, -1314.62, 1787.75 ) LPos=( 105.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, -1314.62, 1787.75 ) LPos=( 90.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, -1314.62, 1787.75 ) LPos=( 87.94, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, -1313.09, 1790.19 ) LPos=( 102.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, -1313.09, 1790.19 ) LPos=( 96.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1311.55, 1792.62 ) LPos=( 102.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, -1311.55, 1792.62 ) LPos=( 96.56, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 90.81, -1311.55, 1792.62 ) LPos=( 90.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1310.02, 1795.05 ) LPos=( 96.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, -1310.02, 1795.05 ) LPos=( 90.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 87.94, -1306.96, 1799.92 ) LPos=( 87.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, -1305.43, 1802.35 ) LPos=( 102.31, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 99.44, -1305.43, 1802.35 ) LPos=( 99.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1305.43, 1802.35 ) LPos=( 90.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, -1324.94, 1771.36 ) LPos=( 87.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, -1323.41, 1773.79 ) LPos=( 87.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, -1321.88, 1776.22 ) LPos=( 87.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, -1318.81, 1781.09 ) LPos=( 87.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 90.81, -1328.01, 1766.49 ) LPos=( 90.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1320.35, 1778.66 ) LPos=( 90.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 90.81, -1318.81, 1781.09 ) LPos=( 90.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 93.69, -1329.54, 1764.06 ) LPos=( 93.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, -1326.47, 1768.92 ) LPos=( 93.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, -1323.41, 1773.79 ) LPos=( 93.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, -1321.88, 1776.22 ) LPos=( 93.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, -1326.47, 1768.92 ) LPos=( 96.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, -1329.54, 1764.06 ) LPos=( 99.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, -1328.01, 1766.49 ) LPos=( 99.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1324.94, 1771.36 ) LPos=( 99.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, -1323.41, 1773.79 ) LPos=( 99.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, -1320.35, 1778.66 ) LPos=( 99.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 102.31, -1328.01, 1766.49 ) LPos=( 102.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, -1324.94, 1771.36 ) LPos=( 102.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 102.31, -1321.88, 1776.22 ) LPos=( 102.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 105.19, -1329.54, 1764.06 ) LPos=( 105.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 105.19, -1328.01, 1766.49 ) LPos=( 105.19, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, -1324.94, 1771.36 ) LPos=( 105.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, -1323.41, 1773.79 ) LPos=( 105.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 108.06, -1328.01, 1766.49 ) LPos=( 108.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 136.06, -1303.89, 1804.78 ) LPos=( 136.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, -1311.55, 1792.62 ) LPos=( 133.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, -1313.09, 1790.19 ) LPos=( 133.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 130.31, -1306.96, 1799.92 ) LPos=( 130.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1311.55, 1792.62 ) LPos=( 130.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, -1313.09, 1790.19 ) LPos=( 130.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 130.31, -1314.62, 1787.75 ) LPos=( 130.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 127.44, -1306.96, 1799.92 ) LPos=( 127.44, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 127.44, -1308.49, 1797.48 ) LPos=( 127.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 127.44, -1311.55, 1792.62 ) LPos=( 127.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, -1313.09, 1790.19 ) LPos=( 127.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 127.44, -1314.62, 1787.75 ) LPos=( 127.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 124.56, -1303.89, 1804.78 ) LPos=( 124.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 124.56, -1306.96, 1799.92 ) LPos=( 124.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, -1308.49, 1797.48 ) LPos=( 124.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, -1310.02, 1795.05 ) LPos=( 124.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1314.62, 1787.75 ) LPos=( 124.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, -1311.55, 1792.62 ) LPos=( 121.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1305.43, 1802.35 ) LPos=( 118.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 121.69, -1318.81, 1781.09 ) LPos=( 121.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, -1318.81, 1781.09 ) LPos=( 136.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 121.69, -1320.35, 1778.66 ) LPos=( 121.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, -1320.35, 1778.66 ) LPos=( 127.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, -1321.88, 1776.22 ) LPos=( 121.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, -1323.41, 1773.79 ) LPos=( 118.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1323.41, 1773.79 ) LPos=( 127.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 133.19, -1323.41, 1773.79 ) LPos=( 133.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 136.06, -1323.41, 1773.79 ) LPos=( 136.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 130.31, -1324.94, 1771.36 ) LPos=( 130.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 133.19, -1324.94, 1771.36 ) LPos=( 133.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1326.47, 1768.92 ) LPos=( 115.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, -1326.47, 1768.92 ) LPos=( 130.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, -1326.47, 1768.92 ) LPos=( 136.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, -1328.01, 1766.49 ) LPos=( 115.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1328.01, 1766.49 ) LPos=( 118.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 121.69, -1328.01, 1766.49 ) LPos=( 121.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, -1328.01, 1766.49 ) LPos=( 124.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 127.44, -1328.01, 1766.49 ) LPos=( 127.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, -1328.01, 1766.49 ) LPos=( 130.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 118.81, -1329.54, 1764.06 ) LPos=( 118.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, -1329.54, 1764.06 ) LPos=( 121.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 155.44, -1314.62, 1787.75 ) LPos=( 155.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 164.06, -1313.09, 1790.19 ) LPos=( 164.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 155.44, -1313.09, 1790.19 ) LPos=( 155.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, -1313.09, 1790.19 ) LPos=( 149.69, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 146.81, -1313.09, 1790.19 ) LPos=( 146.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 143.94, -1313.09, 1790.19 ) LPos=( 143.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 164.06, -1311.55, 1792.62 ) LPos=( 164.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1310.02, 1795.05 ) LPos=( 161.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 158.31, -1310.02, 1795.05 ) LPos=( 158.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 155.44, -1310.02, 1795.05 ) LPos=( 155.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1310.02, 1795.05 ) LPos=( 152.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 152.56, -1308.49, 1797.48 ) LPos=( 152.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 164.06, -1306.96, 1799.92 ) LPos=( 164.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, -1306.96, 1799.92 ) LPos=( 158.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 152.56, -1306.96, 1799.92 ) LPos=( 152.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 164.06, -1305.43, 1802.35 ) LPos=( 164.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 152.56, -1303.89, 1804.78 ) LPos=( 152.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 152.56, -1324.94, 1771.36 ) LPos=( 152.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, -1321.88, 1776.22 ) LPos=( 152.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1328.01, 1766.49 ) LPos=( 155.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 155.44, -1324.94, 1771.36 ) LPos=( 155.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, -1323.41, 1773.79 ) LPos=( 155.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, -1320.35, 1778.66 ) LPos=( 155.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 155.44, -1318.81, 1781.09 ) LPos=( 155.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, -1326.47, 1768.92 ) LPos=( 158.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, -1324.94, 1771.36 ) LPos=( 158.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 161.19, -1326.47, 1768.92 ) LPos=( 161.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 164.06, -1320.35, 1778.66 ) LPos=( 164.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 192.06, -1310.02, 1795.05 ) LPos=( 192.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 192.06, -1313.09, 1790.19 ) LPos=( 192.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 189.19, -1305.43, 1802.35 ) LPos=( 189.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 189.19, -1311.55, 1792.62 ) LPos=( 189.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 186.31, -1310.02, 1795.05 ) LPos=( 186.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, -1311.55, 1792.62 ) LPos=( 186.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 183.44, -1311.55, 1792.62 ) LPos=( 183.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 183.44, -1313.09, 1790.19 ) LPos=( 183.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, -1305.43, 1802.35 ) LPos=( 174.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 180.56, -1320.35, 1778.66 ) LPos=( 180.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 192.06, -1321.88, 1776.22 ) LPos=( 192.06, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 192.06, -1324.94, 1771.36 ) LPos=( 192.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 192.06, -1326.47, 1768.92 ) LPos=( 192.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 177.69, -1328.01, 1766.49 ) LPos=( 177.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 180.56, -1328.01, 1766.49 ) LPos=( 180.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, -1329.54, 1764.06 ) LPos=( 171.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1314.62, 1787.75 ) LPos=( 217.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 214.31, -1314.62, 1787.75 ) LPos=( 214.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 214.31, -1313.09, 1790.19 ) LPos=( 214.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 208.56, -1313.09, 1790.19 ) LPos=( 208.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 214.31, -1310.02, 1795.05 ) LPos=( 214.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 202.81, -1310.02, 1795.05 ) LPos=( 202.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 202.81, -1306.96, 1799.92 ) LPos=( 202.81, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 211.44, -1303.89, 1804.78 ) LPos=( 211.44, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1323.41, 1773.79 ) LPos=( 202.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 211.44, -1318.81, 1781.09 ) LPos=( 211.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1314.62, 1787.75 ) LPos=( 248.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 245.19, -1310.02, 1795.05 ) LPos=( 245.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 233.69, -1314.62, 1787.75 ) LPos=( 233.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, -1320.35, 1778.66 ) LPos=( 233.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 239.44, -1320.35, 1778.66 ) LPos=( 239.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 239.44, -1321.88, 1776.22 ) LPos=( 239.44, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 230.81, -1328.01, 1766.49 ) LPos=( 230.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 236.56, -1328.01, 1766.49 ) LPos=( 236.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 261.69, -1314.62, 1787.75 ) LPos=( 261.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 261.69, -1310.02, 1795.05 ) LPos=( 261.69, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 255.94, -1310.02, 1795.05 ) LPos=( 255.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, -1308.49, 1797.48 ) LPos=( 264.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 273.19, -1306.96, 1799.92 ) LPos=( 273.19, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 267.44, -1306.96, 1799.92 ) LPos=( 267.44, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 264.56, -1306.96, 1799.92 ) LPos=( 264.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 267.44, -1305.43, 1802.35 ) LPos=( 267.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 264.56, -1305.43, 1802.35 ) LPos=( 264.56, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 255.94, -1323.41, 1773.79 ) LPos=( 255.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 255.94, -1320.35, 1778.66 ) LPos=( 255.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 258.81, -1329.54, 1764.06 ) LPos=( 258.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 264.56, -1328.01, 1766.49 ) LPos=( 264.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 264.56, -1326.47, 1768.92 ) LPos=( 264.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 264.56, -1324.94, 1771.36 ) LPos=( 264.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 264.56, -1323.41, 1773.79 ) LPos=( 264.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 276.06, -1326.47, 1768.92 ) LPos=( 276.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 304.06, -1308.49, 1797.48 ) LPos=( 304.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 304.06, -1313.09, 1790.19 ) LPos=( 304.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 295.44, -1303.89, 1804.78 ) LPos=( 295.44, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 292.56, -1311.55, 1792.62 ) LPos=( 292.56, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 289.69, -1303.89, 1804.78 ) LPos=( 289.69, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, -1306.96, 1799.92 ) LPos=( 289.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 289.69, -1311.55, 1792.62 ) LPos=( 289.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 286.81, -1310.02, 1795.05 ) LPos=( 286.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 286.81, -1313.09, 1790.19 ) LPos=( 286.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 283.94, -1310.02, 1795.05 ) LPos=( 283.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 292.56, -1324.94, 1771.36 ) LPos=( 292.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 298.31, -1324.94, 1771.36 ) LPos=( 298.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 304.06, -1324.94, 1771.36 ) LPos=( 304.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 295.44, -1326.47, 1768.92 ) LPos=( 295.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 329.19, -1314.62, 1787.75 ) LPos=( 329.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 326.31, -1314.62, 1787.75 ) LPos=( 326.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 317.69, -1314.62, 1787.75 ) LPos=( 317.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 332.06, -1308.49, 1797.48 ) LPos=( 332.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 329.19, -1308.49, 1797.48 ) LPos=( 329.19, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 311.94, -1320.35, 1778.66 ) LPos=( 311.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 314.81, -1324.94, 1771.36 ) LPos=( 314.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 314.81, -1321.88, 1776.22 ) LPos=( 314.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 317.69, -1323.41, 1773.79 ) LPos=( 317.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, -1323.41, 1773.79 ) LPos=( 320.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 323.44, -1318.81, 1781.09 ) LPos=( 323.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 326.31, -1321.88, 1776.22 ) LPos=( 326.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1329.54, 1764.06 ) LPos=( 332.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 332.06, -1323.41, 1773.79 ) LPos=( 332.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 360.06, -1311.55, 1792.62 ) LPos=( 360.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 357.19, -1310.02, 1795.05 ) LPos=( 357.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 354.31, -1303.89, 1804.78 ) LPos=( 354.31, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1305.43, 1802.35 ) LPos=( 342.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 339.94, -1306.96, 1799.92 ) LPos=( 339.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 339.94, -1310.02, 1795.05 ) LPos=( 339.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 339.94, -1313.09, 1790.19 ) LPos=( 339.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 354.31, -1318.81, 1781.09 ) LPos=( 354.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 351.44, -1320.35, 1778.66 ) LPos=( 351.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 348.56, -1323.41, 1773.79 ) LPos=( 348.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 354.31, -1323.41, 1773.79 ) LPos=( 354.31, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 357.19, -1323.41, 1773.79 ) LPos=( 357.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 348.56, -1324.94, 1771.36 ) LPos=( 348.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 357.19, -1324.94, 1771.36 ) LPos=( 357.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1328.01, 1766.49 ) LPos=( 342.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 360.06, -1328.01, 1766.49 ) LPos=( 360.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 348.56, -1329.54, 1764.06 ) LPos=( 348.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 385.19, -1314.62, 1787.75 ) LPos=( 385.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 385.19, -1308.49, 1797.48 ) LPos=( 385.19, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 367.94, -1303.89, 1804.78 ) LPos=( 367.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 367.94, -1329.54, 1764.06 ) LPos=( 367.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 367.94, -1323.41, 1773.79 ) LPos=( 367.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 367.94, -1320.35, 1778.66 ) LPos=( 367.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 373.69, -1323.41, 1773.79 ) LPos=( 373.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 373.69, -1320.35, 1778.66 ) LPos=( 373.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 376.56, -1324.94, 1771.36 ) LPos=( 376.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 376.56, -1320.35, 1778.66 ) LPos=( 376.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 379.44, -1320.35, 1778.66 ) LPos=( 379.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 382.31, -1326.47, 1768.92 ) LPos=( 382.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 382.31, -1321.88, 1776.22 ) LPos=( 382.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 382.31, -1320.35, 1778.66 ) LPos=( 382.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, -1318.81, 1781.09 ) LPos=( 382.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 388.06, -1318.81, 1781.09 ) LPos=( 388.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 416.06, -1306.96, 1799.92 ) LPos=( 416.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 410.31, -1310.02, 1795.05 ) LPos=( 410.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 401.69, -1310.02, 1795.05 ) LPos=( 401.69, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 398.81, -1303.89, 1804.78 ) LPos=( 398.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 398.81, -1308.49, 1797.48 ) LPos=( 398.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 416.06, -1320.35, 1778.66 ) LPos=( 416.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 395.94, -1323.41, 1773.79 ) LPos=( 395.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 398.81, -1323.41, 1773.79 ) LPos=( 398.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 413.19, -1326.47, 1768.92 ) LPos=( 413.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 410.31, -1328.01, 1766.49 ) LPos=( 410.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 401.69, -1329.54, 1764.06 ) LPos=( 401.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 404.56, -1329.54, 1764.06 ) LPos=( 404.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 407.44, -1329.54, 1764.06 ) LPos=( 407.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 413.19, -1329.54, 1764.06 ) LPos=( 413.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 438.31, -1311.55, 1792.62 ) LPos=( 438.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 426.81, -1328.01, 1766.49 ) LPos=( 426.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 426.81, -1324.94, 1771.36 ) LPos=( 426.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 466.31, -1314.62, 1787.75 ) LPos=( 466.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 451.94, -1313.09, 1790.19 ) LPos=( 451.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 451.94, -1320.35, 1778.66 ) LPos=( 451.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 472.06, -1320.35, 1778.66 ) LPos=( 472.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 469.19, -1321.88, 1776.22 ) LPos=( 469.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 454.81, -1323.41, 1773.79 ) LPos=( 454.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 454.81, -1328.01, 1766.49 ) LPos=( 454.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 494.31, -1310.02, 1795.05 ) LPos=( 494.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 482.81, -1306.96, 1799.92 ) LPos=( 482.81, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 500.06, -1305.43, 1802.35 ) LPos=( 500.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 482.81, -1303.89, 1804.78 ) LPos=( 482.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 485.69, -1323.41, 1773.79 ) LPos=( 485.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 510.81, -1311.55, 1792.62 ) LPos=( 510.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 550.31, -1310.02, 1795.05 ) LPos=( 550.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 544.56, -1310.02, 1795.05 ) LPos=( 544.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 547.44, -1308.49, 1797.48 ) LPos=( 547.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 538.81, -1323.41, 1773.79 ) LPos=( 538.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 541.69, -1329.54, 1764.06 ) LPos=( 541.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 541.69, -1326.47, 1768.92 ) LPos=( 541.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 544.56, -1320.35, 1778.66 ) LPos=( 544.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 553.19, -1321.88, 1776.22 ) LPos=( 553.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 581.19, -1313.09, 1790.19 ) LPos=( 581.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 578.31, -1308.49, 1797.48 ) LPos=( 578.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 575.44, -1310.02, 1795.05 ) LPos=( 575.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 606.31, -1311.55, 1792.62 ) LPos=( 606.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 594.81, -1311.55, 1792.62 ) LPos=( 594.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 591.94, -1311.55, 1792.62 ) LPos=( 591.94, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -566.81, -1273.79, 1852.59 ) LPos=( -566.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -584.06, -1273.79, 1852.59 ) LPos=( -584.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -513.69, -1284.51, 1835.56 ) LPos=( -513.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -460.56, -1279.91, 1842.86 ) LPos=( -460.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -457.69, -1299.43, 1811.87 ) LPos=( -457.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -429.69, -1279.91, 1842.86 ) LPos=( -429.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -444.06, -1276.85, 1847.73 ) LPos=( -444.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -438.31, -1293.30, 1821.60 ) LPos=( -438.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -432.56, -1299.43, 1811.87 ) LPos=( -432.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -404.56, -1278.38, 1845.29 ) LPos=( -404.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -401.69, -1273.79, 1852.59 ) LPos=( -401.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -388.06, -1291.77, 1824.03 ) LPos=( -388.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -354.31, -1299.43, 1811.87 ) LPos=( -354.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -323.44, -1284.51, 1835.56 ) LPos=( -323.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -295.44, -1273.79, 1852.59 ) LPos=( -295.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -258.81, -1273.79, 1852.59 ) LPos=( -258.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -261.69, -1279.91, 1842.86 ) LPos=( -261.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, -1279.91, 1842.86 ) LPos=( -264.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -270.31, -1276.85, 1847.73 ) LPos=( -270.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -276.06, -1275.32, 1850.16 ) LPos=( -276.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -273.19, -1291.77, 1824.03 ) LPos=( -273.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -276.06, -1294.83, 1819.17 ) LPos=( -276.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -261.69, -1299.43, 1811.87 ) LPos=( -261.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -245.19, -1284.51, 1835.56 ) LPos=( -245.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -248.06, -1284.51, 1835.56 ) LPos=( -248.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -227.94, -1279.91, 1842.86 ) LPos=( -227.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -227.94, -1276.85, 1847.73 ) LPos=( -227.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -242.31, -1276.85, 1847.73 ) LPos=( -242.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, -1275.32, 1850.16 ) LPos=( -236.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, -1275.32, 1850.16 ) LPos=( -245.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -239.44, -1273.79, 1852.59 ) LPos=( -239.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -242.31, -1273.79, 1852.59 ) LPos=( -242.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -245.19, -1273.79, 1852.59 ) LPos=( -245.19, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -248.06, -1273.79, 1852.59 ) LPos=( -248.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -242.31, -1299.43, 1811.87 ) LPos=( -242.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -239.44, -1299.43, 1811.87 ) LPos=( -239.44, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -236.56, -1299.43, 1811.87 ) LPos=( -236.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -236.56, -1293.30, 1821.60 ) LPos=( -236.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -233.69, -1299.43, 1811.87 ) LPos=( -233.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -233.69, -1297.90, 1814.30 ) LPos=( -233.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -230.81, -1293.30, 1821.60 ) LPos=( -230.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1299.43, 1811.87 ) LPos=( -227.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -227.94, -1297.90, 1814.30 ) LPos=( -227.94, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, -1294.83, 1819.17 ) LPos=( -227.94, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -227.94, -1291.77, 1824.03 ) LPos=( -227.94, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -199.94, -1276.85, 1847.73 ) LPos=( -199.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -202.81, -1281.45, 1840.43 ) LPos=( -202.81, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, -1281.45, 1840.43 ) LPos=( -205.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -211.44, -1279.91, 1842.86 ) LPos=( -211.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -211.44, -1284.51, 1835.56 ) LPos=( -211.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, -1288.71, 1828.90 ) LPos=( -214.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -211.44, -1288.71, 1828.90 ) LPos=( -211.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -205.69, -1288.71, 1828.90 ) LPos=( -205.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, -1290.24, 1826.47 ) LPos=( -214.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -217.19, -1291.77, 1824.03 ) LPos=( -217.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -214.31, -1291.77, 1824.03 ) LPos=( -214.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -211.44, -1294.83, 1819.17 ) LPos=( -211.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -202.81, -1294.83, 1819.17 ) LPos=( -202.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -202.81, -1296.37, 1816.73 ) LPos=( -202.81, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -199.94, -1296.37, 1816.73 ) LPos=( -199.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -202.81, -1297.90, 1814.30 ) LPos=( -202.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -217.19, -1299.43, 1811.87 ) LPos=( -217.19, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -189.19, -1284.51, 1835.56 ) LPos=( -189.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, -1284.51, 1835.56 ) LPos=( -192.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -183.44, -1282.98, 1838.00 ) LPos=( -183.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, -1282.98, 1838.00 ) LPos=( -189.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1281.45, 1840.43 ) LPos=( -183.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, -1279.91, 1842.86 ) LPos=( -183.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1278.38, 1845.29 ) LPos=( -180.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -186.31, -1278.38, 1845.29 ) LPos=( -186.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, -1278.38, 1845.29 ) LPos=( -192.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -177.69, -1275.32, 1850.16 ) LPos=( -177.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -192.06, -1299.43, 1811.87 ) LPos=( -192.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1293.30, 1821.60 ) LPos=( -189.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -189.19, -1288.71, 1828.90 ) LPos=( -189.19, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -186.31, -1297.90, 1814.30 ) LPos=( -186.31, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, -1296.37, 1816.73 ) LPos=( -186.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -186.31, -1294.83, 1819.17 ) LPos=( -186.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, -1293.30, 1821.60 ) LPos=( -186.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, -1290.24, 1826.47 ) LPos=( -186.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -183.44, -1299.43, 1811.87 ) LPos=( -183.44, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -183.44, -1294.83, 1819.17 ) LPos=( -183.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, -1293.30, 1821.60 ) LPos=( -183.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -183.44, -1290.24, 1826.47 ) LPos=( -183.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -180.56, -1296.37, 1816.73 ) LPos=( -180.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1294.83, 1819.17 ) LPos=( -180.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -180.56, -1293.30, 1821.60 ) LPos=( -180.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -180.56, -1291.77, 1824.03 ) LPos=( -180.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -177.69, -1297.90, 1814.30 ) LPos=( -177.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -174.81, -1297.90, 1814.30 ) LPos=( -174.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, -1296.37, 1816.73 ) LPos=( -171.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, -1294.83, 1819.17 ) LPos=( -171.94, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -143.94, -1281.45, 1840.43 ) LPos=( -143.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, -1282.98, 1838.00 ) LPos=( -143.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, -1284.51, 1835.56 ) LPos=( -143.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -149.69, -1275.32, 1850.16 ) LPos=( -149.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -149.69, -1282.98, 1838.00 ) LPos=( -149.69, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -152.56, -1273.79, 1852.59 ) LPos=( -152.56, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, -1282.98, 1838.00 ) LPos=( -152.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -155.44, -1279.91, 1842.86 ) LPos=( -155.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, -1281.45, 1840.43 ) LPos=( -155.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -155.44, -1284.51, 1835.56 ) LPos=( -155.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, -1275.32, 1850.16 ) LPos=( -158.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, -1276.85, 1847.73 ) LPos=( -158.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -158.31, -1281.45, 1840.43 ) LPos=( -158.31, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -158.31, -1282.98, 1838.00 ) LPos=( -158.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -161.19, -1273.79, 1852.59 ) LPos=( -161.19, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -161.19, -1282.98, 1838.00 ) LPos=( -161.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -161.19, -1284.51, 1835.56 ) LPos=( -161.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -164.06, -1278.38, 1845.29 ) LPos=( -164.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -164.06, -1279.91, 1842.86 ) LPos=( -164.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, -1288.71, 1828.90 ) LPos=( -164.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1288.71, 1828.90 ) LPos=( -155.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -149.69, -1288.71, 1828.90 ) LPos=( -149.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -146.81, -1288.71, 1828.90 ) LPos=( -146.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, -1288.71, 1828.90 ) LPos=( -143.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, -1290.24, 1826.47 ) LPos=( -164.06, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -161.19, -1290.24, 1826.47 ) LPos=( -161.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, -1290.24, 1826.47 ) LPos=( -158.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -155.44, -1290.24, 1826.47 ) LPos=( -155.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -161.19, -1291.77, 1824.03 ) LPos=( -161.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, -1291.77, 1824.03 ) LPos=( -158.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -149.69, -1291.77, 1824.03 ) LPos=( -149.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, -1291.77, 1824.03 ) LPos=( -146.81, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -161.19, -1293.30, 1821.60 ) LPos=( -161.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -161.19, -1294.83, 1819.17 ) LPos=( -161.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, -1294.83, 1819.17 ) LPos=( -155.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -152.56, -1294.83, 1819.17 ) LPos=( -152.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -155.44, -1296.37, 1816.73 ) LPos=( -155.44, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -155.44, -1297.90, 1814.30 ) LPos=( -155.44, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -149.69, -1297.90, 1814.30 ) LPos=( -149.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -152.56, -1299.43, 1811.87 ) LPos=( -152.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1284.51, 1835.56 ) LPos=( -121.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -124.56, -1284.51, 1835.56 ) LPos=( -124.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -127.44, -1284.51, 1835.56 ) LPos=( -127.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -130.31, -1284.51, 1835.56 ) LPos=( -130.31, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1284.51, 1835.56 ) LPos=( -133.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -115.94, -1282.98, 1838.00 ) LPos=( -115.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, -1282.98, 1838.00 ) LPos=( -118.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -136.06, -1282.98, 1838.00 ) LPos=( -136.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -115.94, -1281.45, 1840.43 ) LPos=( -115.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -133.19, -1281.45, 1840.43 ) LPos=( -133.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -115.94, -1279.91, 1842.86 ) LPos=( -115.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -118.81, -1279.91, 1842.86 ) LPos=( -118.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, -1279.91, 1842.86 ) LPos=( -124.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, -1279.91, 1842.86 ) LPos=( -127.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -133.19, -1279.91, 1842.86 ) LPos=( -133.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -127.44, -1276.85, 1847.73 ) LPos=( -127.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -121.69, -1275.32, 1850.16 ) LPos=( -121.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -124.56, -1275.32, 1850.16 ) LPos=( -124.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, -1275.32, 1850.16 ) LPos=( -130.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, -1275.32, 1850.16 ) LPos=( -133.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, -1294.83, 1819.17 ) LPos=( -136.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -136.06, -1291.77, 1824.03 ) LPos=( -136.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1290.24, 1826.47 ) LPos=( -133.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -121.69, -1291.77, 1824.03 ) LPos=( -121.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, -1288.71, 1828.90 ) LPos=( -118.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, -1288.71, 1828.90 ) LPos=( -115.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, -1279.91, 1842.86 ) LPos=( -87.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, -1278.38, 1845.29 ) LPos=( -93.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -93.69, -1279.91, 1842.86 ) LPos=( -93.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1281.45, 1840.43 ) LPos=( -93.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -99.44, -1284.51, 1835.56 ) LPos=( -99.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1276.85, 1847.73 ) LPos=( -102.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, -1281.45, 1840.43 ) LPos=( -102.31, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1281.45, 1840.43 ) LPos=( -105.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, -1276.85, 1847.73 ) LPos=( -108.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, -1279.91, 1842.86 ) LPos=( -108.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, -1281.45, 1840.43 ) LPos=( -108.06, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, -1288.71, 1828.90 ) LPos=( -102.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -105.19, -1290.24, 1826.47 ) LPos=( -105.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -99.44, -1290.24, 1826.47 ) LPos=( -99.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -96.56, -1290.24, 1826.47 ) LPos=( -96.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, -1290.24, 1826.47 ) LPos=( -93.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, -1291.77, 1824.03 ) LPos=( -99.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -87.94, -1291.77, 1824.03 ) LPos=( -87.94, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, -1293.30, 1821.60 ) LPos=( -90.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -102.31, -1294.83, 1819.17 ) LPos=( -102.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1294.83, 1819.17 ) LPos=( -99.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -90.81, -1294.83, 1819.17 ) LPos=( -90.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -87.94, -1294.83, 1819.17 ) LPos=( -87.94, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1296.37, 1816.73 ) LPos=( -102.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, -1296.37, 1816.73 ) LPos=( -96.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, -1296.37, 1816.73 ) LPos=( -93.69, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -90.81, -1296.37, 1816.73 ) LPos=( -90.81, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -96.56, -1297.90, 1814.30 ) LPos=( -96.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -93.69, -1297.90, 1814.30 ) LPos=( -93.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -87.94, -1299.43, 1811.87 ) LPos=( -87.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, -1284.51, 1835.56 ) LPos=( -71.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -77.19, -1284.51, 1835.56 ) LPos=( -77.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1284.51, 1835.56 ) LPos=( -80.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -65.69, -1282.98, 1838.00 ) LPos=( -65.69, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, -1282.98, 1838.00 ) LPos=( -71.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, -1282.98, 1838.00 ) LPos=( -74.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, -1282.98, 1838.00 ) LPos=( -77.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -80.06, -1282.98, 1838.00 ) LPos=( -80.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, -1281.45, 1840.43 ) LPos=( -80.06, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -65.69, -1279.91, 1842.86 ) LPos=( -65.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, -1278.38, 1845.29 ) LPos=( -62.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, -1278.38, 1845.29 ) LPos=( -65.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, -1278.38, 1845.29 ) LPos=( -68.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, -1278.38, 1845.29 ) LPos=( -77.19, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1278.38, 1845.29 ) LPos=( -80.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, -1276.85, 1847.73 ) LPos=( -62.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, -1273.79, 1852.59 ) LPos=( -65.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, -1273.79, 1852.59 ) LPos=( -68.56, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -71.44, -1273.79, 1852.59 ) LPos=( -71.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -74.31, -1273.79, 1852.59 ) LPos=( -74.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1288.71, 1828.90 ) LPos=( -80.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, -1291.77, 1824.03 ) LPos=( -77.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, -1290.24, 1826.47 ) LPos=( -77.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, -1296.37, 1816.73 ) LPos=( -74.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -74.31, -1294.83, 1819.17 ) LPos=( -74.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1291.77, 1824.03 ) LPos=( -74.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, -1288.71, 1828.90 ) LPos=( -74.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -71.44, -1296.37, 1816.73 ) LPos=( -71.44, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1293.30, 1821.60 ) LPos=( -71.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, -1291.77, 1824.03 ) LPos=( -71.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -71.44, -1290.24, 1826.47 ) LPos=( -71.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -68.56, -1296.37, 1816.73 ) LPos=( -68.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -68.56, -1291.77, 1824.03 ) LPos=( -68.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -65.69, -1290.24, 1826.47 ) LPos=( -65.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -62.81, -1299.43, 1811.87 ) LPos=( -62.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -62.81, -1291.77, 1824.03 ) LPos=( -62.81, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -59.94, -1299.43, 1811.87 ) LPos=( -59.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, -1290.24, 1826.47 ) LPos=( -59.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -59.94, -1288.71, 1828.90 ) LPos=( -59.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, -1278.38, 1845.29 ) LPos=( -31.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -31.94, -1282.98, 1838.00 ) LPos=( -31.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, -1284.51, 1835.56 ) LPos=( -31.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, -1273.79, 1852.59 ) LPos=( -34.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, -1275.32, 1850.16 ) LPos=( -34.81, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -34.81, -1279.91, 1842.86 ) LPos=( -34.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, -1281.45, 1840.43 ) LPos=( -34.81, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1282.98, 1838.00 ) LPos=( -34.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, -1284.51, 1835.56 ) LPos=( -34.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1273.79, 1852.59 ) LPos=( -37.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -37.69, -1275.32, 1850.16 ) LPos=( -37.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -37.69, -1276.85, 1847.73 ) LPos=( -37.69, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -37.69, -1279.91, 1842.86 ) LPos=( -37.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, -1281.45, 1840.43 ) LPos=( -40.56, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, -1273.79, 1852.59 ) LPos=( -43.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -43.44, -1275.32, 1850.16 ) LPos=( -43.44, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, -1276.85, 1847.73 ) LPos=( -43.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, -1281.45, 1840.43 ) LPos=( -43.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -46.31, -1273.79, 1852.59 ) LPos=( -46.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1281.45, 1840.43 ) LPos=( -46.31, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, -1281.45, 1840.43 ) LPos=( -49.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, -1275.32, 1850.16 ) LPos=( -52.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1284.51, 1835.56 ) LPos=( -52.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, -1290.24, 1826.47 ) LPos=( -37.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, -1290.24, 1826.47 ) LPos=( -31.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, -1291.77, 1824.03 ) LPos=( -49.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, -1291.77, 1824.03 ) LPos=( -43.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -40.56, -1291.77, 1824.03 ) LPos=( -40.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1291.77, 1824.03 ) LPos=( -37.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -52.06, -1293.30, 1821.60 ) LPos=( -52.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1293.30, 1821.60 ) LPos=( -49.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, -1293.30, 1821.60 ) LPos=( -43.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -34.81, -1293.30, 1821.60 ) LPos=( -34.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, -1294.83, 1819.17 ) LPos=( -46.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, -1296.37, 1816.73 ) LPos=( -46.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -43.44, -1296.37, 1816.73 ) LPos=( -43.44, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -31.94, -1296.37, 1816.73 ) LPos=( -31.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1297.90, 1814.30 ) LPos=( -43.44, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, -1297.90, 1814.30 ) LPos=( -31.94, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -37.69, -1299.43, 1811.87 ) LPos=( -37.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, -1299.43, 1811.87 ) LPos=( -34.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, -1284.51, 1835.56 ) LPos=( -9.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -12.56, -1282.98, 1838.00 ) LPos=( -12.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, -1282.98, 1838.00 ) LPos=( -24.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, -1281.45, 1840.43 ) LPos=( -15.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -9.69, -1279.91, 1842.86 ) LPos=( -9.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, -1279.91, 1842.86 ) LPos=( -21.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, -1278.38, 1845.29 ) LPos=( -24.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -24.06, -1276.85, 1847.73 ) LPos=( -24.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, -1273.79, 1852.59 ) LPos=( -24.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, -1294.83, 1819.17 ) LPos=( -24.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, -1293.30, 1821.60 ) LPos=( -24.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -21.19, -1294.83, 1819.17 ) LPos=( -21.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -21.19, -1293.30, 1821.60 ) LPos=( -21.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1290.24, 1826.47 ) LPos=( -21.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1288.71, 1828.90 ) LPos=( -21.19, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -12.56, -1299.43, 1811.87 ) LPos=( -12.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -12.56, -1297.90, 1814.30 ) LPos=( -12.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -12.56, -1296.37, 1816.73 ) LPos=( -12.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -12.56, -1290.24, 1826.47 ) LPos=( -12.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1299.43, 1811.87 ) LPos=( -9.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1297.90, 1814.30 ) LPos=( -6.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -6.81, -1293.30, 1821.60 ) LPos=( -6.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, -1296.37, 1816.73 ) LPos=( -3.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, -1278.38, 1845.29 ) LPos=( 24.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, -1275.32, 1850.16 ) LPos=( 21.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 21.19, -1276.85, 1847.73 ) LPos=( 21.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, -1278.38, 1845.29 ) LPos=( 18.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, -1282.98, 1838.00 ) LPos=( 18.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, -1276.85, 1847.73 ) LPos=( 15.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 15.44, -1278.38, 1845.29 ) LPos=( 15.44, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, -1284.51, 1835.56 ) LPos=( 15.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, -1275.32, 1850.16 ) LPos=( 12.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1278.38, 1845.29 ) LPos=( 12.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, -1279.91, 1842.86 ) LPos=( 12.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 12.56, -1282.98, 1838.00 ) LPos=( 12.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, -1284.51, 1835.56 ) LPos=( 12.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, -1273.79, 1852.59 ) LPos=( 9.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 6.81, -1278.38, 1845.29 ) LPos=( 6.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, -1279.91, 1842.86 ) LPos=( 6.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 6.81, -1284.51, 1835.56 ) LPos=( 6.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1273.79, 1852.59 ) LPos=( 3.94, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3.94, -1284.51, 1835.56 ) LPos=( 3.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, -1288.71, 1828.90 ) LPos=( 6.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, -1288.71, 1828.90 ) LPos=( 9.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 15.44, -1288.71, 1828.90 ) LPos=( 15.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, -1290.24, 1826.47 ) LPos=( 3.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, -1290.24, 1826.47 ) LPos=( 9.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, -1290.24, 1826.47 ) LPos=( 15.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1290.24, 1826.47 ) LPos=( 18.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, -1290.24, 1826.47 ) LPos=( 21.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1291.77, 1824.03 ) LPos=( 6.81, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, -1291.77, 1824.03 ) LPos=( 12.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, -1291.77, 1824.03 ) LPos=( 15.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, -1291.77, 1824.03 ) LPos=( 24.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 6.81, -1293.30, 1821.60 ) LPos=( 6.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 18.31, -1293.30, 1821.60 ) LPos=( 18.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, -1294.83, 1819.17 ) LPos=( 6.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1294.83, 1819.17 ) LPos=( 12.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 18.31, -1294.83, 1819.17 ) LPos=( 18.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, -1294.83, 1819.17 ) LPos=( 21.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, -1296.37, 1816.73 ) LPos=( 12.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, -1296.37, 1816.73 ) LPos=( 18.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, -1296.37, 1816.73 ) LPos=( 24.06, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 9.69, -1297.90, 1814.30 ) LPos=( 9.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, -1297.90, 1814.30 ) LPos=( 12.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, -1297.90, 1814.30 ) LPos=( 18.31, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1299.43, 1811.87 ) LPos=( 3.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 6.81, -1299.43, 1811.87 ) LPos=( 6.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 12.56, -1299.43, 1811.87 ) LPos=( 12.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, -1282.98, 1838.00 ) LPos=( 34.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 31.94, -1281.45, 1840.43 ) LPos=( 31.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, -1279.91, 1842.86 ) LPos=( 34.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1279.91, 1842.86 ) LPos=( 31.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, -1278.38, 1845.29 ) LPos=( 46.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1278.38, 1845.29 ) LPos=( 43.44, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 37.69, -1278.38, 1845.29 ) LPos=( 37.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 34.81, -1278.38, 1845.29 ) LPos=( 34.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, -1278.38, 1845.29 ) LPos=( 31.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, -1276.85, 1847.73 ) LPos=( 37.69, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 34.81, -1276.85, 1847.73 ) LPos=( 34.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 52.06, -1275.32, 1850.16 ) LPos=( 52.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, -1275.32, 1850.16 ) LPos=( 40.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, -1275.32, 1850.16 ) LPos=( 37.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, -1293.30, 1821.60 ) LPos=( 34.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 37.69, -1294.83, 1819.17 ) LPos=( 37.69, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, -1297.90, 1814.30 ) LPos=( 40.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 40.56, -1294.83, 1819.17 ) LPos=( 40.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 46.31, -1297.90, 1814.30 ) LPos=( 46.31, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, -1299.43, 1811.87 ) LPos=( 52.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, -1297.90, 1814.30 ) LPos=( 52.06, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 52.06, -1294.83, 1819.17 ) LPos=( 52.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, -1293.30, 1821.60 ) LPos=( 52.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 80.06, -1278.38, 1845.29 ) LPos=( 80.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1284.51, 1835.56 ) LPos=( 80.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 77.19, -1276.85, 1847.73 ) LPos=( 77.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, -1279.91, 1842.86 ) LPos=( 77.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1281.45, 1840.43 ) LPos=( 77.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, -1273.79, 1852.59 ) LPos=( 71.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, -1276.85, 1847.73 ) LPos=( 68.56, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, -1279.91, 1842.86 ) LPos=( 68.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 68.56, -1282.98, 1838.00 ) LPos=( 68.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 65.69, -1282.98, 1838.00 ) LPos=( 65.69, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, -1276.85, 1847.73 ) LPos=( 59.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1281.45, 1840.43 ) LPos=( 59.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, -1282.98, 1838.00 ) LPos=( 59.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 59.94, -1284.51, 1835.56 ) LPos=( 59.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, -1288.71, 1828.90 ) LPos=( 62.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, -1288.71, 1828.90 ) LPos=( 68.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1291.77, 1824.03 ) LPos=( 80.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, -1293.30, 1821.60 ) LPos=( 62.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, -1293.30, 1821.60 ) LPos=( 74.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1293.30, 1821.60 ) LPos=( 80.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 80.06, -1294.83, 1819.17 ) LPos=( 80.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 80.06, -1297.90, 1814.30 ) LPos=( 80.06, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, -1299.43, 1811.87 ) LPos=( 62.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, -1284.51, 1835.56 ) LPos=( 93.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, -1284.51, 1835.56 ) LPos=( 90.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, -1279.91, 1842.86 ) LPos=( 108.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, -1278.38, 1845.29 ) LPos=( 102.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, -1278.38, 1845.29 ) LPos=( 93.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, -1276.85, 1847.73 ) LPos=( 99.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 96.56, -1276.85, 1847.73 ) LPos=( 96.56, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 90.81, -1276.85, 1847.73 ) LPos=( 90.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, -1275.32, 1850.16 ) LPos=( 102.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1275.32, 1850.16 ) LPos=( 90.81, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, -1273.79, 1852.59 ) LPos=( 102.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 87.94, -1273.79, 1852.59 ) LPos=( 87.94, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, -1299.43, 1811.87 ) LPos=( 87.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, -1290.24, 1826.47 ) LPos=( 87.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, -1288.71, 1828.90 ) LPos=( 93.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1293.30, 1821.60 ) LPos=( 96.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1294.83, 1819.17 ) LPos=( 99.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, -1293.30, 1821.60 ) LPos=( 99.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 99.44, -1288.71, 1828.90 ) LPos=( 99.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 102.31, -1299.43, 1811.87 ) LPos=( 102.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 105.19, -1296.37, 1816.73 ) LPos=( 105.19, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 105.19, -1291.77, 1824.03 ) LPos=( 105.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1288.71, 1828.90 ) LPos=( 105.19, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, -1299.43, 1811.87 ) LPos=( 108.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 133.19, -1279.91, 1842.86 ) LPos=( 133.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 133.19, -1284.51, 1835.56 ) LPos=( 133.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, -1282.98, 1838.00 ) LPos=( 127.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1284.51, 1835.56 ) LPos=( 124.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, -1281.45, 1840.43 ) LPos=( 121.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 118.81, -1282.98, 1838.00 ) LPos=( 118.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, -1281.45, 1840.43 ) LPos=( 115.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, -1282.98, 1838.00 ) LPos=( 115.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, -1288.71, 1828.90 ) LPos=( 118.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, -1288.71, 1828.90 ) LPos=( 127.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, -1288.71, 1828.90 ) LPos=( 130.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, -1290.24, 1826.47 ) LPos=( 133.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, -1291.77, 1824.03 ) LPos=( 121.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, -1291.77, 1824.03 ) LPos=( 124.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, -1293.30, 1821.60 ) LPos=( 121.69, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1293.30, 1821.60 ) LPos=( 127.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, -1293.30, 1821.60 ) LPos=( 130.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, -1294.83, 1819.17 ) LPos=( 136.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1296.37, 1816.73 ) LPos=( 115.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, -1296.37, 1816.73 ) LPos=( 136.06, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1297.90, 1814.30 ) LPos=( 118.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 124.56, -1299.43, 1811.87 ) LPos=( 124.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, -1299.43, 1811.87 ) LPos=( 133.19, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 136.06, -1299.43, 1811.87 ) LPos=( 136.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, -1284.51, 1835.56 ) LPos=( 152.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 146.81, -1282.98, 1838.00 ) LPos=( 146.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 155.44, -1281.45, 1840.43 ) LPos=( 155.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1279.91, 1842.86 ) LPos=( 161.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 158.31, -1279.91, 1842.86 ) LPos=( 158.31, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1279.91, 1842.86 ) LPos=( 152.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 164.06, -1278.38, 1845.29 ) LPos=( 164.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 143.94, -1278.38, 1845.29 ) LPos=( 143.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 164.06, -1276.85, 1847.73 ) LPos=( 164.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 155.44, -1276.85, 1847.73 ) LPos=( 155.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 146.81, -1276.85, 1847.73 ) LPos=( 146.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1275.32, 1850.16 ) LPos=( 143.94, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 158.31, -1273.79, 1852.59 ) LPos=( 158.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 146.81, -1273.79, 1852.59 ) LPos=( 146.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 146.81, -1299.43, 1811.87 ) LPos=( 146.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 146.81, -1294.83, 1819.17 ) LPos=( 146.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 149.69, -1293.30, 1821.60 ) LPos=( 149.69, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, -1299.43, 1811.87 ) LPos=( 152.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 152.56, -1294.83, 1819.17 ) LPos=( 152.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1293.30, 1821.60 ) LPos=( 152.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 152.56, -1290.24, 1826.47 ) LPos=( 152.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 152.56, -1288.71, 1828.90 ) LPos=( 152.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1297.90, 1814.30 ) LPos=( 155.44, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, -1293.30, 1821.60 ) LPos=( 155.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 155.44, -1288.71, 1828.90 ) LPos=( 155.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 158.31, -1299.43, 1811.87 ) LPos=( 158.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, -1279.91, 1842.86 ) LPos=( 183.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, -1278.38, 1845.29 ) LPos=( 177.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, -1288.71, 1828.90 ) LPos=( 171.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 174.81, -1288.71, 1828.90 ) LPos=( 174.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, -1288.71, 1828.90 ) LPos=( 192.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 174.81, -1294.83, 1819.17 ) LPos=( 174.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, -1297.90, 1814.30 ) LPos=( 174.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, -1299.43, 1811.87 ) LPos=( 174.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1284.51, 1835.56 ) LPos=( 217.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 214.31, -1282.98, 1838.00 ) LPos=( 214.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 211.44, -1282.98, 1838.00 ) LPos=( 211.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 202.81, -1282.98, 1838.00 ) LPos=( 202.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, -1281.45, 1840.43 ) LPos=( 217.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 202.81, -1279.91, 1842.86 ) LPos=( 202.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, -1278.38, 1845.29 ) LPos=( 211.44, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 205.69, -1278.38, 1845.29 ) LPos=( 205.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 199.94, -1278.38, 1845.29 ) LPos=( 199.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 214.31, -1276.85, 1847.73 ) LPos=( 214.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 199.94, -1276.85, 1847.73 ) LPos=( 199.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, -1275.32, 1850.16 ) LPos=( 217.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 205.69, -1275.32, 1850.16 ) LPos=( 205.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1273.79, 1852.59 ) LPos=( 220.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 211.44, -1273.79, 1852.59 ) LPos=( 211.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, -1299.43, 1811.87 ) LPos=( 199.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 199.94, -1293.30, 1821.60 ) LPos=( 199.94, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1293.30, 1821.60 ) LPos=( 202.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 205.69, -1297.90, 1814.30 ) LPos=( 205.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 205.69, -1290.24, 1826.47 ) LPos=( 205.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 208.56, -1294.83, 1819.17 ) LPos=( 208.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 208.56, -1290.24, 1826.47 ) LPos=( 208.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 208.56, -1288.71, 1828.90 ) LPos=( 208.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, -1294.83, 1819.17 ) LPos=( 211.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 214.31, -1288.71, 1828.90 ) LPos=( 214.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 217.19, -1294.83, 1819.17 ) LPos=( 217.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 217.19, -1291.77, 1824.03 ) LPos=( 217.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1299.43, 1811.87 ) LPos=( 220.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 220.06, -1294.83, 1819.17 ) LPos=( 220.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 248.06, -1273.79, 1852.59 ) LPos=( 248.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, -1278.38, 1845.29 ) LPos=( 248.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, -1282.98, 1838.00 ) LPos=( 248.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1284.51, 1835.56 ) LPos=( 248.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 245.19, -1276.85, 1847.73 ) LPos=( 245.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 242.31, -1278.38, 1845.29 ) LPos=( 242.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 239.44, -1281.45, 1840.43 ) LPos=( 239.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 236.56, -1276.85, 1847.73 ) LPos=( 236.56, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 236.56, -1279.91, 1842.86 ) LPos=( 236.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 236.56, -1284.51, 1835.56 ) LPos=( 236.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 233.69, -1281.45, 1840.43 ) LPos=( 233.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 227.94, -1278.38, 1845.29 ) LPos=( 227.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 227.94, -1288.71, 1828.90 ) LPos=( 227.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, -1290.24, 1826.47 ) LPos=( 227.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 242.31, -1290.24, 1826.47 ) LPos=( 242.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 248.06, -1291.77, 1824.03 ) LPos=( 248.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 236.56, -1293.30, 1821.60 ) LPos=( 236.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 245.19, -1293.30, 1821.60 ) LPos=( 245.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 239.44, -1299.43, 1811.87 ) LPos=( 239.44, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 276.06, -1279.91, 1842.86 ) LPos=( 276.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 276.06, -1275.32, 1850.16 ) LPos=( 276.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, -1275.32, 1850.16 ) LPos=( 273.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 270.31, -1275.32, 1850.16 ) LPos=( 270.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 255.94, -1273.79, 1852.59 ) LPos=( 255.94, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, -1293.30, 1821.60 ) LPos=( 261.69, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 261.69, -1288.71, 1828.90 ) LPos=( 261.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 270.31, -1291.77, 1824.03 ) LPos=( 270.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 273.19, -1291.77, 1824.03 ) LPos=( 273.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 301.19, -1282.98, 1838.00 ) LPos=( 301.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 298.31, -1278.38, 1845.29 ) LPos=( 298.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 292.56, -1281.45, 1840.43 ) LPos=( 292.56, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, -1276.85, 1847.73 ) LPos=( 289.69, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 289.69, -1278.38, 1845.29 ) LPos=( 289.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 286.81, -1281.45, 1840.43 ) LPos=( 286.81, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 283.94, -1281.45, 1840.43 ) LPos=( 283.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 283.94, -1288.71, 1828.90 ) LPos=( 283.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, -1288.71, 1828.90 ) LPos=( 304.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 286.81, -1297.90, 1814.30 ) LPos=( 286.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 286.81, -1299.43, 1811.87 ) LPos=( 286.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 301.19, -1299.43, 1811.87 ) LPos=( 301.19, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 304.06, -1299.43, 1811.87 ) LPos=( 304.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 329.19, -1281.45, 1840.43 ) LPos=( 329.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 326.31, -1279.91, 1842.86 ) LPos=( 326.31, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 317.69, -1279.91, 1842.86 ) LPos=( 317.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 317.69, -1278.38, 1845.29 ) LPos=( 317.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 323.44, -1273.79, 1852.59 ) LPos=( 323.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 311.94, -1293.30, 1821.60 ) LPos=( 311.94, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, -1297.90, 1814.30 ) LPos=( 314.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1299.43, 1811.87 ) LPos=( 332.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 332.06, -1294.83, 1819.17 ) LPos=( 332.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 332.06, -1290.24, 1826.47 ) LPos=( 332.06, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, -1275.32, 1850.16 ) LPos=( 360.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 342.81, -1278.38, 1845.29 ) LPos=( 342.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 339.94, -1278.38, 1845.29 ) LPos=( 339.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 339.94, -1279.91, 1842.86 ) LPos=( 339.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 351.44, -1291.77, 1824.03 ) LPos=( 351.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 345.69, -1296.37, 1816.73 ) LPos=( 345.69, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 348.56, -1296.37, 1816.73 ) LPos=( 348.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 376.56, -1282.98, 1838.00 ) LPos=( 376.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 376.56, -1281.45, 1840.43 ) LPos=( 376.56, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 382.31, -1279.91, 1842.86 ) LPos=( 382.31, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 367.94, -1278.38, 1845.29 ) LPos=( 367.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 382.31, -1294.83, 1819.17 ) LPos=( 382.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 382.31, -1293.30, 1821.60 ) LPos=( 382.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 385.19, -1296.37, 1816.73 ) LPos=( 385.19, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 401.69, -1284.51, 1835.56 ) LPos=( 401.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 407.44, -1290.24, 1826.47 ) LPos=( 407.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 401.69, -1291.77, 1824.03 ) LPos=( 401.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 404.56, -1299.43, 1811.87 ) LPos=( 404.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 435.44, -1282.98, 1838.00 ) LPos=( 435.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 423.94, -1297.90, 1814.30 ) LPos=( 423.94, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 426.81, -1299.43, 1811.87 ) LPos=( 426.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 432.56, -1290.24, 1826.47 ) LPos=( 432.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 432.56, -1288.71, 1828.90 ) LPos=( 432.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 472.06, -1290.24, 1826.47 ) LPos=( 472.06, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 457.69, -1299.43, 1811.87 ) LPos=( 457.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 510.81, -1275.32, 1850.16 ) LPos=( 510.81, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 510.81, -1284.51, 1835.56 ) LPos=( 510.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 507.94, -1284.51, 1835.56 ) LPos=( 507.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 528.06, -1294.83, 1819.17 ) LPos=( 528.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 507.94, -1296.37, 1816.73 ) LPos=( 507.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 525.19, -1296.37, 1816.73 ) LPos=( 525.19, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 513.69, -1297.90, 1814.30 ) LPos=( 513.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 522.31, -1299.43, 1811.87 ) LPos=( 522.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 541.69, -1291.77, 1824.03 ) LPos=( 541.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 575.44, -1282.98, 1838.00 ) LPos=( 575.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 563.94, -1291.77, 1824.03 ) LPos=( 563.94, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 569.69, -1299.43, 1811.87 ) LPos=( 569.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 591.94, -1281.45, 1840.43 ) LPos=( 591.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 609.19, -1276.85, 1847.73 ) LPos=( 609.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 600.56, -1293.30, 1821.60 ) LPos=( 600.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 612.06, -1297.90, 1814.30 ) LPos=( 612.06, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -591.94, -1254.40, 1883.37 ) LPos=( -591.94, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -594.81, -1251.34, 1888.24 ) LPos=( -594.81, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -535.94, -1245.21, 1897.97 ) LPos=( -535.94, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -550.31, -1258.60, 1876.71 ) LPos=( -550.31, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -541.69, -1258.60, 1876.71 ) LPos=( -541.69, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -528.06, -1263.20, 1869.41 ) LPos=( -528.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -516.56, -1267.79, 1862.11 ) LPos=( -516.56, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -472.06, -1263.20, 1869.41 ) LPos=( -472.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -429.69, -1269.32, 1859.68 ) LPos=( -429.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -407.44, -1254.40, 1883.37 ) LPos=( -407.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -398.81, -1245.21, 1897.97 ) LPos=( -398.81, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -413.19, -1243.68, 1900.40 ) LPos=( -413.19, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -357.19, -1252.87, 1885.81 ) LPos=( -357.19, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -342.81, -1251.34, 1888.24 ) LPos=( -342.81, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -339.94, -1264.73, 1866.98 ) LPos=( -339.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -320.56, -1243.68, 1900.40 ) LPos=( -320.56, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -326.31, -1246.74, 1895.54 ) LPos=( -326.31, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -332.06, -1249.81, 1890.67 ) LPos=( -332.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -298.31, -1254.40, 1883.37 ) LPos=( -298.31, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -286.81, -1252.87, 1885.81 ) LPos=( -286.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -301.19, -1249.81, 1890.67 ) LPos=( -301.19, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -298.31, -1269.32, 1859.68 ) LPos=( -298.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -273.19, -1260.13, 1874.28 ) LPos=( -273.19, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -267.44, -1260.13, 1874.28 ) LPos=( -267.44, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -261.69, -1267.79, 1862.11 ) LPos=( -261.69, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -227.94, -1252.87, 1885.81 ) LPos=( -227.94, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -233.69, -1249.81, 1890.67 ) LPos=( -233.69, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -248.06, -1267.79, 1862.11 ) LPos=( -248.06, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -248.06, -1263.20, 1869.41 ) LPos=( -248.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -245.19, -1269.32, 1859.68 ) LPos=( -245.19, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -242.31, -1264.73, 1866.98 ) LPos=( -242.31, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -239.44, -1258.60, 1876.71 ) LPos=( -239.44, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -205.69, -1249.81, 1890.67 ) LPos=( -205.69, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -205.69, -1252.87, 1885.81 ) LPos=( -205.69, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -208.56, -1248.27, 1893.10 ) LPos=( -208.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -217.19, -1258.60, 1876.71 ) LPos=( -217.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -217.19, -1264.73, 1866.98 ) LPos=( -217.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -217.19, -1266.26, 1864.54 ) LPos=( -217.19, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1248.27, 1893.10 ) LPos=( -180.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -183.44, -1248.27, 1893.10 ) LPos=( -183.44, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -171.94, -1245.21, 1897.97 ) LPos=( -171.94, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -192.06, -1269.32, 1859.68 ) LPos=( -192.06, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -192.06, -1267.79, 1862.11 ) LPos=( -192.06, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -192.06, -1264.73, 1866.98 ) LPos=( -192.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -189.19, -1267.79, 1862.11 ) LPos=( -189.19, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1263.20, 1869.41 ) LPos=( -189.19, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -186.31, -1267.79, 1862.11 ) LPos=( -186.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, -1263.20, 1869.41 ) LPos=( -186.31, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, -1261.66, 1871.84 ) LPos=( -186.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -183.44, -1264.73, 1866.98 ) LPos=( -183.44, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, -1263.20, 1869.41 ) LPos=( -183.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1264.73, 1866.98 ) LPos=( -180.56, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -177.69, -1261.66, 1871.84 ) LPos=( -177.69, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, -1261.66, 1871.84 ) LPos=( -171.94, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, -1248.27, 1893.10 ) LPos=( -149.69, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, -1249.81, 1890.67 ) LPos=( -149.69, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, -1261.66, 1871.84 ) LPos=( -146.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, -1264.73, 1866.98 ) LPos=( -164.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, -1266.26, 1864.54 ) LPos=( -146.81, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -158.31, -1269.32, 1859.68 ) LPos=( -158.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, -1269.32, 1859.68 ) LPos=( -143.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -118.81, -1254.40, 1883.37 ) LPos=( -118.81, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1254.40, 1883.37 ) LPos=( -121.69, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1254.40, 1883.37 ) LPos=( -133.19, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, -1252.87, 1885.81 ) LPos=( -118.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, -1252.87, 1885.81 ) LPos=( -124.56, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1252.87, 1885.81 ) LPos=( -133.19, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -127.44, -1245.21, 1897.97 ) LPos=( -127.44, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, -1245.21, 1897.97 ) LPos=( -130.31, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, -1243.68, 1900.40 ) LPos=( -124.56, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, -1258.60, 1876.71 ) LPos=( -133.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, -1267.79, 1862.11 ) LPos=( -130.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1261.66, 1871.84 ) LPos=( -130.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, -1260.13, 1874.28 ) LPos=( -130.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, -1263.20, 1869.41 ) LPos=( -127.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -124.56, -1261.66, 1871.84 ) LPos=( -124.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, -1269.32, 1859.68 ) LPos=( -118.81, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, -1248.27, 1893.10 ) LPos=( -93.69, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -102.31, -1243.68, 1900.40 ) LPos=( -102.31, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, -1251.34, 1888.24 ) LPos=( -102.31, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -105.19, -1252.87, 1885.81 ) LPos=( -105.19, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -105.19, -1254.40, 1883.37 ) LPos=( -105.19, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, -1249.81, 1890.67 ) LPos=( -108.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, -1252.87, 1885.81 ) LPos=( -108.06, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -96.56, -1258.60, 1876.71 ) LPos=( -96.56, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, -1261.66, 1871.84 ) LPos=( -99.44, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -96.56, -1261.66, 1871.84 ) LPos=( -96.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1263.20, 1869.41 ) LPos=( -102.31, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -105.19, -1266.26, 1864.54 ) LPos=( -105.19, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -102.31, -1267.79, 1862.11 ) LPos=( -102.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -99.44, -1269.32, 1859.68 ) LPos=( -99.44, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -90.81, -1269.32, 1859.68 ) LPos=( -90.81, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1254.40, 1883.37 ) LPos=( -62.81, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -71.44, -1251.34, 1888.24 ) LPos=( -71.44, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1248.27, 1893.10 ) LPos=( -80.06, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -59.94, -1245.21, 1897.97 ) LPos=( -59.94, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1243.68, 1900.40 ) LPos=( -77.19, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -80.06, -1243.68, 1900.40 ) LPos=( -80.06, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1267.79, 1862.11 ) LPos=( -80.06, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -71.44, -1260.13, 1874.28 ) LPos=( -71.44, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, -1263.20, 1869.41 ) LPos=( -68.56, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, -1261.66, 1871.84 ) LPos=( -65.69, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, -1264.73, 1866.98 ) LPos=( -62.81, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, -1263.20, 1869.41 ) LPos=( -62.81, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, -1264.73, 1866.98 ) LPos=( -59.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -40.56, -1248.27, 1893.10 ) LPos=( -40.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1245.21, 1897.97 ) LPos=( -49.19, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -52.06, -1246.74, 1895.54 ) LPos=( -52.06, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -34.81, -1258.60, 1876.71 ) LPos=( -34.81, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, -1260.13, 1874.28 ) LPos=( -43.44, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -40.56, -1260.13, 1874.28 ) LPos=( -40.56, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, -1261.66, 1871.84 ) LPos=( -34.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -49.19, -1264.73, 1866.98 ) LPos=( -49.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, -1269.32, 1859.68 ) LPos=( -43.44, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, -1252.87, 1885.81 ) LPos=( -6.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, -1251.34, 1888.24 ) LPos=( -3.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, -1251.34, 1888.24 ) LPos=( -24.06, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, -1248.27, 1893.10 ) LPos=( -9.69, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1248.27, 1893.10 ) LPos=( -12.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -18.31, -1245.21, 1897.97 ) LPos=( -18.31, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, -1263.20, 1869.41 ) LPos=( -24.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, -1269.32, 1859.68 ) LPos=( -18.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1266.26, 1864.54 ) LPos=( -18.31, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -18.31, -1264.73, 1866.98 ) LPos=( -18.31, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1258.60, 1876.71 ) LPos=( -15.44, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, -1261.66, 1871.84 ) LPos=( -12.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, -1260.13, 1874.28 ) LPos=( -9.69, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -6.81, -1266.26, 1864.54 ) LPos=( -6.81, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -6.81, -1261.66, 1871.84 ) LPos=( -6.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, -1269.32, 1859.68 ) LPos=( -3.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, -1248.27, 1893.10 ) LPos=( 24.06, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, -1249.81, 1890.67 ) LPos=( 24.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, -1248.27, 1893.10 ) LPos=( 21.19, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, -1249.81, 1890.67 ) LPos=( 18.31, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, -1249.81, 1890.67 ) LPos=( 15.44, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 9.69, -1254.40, 1883.37 ) LPos=( 9.69, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, -1260.13, 1874.28 ) LPos=( 3.94, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, -1260.13, 1874.28 ) LPos=( 6.81, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1260.13, 1874.28 ) LPos=( 18.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 24.06, -1260.13, 1874.28 ) LPos=( 24.06, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, -1261.66, 1871.84 ) LPos=( 3.94, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1261.66, 1871.84 ) LPos=( 6.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3.94, -1263.20, 1869.41 ) LPos=( 3.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, -1266.26, 1864.54 ) LPos=( 6.81, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, -1266.26, 1864.54 ) LPos=( 18.31, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, -1266.26, 1864.54 ) LPos=( 24.06, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, -1267.79, 1862.11 ) LPos=( 6.81, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, -1251.34, 1888.24 ) LPos=( 49.19, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, -1263.20, 1869.41 ) LPos=( 34.81, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 43.44, -1261.66, 1871.84 ) LPos=( 43.44, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, -1264.73, 1866.98 ) LPos=( 49.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 49.19, -1260.13, 1874.28 ) LPos=( 49.19, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, -1258.60, 1876.71 ) LPos=( 49.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, -1246.74, 1895.54 ) LPos=( 80.06, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, -1254.40, 1883.37 ) LPos=( 68.56, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 62.81, -1254.40, 1883.37 ) LPos=( 62.81, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1251.34, 1888.24 ) LPos=( 59.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 74.31, -1258.60, 1876.71 ) LPos=( 74.31, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 65.69, -1260.13, 1874.28 ) LPos=( 65.69, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1261.66, 1871.84 ) LPos=( 74.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1261.66, 1871.84 ) LPos=( 80.06, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, -1263.20, 1869.41 ) LPos=( 77.19, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1263.20, 1869.41 ) LPos=( 80.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, -1264.73, 1866.98 ) LPos=( 65.69, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, -1264.73, 1866.98 ) LPos=( 68.56, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 74.31, -1269.32, 1859.68 ) LPos=( 74.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, -1249.81, 1890.67 ) LPos=( 105.19, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, -1248.27, 1893.10 ) LPos=( 102.31, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, -1243.68, 1900.40 ) LPos=( 93.69, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 87.94, -1267.79, 1862.11 ) LPos=( 87.94, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, -1264.73, 1866.98 ) LPos=( 87.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, -1264.73, 1866.98 ) LPos=( 90.81, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1260.13, 1874.28 ) LPos=( 90.81, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 93.69, -1269.32, 1859.68 ) LPos=( 93.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, -1266.26, 1864.54 ) LPos=( 93.69, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 96.56, -1258.60, 1876.71 ) LPos=( 96.56, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, -1263.20, 1869.41 ) LPos=( 99.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 105.19, -1260.13, 1874.28 ) LPos=( 105.19, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1258.60, 1876.71 ) LPos=( 105.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1260.13, 1874.28 ) LPos=( 108.06, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, -1251.34, 1888.24 ) LPos=( 133.19, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1249.81, 1890.67 ) LPos=( 127.44, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, -1260.13, 1874.28 ) LPos=( 118.81, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 124.56, -1260.13, 1874.28 ) LPos=( 124.56, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, -1260.13, 1874.28 ) LPos=( 130.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, -1261.66, 1871.84 ) LPos=( 124.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1261.66, 1871.84 ) LPos=( 130.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, -1263.20, 1869.41 ) LPos=( 115.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1263.20, 1869.41 ) LPos=( 127.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 133.19, -1264.73, 1866.98 ) LPos=( 133.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, -1264.73, 1866.98 ) LPos=( 136.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 124.56, -1269.32, 1859.68 ) LPos=( 124.56, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 143.94, -1269.32, 1859.68 ) LPos=( 143.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, -1264.73, 1866.98 ) LPos=( 143.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 143.94, -1263.20, 1869.41 ) LPos=( 143.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 149.69, -1269.32, 1859.68 ) LPos=( 149.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 149.69, -1264.73, 1866.98 ) LPos=( 149.69, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 149.69, -1263.20, 1869.41 ) LPos=( 149.69, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, -1260.13, 1874.28 ) LPos=( 149.69, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, -1261.66, 1871.84 ) LPos=( 152.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, -1263.20, 1869.41 ) LPos=( 155.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 155.44, -1261.66, 1871.84 ) LPos=( 155.44, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 161.19, -1269.32, 1859.68 ) LPos=( 161.19, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 183.44, -1254.40, 1883.37 ) LPos=( 183.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, -1251.34, 1888.24 ) LPos=( 171.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 189.19, -1263.20, 1869.41 ) LPos=( 189.19, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1254.40, 1883.37 ) LPos=( 217.19, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 220.06, -1252.87, 1885.81 ) LPos=( 220.06, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 202.81, -1258.60, 1876.71 ) LPos=( 202.81, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 214.31, -1266.26, 1864.54 ) LPos=( 214.31, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, -1252.87, 1885.81 ) LPos=( 248.06, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 239.44, -1251.34, 1888.24 ) LPos=( 239.44, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 236.56, -1251.34, 1888.24 ) LPos=( 236.56, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 233.69, -1266.26, 1864.54 ) LPos=( 233.69, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 239.44, -1266.26, 1864.54 ) LPos=( 239.44, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 245.19, -1269.32, 1859.68 ) LPos=( 245.19, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 267.44, -1251.34, 1888.24 ) LPos=( 267.44, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 264.56, -1251.34, 1888.24 ) LPos=( 264.56, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 255.94, -1251.34, 1888.24 ) LPos=( 255.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 255.94, -1269.32, 1859.68 ) LPos=( 255.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 261.69, -1269.32, 1859.68 ) LPos=( 261.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, -1267.79, 1862.11 ) LPos=( 273.19, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 301.19, -1245.21, 1897.97 ) LPos=( 301.19, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, -1258.60, 1876.71 ) LPos=( 304.06, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 298.31, -1260.13, 1874.28 ) LPos=( 298.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 298.31, -1261.66, 1871.84 ) LPos=( 298.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 301.19, -1261.66, 1871.84 ) LPos=( 301.19, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, -1264.73, 1866.98 ) LPos=( 283.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 295.44, -1264.73, 1866.98 ) LPos=( 295.44, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 295.44, -1267.79, 1862.11 ) LPos=( 295.44, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, -1269.32, 1859.68 ) LPos=( 283.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 311.94, -1263.20, 1869.41 ) LPos=( 311.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 317.69, -1269.32, 1859.68 ) LPos=( 317.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 320.56, -1267.79, 1862.11 ) LPos=( 320.56, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 320.56, -1266.26, 1864.54 ) LPos=( 320.56, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 323.44, -1263.20, 1869.41 ) LPos=( 323.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 329.19, -1264.73, 1866.98 ) LPos=( 329.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 332.06, -1264.73, 1866.98 ) LPos=( 332.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 348.56, -1246.74, 1895.54 ) LPos=( 348.56, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 342.81, -1252.87, 1885.81 ) LPos=( 342.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 339.94, -1251.34, 1888.24 ) LPos=( 339.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 360.06, -1261.66, 1871.84 ) LPos=( 360.06, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 379.44, -1254.40, 1883.37 ) LPos=( 379.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 376.56, -1254.40, 1883.37 ) LPos=( 376.56, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 385.19, -1243.68, 1900.40 ) LPos=( 385.19, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 382.31, -1243.68, 1900.40 ) LPos=( 382.31, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 367.94, -1266.26, 1864.54 ) LPos=( 367.94, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 376.56, -1267.79, 1862.11 ) LPos=( 376.56, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 385.19, -1266.26, 1864.54 ) LPos=( 385.19, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 388.06, -1263.20, 1869.41 ) LPos=( 388.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 416.06, -1249.81, 1890.67 ) LPos=( 416.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 407.44, -1254.40, 1883.37 ) LPos=( 407.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 398.81, -1248.27, 1893.10 ) LPos=( 398.81, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 401.69, -1258.60, 1876.71 ) LPos=( 401.69, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 423.94, -1246.74, 1895.54 ) LPos=( 423.94, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 432.56, -1243.68, 1900.40 ) LPos=( 432.56, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 466.31, -1243.68, 1900.40 ) LPos=( 466.31, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 485.69, -1254.40, 1883.37 ) LPos=( 485.69, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 494.31, -1267.79, 1862.11 ) LPos=( 494.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 500.06, -1263.20, 1869.41 ) LPos=( 500.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 513.69, -1245.21, 1897.97 ) LPos=( 513.69, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 550.31, -1254.40, 1883.37 ) LPos=( 550.31, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 544.56, -1246.74, 1895.54 ) LPos=( 544.56, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 563.94, -1246.74, 1895.54 ) LPos=( 563.94, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 612.06, -1254.40, 1883.37 ) LPos=( 612.06, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 594.81, -1251.34, 1888.24 ) LPos=( 594.81, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 606.31, -1245.21, 1897.97 ) LPos=( 606.31, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 606.31, -1261.66, 1871.84 ) LPos=( 606.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,00 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3748.73, 632.52, 11009.66 ) LPos=( 49.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,01 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3740.02, 588.48, 11025.28 ) LPos=( 31.25, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,02 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3740.02, 538.48, 11025.14 ) LPos=( 31.25, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3740.02, 494.48, 11025.01 ) LPos=( 31.25, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3745.83, 488.51, 11014.49 ) LPos=( 43.25, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3748.74, 476.52, 11009.21 ) LPos=( 49.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3731.30, 470.43, 11040.68 ) LPos=( 13.25, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3748.74, 470.52, 11009.19 ) LPos=( 49.25, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3728.39, 464.41, 11045.92 ) LPos=( 7.25, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3731.30, 464.43, 11040.67 ) LPos=( 13.25, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:132,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3748.74, 464.52, 11009.17 ) LPos=( 49.25, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3748.74, 450.52, 11009.13 ) LPos=( 49.25, 451.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3731.30, 426.43, 11040.55 ) LPos=( 13.25, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3740.02, 426.48, 11024.81 ) LPos=( 31.25, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3728.40, 414.41, 11045.77 ) LPos=( 7.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3728.40, 408.41, 11045.75 ) LPos=( 7.25, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3731.30, 408.43, 11040.50 ) LPos=( 13.25, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3745.83, 376.51, 11014.16 ) LPos=( 43.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3748.74, 376.52, 11008.91 ) LPos=( 49.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3748.74, 364.52, 11008.88 ) LPos=( 49.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3737.12, 332.46, 11029.78 ) LPos=( 25.25, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3742.93, 332.49, 11019.28 ) LPos=( 37.25, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3742.93, 326.49, 11019.26 ) LPos=( 37.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3731.30, 320.43, 11040.24 ) LPos=( 13.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3740.02, 320.48, 11024.50 ) LPos=( 31.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3728.40, 302.41, 11045.44 ) LPos=( 7.25, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3731.30, 302.43, 11040.19 ) LPos=( 13.25, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3737.12, 296.46, 11029.68 ) LPos=( 25.25, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3728.40, 282.41, 11045.38 ) LPos=( 7.25, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3731.31, 276.43, 11040.11 ) LPos=( 13.25, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3731.31, 264.43, 11040.08 ) LPos=( 13.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:133,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3734.21, 252.45, 11034.79 ) LPos=( 19.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3743.27, 212.31, 11018.33 ) LPos=( 37.94, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3747.44, 215.20, 11010.79 ) LPos=( 46.56, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3736.67, 223.77, 11030.28 ) LPos=( 24.31, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3735.27, 226.64, 11032.81 ) LPos=( 21.44, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3747.45, 156.33, 11010.62 ) LPos=( 46.56, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3748.84, 164.96, 11008.13 ) LPos=( 49.44, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3744.66, 167.81, 11015.68 ) LPos=( 40.81, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3741.88, 131.17, 11020.61 ) LPos=( 35.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3747.45, 131.20, 11010.54 ) LPos=( 46.56, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3748.84, 139.84, 11008.05 ) LPos=( 49.44, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3729.71, 145.48, 11042.63 ) LPos=( 9.94, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3731.10, 145.49, 11040.11 ) LPos=( 12.81, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3732.49, 145.50, 11037.60 ) LPos=( 15.69, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3735.28, 145.51, 11032.57 ) LPos=( 21.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3732.49, 142.62, 11037.59 ) LPos=( 15.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3733.88, 142.63, 11035.07 ) LPos=( 18.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3735.28, 142.64, 11032.56 ) LPos=( 21.44, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3736.67, 142.65, 11030.04 ) LPos=( 24.31, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3733.88, 139.76, 11035.07 ) LPos=( 18.56, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3735.28, 139.76, 11032.55 ) LPos=( 21.44, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3736.67, 139.77, 11030.04 ) LPos=( 24.31, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3729.71, 136.86, 11042.60 ) LPos=( 9.94, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3733.88, 136.88, 11035.06 ) LPos=( 18.56, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3735.28, 136.89, 11032.54 ) LPos=( 21.44, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3736.67, 136.90, 11030.03 ) LPos=( 24.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3735.28, 134.01, 11032.53 ) LPos=( 21.44, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3729.71, 131.11, 11042.59 ) LPos=( 9.94, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3726.92, 128.22, 11047.61 ) LPos=( 4.19, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3732.49, 128.25, 11037.55 ) LPos=( 15.69, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3744.66, 103.19, 11015.49 ) LPos=( 40.81, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3741.88, 108.92, 11020.54 ) LPos=( 35.06, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3746.05, 117.57, 11013.02 ) LPos=( 43.69, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3735.28, 108.89, 11032.46 ) LPos=( 21.44, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3729.71, 105.98, 11042.51 ) LPos=( 9.94, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3726.92, 100.22, 11047.53 ) LPos=( 4.19, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3731.10, 83.74, 11039.93 ) LPos=( 12.81, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3736.67, 78.02, 11029.85 ) LPos=( 24.31, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3735.28, 75.14, 11032.36 ) LPos=( 21.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3736.67, 75.15, 11029.85 ) LPos=( 24.31, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3735.28, 72.26, 11032.35 ) LPos=( 21.44, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3747.45, 41.45, 11010.28 ) LPos=( 46.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3744.66, 41.44, 11015.31 ) LPos=( 40.81, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3748.84, 47.21, 11007.78 ) LPos=( 49.44, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3746.06, 58.70, 11012.85 ) LPos=( 43.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3731.10, 44.24, 11039.82 ) LPos=( 12.81, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3740.49, 30.67, 11022.83 ) LPos=( 32.19, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3741.88, 24.93, 11020.29 ) LPos=( 35.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3744.66, 33.56, 11015.29 ) LPos=( 40.81, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3747.45, 33.58, 11010.26 ) LPos=( 46.56, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3736.67, 30.65, 11029.72 ) LPos=( 24.31, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:134,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3732.49, 24.88, 11037.24 ) LPos=( 15.69, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3744.67, -14.56, 11015.15 ) LPos=( 40.81, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3746.06, -5.93, 11012.66 ) LPos=( 43.69, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3740.49, -5.96, 11022.72 ) LPos=( 32.19, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3743.27, -3.07, 11017.70 ) LPos=( 37.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3736.67, -8.85, 11029.60 ) LPos=( 24.31, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3740.49, -39.71, 11022.62 ) LPos=( 32.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3733.89, -22.49, 11034.59 ) LPos=( 18.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3747.45, -59.04, 11009.99 ) LPos=( 46.56, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3740.49, -56.21, 11022.57 ) LPos=( 32.19, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3740.49, -89.96, 11022.47 ) LPos=( 32.19, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3750.24, -81.28, 11004.89 ) LPos=( 52.31, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3743.28, -123.69, 11017.34 ) LPos=( 37.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3741.88, -112.20, 11019.89 ) LPos=( 35.06, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3731.11, -134.51, 11039.29 ) LPos=( 12.81, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3743.28, -182.57, 11017.17 ) LPos=( 37.94, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:135,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3750.24, -162.40, 11004.65 ) LPos=( 52.31, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:136,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3745.85, -221.49, 11012.41 ) LPos=( 43.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:136,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3748.76, -233.47, 11007.12 ) LPos=( 49.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:136,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3742.95, -339.51, 11017.31 ) LPos=( 37.25, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:136,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3740.04, -389.52, 11022.41 ) LPos=( 31.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:136,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3728.42, -413.58, 11043.34 ) LPos=( 7.25, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:137,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3734.23, -451.55, 11032.73 ) LPos=( 19.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:137,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3737.14, -481.54, 11027.39 ) LPos=( 25.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:137,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3731.33, -487.57, 11037.87 ) LPos=( 13.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:137,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3745.86, -537.49, 11011.48 ) LPos=( 43.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:137,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3740.05, -587.52, 11021.83 ) LPos=( 31.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:137,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3748.77, -587.47, 11006.08 ) LPos=( 49.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:137,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3748.77, -593.47, 11006.07 ) LPos=( 49.25, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,00 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3755.76, 644.56, 10997.01 ) LPos=( 63.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3761.57, 600.59, 10986.39 ) LPos=( 75.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3770.29, 600.64, 10970.64 ) LPos=( 93.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3767.39, 544.62, 10975.73 ) LPos=( 87.75, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3773.20, 506.65, 10965.12 ) LPos=( 99.75, 507.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3761.57, 500.59, 10986.09 ) LPos=( 75.75, 501.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3770.29, 500.64, 10970.35 ) LPos=( 93.75, 501.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3758.67, 494.58, 10991.33 ) LPos=( 69.75, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3767.39, 488.62, 10975.56 ) LPos=( 87.75, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3767.39, 482.62, 10975.54 ) LPos=( 87.75, 483.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3776.11, 476.67, 10959.78 ) LPos=( 105.75, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3761.57, 470.59, 10986.01 ) LPos=( 75.75, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3770.29, 470.64, 10970.26 ) LPos=( 93.75, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3755.76, 444.56, 10996.43 ) LPos=( 63.75, 445.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3755.76, 438.56, 10996.41 ) LPos=( 63.75, 439.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3764.48, 438.61, 10980.66 ) LPos=( 81.75, 439.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3755.76, 426.56, 10996.38 ) LPos=( 63.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3770.30, 426.64, 10970.13 ) LPos=( 93.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3755.76, 420.56, 10996.36 ) LPos=( 63.75, 421.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3755.76, 408.56, 10996.32 ) LPos=( 63.75, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3755.76, 388.56, 10996.26 ) LPos=( 63.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3764.48, 352.61, 10980.41 ) LPos=( 81.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3770.30, 352.64, 10969.91 ) LPos=( 93.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3758.67, 282.58, 10990.70 ) LPos=( 69.75, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3761.58, 276.59, 10985.44 ) LPos=( 75.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3767.39, 276.62, 10974.94 ) LPos=( 87.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3767.39, 270.62, 10974.92 ) LPos=( 87.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3773.21, 270.65, 10964.42 ) LPos=( 99.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3761.25, 209.53, 10985.84 ) LPos=( 75.06, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3758.46, 215.26, 10990.89 ) LPos=( 69.31, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3767.85, 187.31, 10973.86 ) LPos=( 88.69, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.24, 201.70, 10971.38 ) LPos=( 91.56, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3772.03, 184.46, 10966.30 ) LPos=( 97.31, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3776.21, 190.23, 10958.77 ) LPos=( 105.94, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3757.07, 193.01, 10993.34 ) LPos=( 66.44, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3759.86, 193.02, 10988.31 ) LPos=( 72.19, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3776.21, 156.48, 10958.67 ) LPos=( 105.94, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3772.03, 159.34, 10966.23 ) LPos=( 97.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3777.60, 162.24, 10956.18 ) LPos=( 108.81, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3773.42, 167.97, 10963.74 ) LPos=( 100.19, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3757.07, 167.88, 10993.26 ) LPos=( 66.44, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3754.29, 162.12, 10998.28 ) LPos=( 60.69, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3754.29, 159.24, 10998.27 ) LPos=( 60.69, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3767.85, 131.31, 10973.69 ) LPos=( 88.69, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3767.85, 145.69, 10973.73 ) LPos=( 88.69, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3769.24, 128.45, 10971.17 ) LPos=( 91.56, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3769.24, 142.82, 10971.21 ) LPos=( 91.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.24, 145.70, 10971.22 ) LPos=( 91.56, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3770.64, 145.70, 10968.70 ) LPos=( 94.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3772.03, 131.34, 10966.15 ) LPos=( 97.31, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3772.03, 137.09, 10966.16 ) LPos=( 97.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3772.03, 145.71, 10966.19 ) LPos=( 97.31, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3773.42, 142.84, 10963.67 ) LPos=( 100.19, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3773.42, 145.72, 10963.67 ) LPos=( 100.19, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3777.60, 125.62, 10956.07 ) LPos=( 108.81, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3759.86, 145.65, 10988.17 ) LPos=( 72.19, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3762.64, 125.54, 10983.08 ) LPos=( 77.94, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3774.82, 97.60, 10961.02 ) LPos=( 103.06, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3769.25, 100.45, 10971.09 ) LPos=( 91.56, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3770.64, 103.33, 10968.58 ) LPos=( 94.44, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3769.25, 114.82, 10971.13 ) LPos=( 91.56, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3759.86, 117.65, 10988.09 ) LPos=( 72.19, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3755.68, 117.62, 10995.63 ) LPos=( 63.56, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3755.68, 106.12, 10995.60 ) LPos=( 63.56, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3770.64, 75.33, 10968.50 ) LPos=( 94.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3772.03, 69.59, 10965.97 ) LPos=( 97.31, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3772.03, 89.71, 10966.02 ) LPos=( 97.31, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3773.42, 75.34, 10963.47 ) LPos=( 100.19, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3774.82, 72.48, 10960.94 ) LPos=( 103.06, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3776.21, 78.23, 10958.45 ) LPos=( 105.94, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3757.08, 89.63, 10993.04 ) LPos=( 66.44, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3755.68, 86.75, 10995.54 ) LPos=( 63.56, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3759.86, 86.77, 10988.00 ) LPos=( 72.19, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3764.04, 86.79, 10980.45 ) LPos=( 80.81, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3755.68, 83.87, 10995.53 ) LPos=( 63.56, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3758.47, 78.14, 10990.49 ) LPos=( 69.31, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3759.86, 78.15, 10987.97 ) LPos=( 72.19, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3762.65, 78.16, 10982.94 ) LPos=( 77.94, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3757.08, 75.26, 10992.99 ) LPos=( 66.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3755.68, 72.37, 10995.50 ) LPos=( 63.56, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3773.43, 44.47, 10963.38 ) LPos=( 100.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3772.03, 44.46, 10965.89 ) LPos=( 97.31, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3773.43, 47.34, 10963.38 ) LPos=( 100.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3774.82, 50.23, 10960.88 ) LPos=( 103.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3772.03, 53.09, 10965.92 ) LPos=( 97.31, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3767.85, 53.06, 10973.46 ) LPos=( 88.69, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3776.21, 55.98, 10958.38 ) LPos=( 105.94, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3769.25, 55.95, 10970.96 ) LPos=( 91.56, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3777.60, 58.87, 10955.87 ) LPos=( 108.81, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3776.21, 58.86, 10958.39 ) LPos=( 105.94, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3772.03, 58.84, 10965.93 ) LPos=( 97.31, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3770.64, 58.83, 10968.45 ) LPos=( 94.44, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3767.85, 58.81, 10973.48 ) LPos=( 88.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3776.21, 61.73, 10958.40 ) LPos=( 105.94, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3774.82, 61.73, 10960.91 ) LPos=( 103.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3773.42, 61.72, 10963.43 ) LPos=( 100.19, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3772.03, 61.71, 10965.94 ) LPos=( 97.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3767.85, 61.69, 10973.49 ) LPos=( 88.69, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3764.04, 53.04, 10980.35 ) LPos=( 80.81, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3762.65, 53.04, 10982.87 ) LPos=( 77.94, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3759.86, 61.65, 10987.92 ) LPos=( 72.19, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3758.47, 61.64, 10990.44 ) LPos=( 69.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3757.08, 47.26, 10992.91 ) LPos=( 66.44, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.25, 33.70, 10970.89 ) LPos=( 91.56, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3770.64, 16.45, 10968.32 ) LPos=( 94.44, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3772.03, 22.21, 10965.83 ) LPos=( 97.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3774.82, 16.48, 10960.78 ) LPos=( 103.06, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3776.21, 33.73, 10958.31 ) LPos=( 105.94, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3777.60, 16.49, 10955.75 ) LPos=( 108.81, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3762.65, 16.41, 10982.76 ) LPos=( 77.94, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3773.43, -11.53, 10963.21 ) LPos=( 100.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3764.04, 2.79, 10980.20 ) LPos=( 80.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3759.86, -0.10, 10987.74 ) LPos=( 72.19, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3758.47, -0.11, 10990.26 ) LPos=( 69.31, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3757.08, 2.76, 10992.78 ) LPos=( 66.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3767.86, -30.94, 10973.22 ) LPos=( 88.69, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3769.25, -42.43, 10970.67 ) LPos=( 91.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3770.64, -28.05, 10968.19 ) LPos=( 94.44, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3772.03, -28.04, 10965.68 ) LPos=( 97.31, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3776.21, -39.52, 10958.10 ) LPos=( 105.94, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3758.47, -22.36, 10990.19 ) LPos=( 69.31, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3769.25, -64.68, 10970.60 ) LPos=( 91.56, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3776.21, -56.02, 10958.05 ) LPos=( 105.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3777.61, -53.13, 10955.54 ) LPos=( 108.81, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3767.86, -53.19, 10973.15 ) LPos=( 88.69, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3762.65, -53.21, 10982.56 ) LPos=( 77.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3754.29, -64.76, 10997.61 ) LPos=( 60.69, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3769.25, -89.80, 10970.53 ) LPos=( 91.56, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.25, -78.30, 10970.56 ) LPos=( 91.56, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3770.64, -92.67, 10968.00 ) LPos=( 94.44, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3772.04, -92.66, 10965.49 ) LPos=( 97.31, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3764.04, -81.21, 10979.96 ) LPos=( 80.81, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3755.69, -84.13, 10995.04 ) LPos=( 63.56, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3759.87, -86.98, 10987.49 ) LPos=( 72.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3761.26, -89.85, 10984.96 ) LPos=( 75.06, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3759.87, -92.73, 10987.47 ) LPos=( 72.19, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3758.47, -95.61, 10989.98 ) LPos=( 69.31, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3776.22, -126.39, 10957.84 ) LPos=( 105.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3777.61, -123.51, 10955.34 ) LPos=( 108.81, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3777.61, -117.76, 10955.35 ) LPos=( 108.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3773.43, -117.78, 10962.90 ) LPos=( 100.19, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3769.25, -117.80, 10970.45 ) LPos=( 91.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3777.61, -112.01, 10955.37 ) LPos=( 108.81, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3776.22, -112.02, 10957.89 ) LPos=( 105.94, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3757.08, -112.12, 10992.44 ) LPos=( 66.44, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3755.69, -123.63, 10994.92 ) LPos=( 63.56, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3774.82, -142.90, 10960.31 ) LPos=( 103.06, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3776.22, -148.64, 10957.78 ) LPos=( 105.94, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3777.61, -142.88, 10955.28 ) LPos=( 108.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3761.26, -154.47, 10984.77 ) LPos=( 75.06, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3770.65, -182.42, 10967.74 ) LPos=( 94.44, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3754.30, -199.01, 10997.22 ) LPos=( 60.69, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3767.41, -257.38, 10973.37 ) LPos=( 87.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3773.22, -257.34, 10962.87 ) LPos=( 99.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3761.60, -263.41, 10983.85 ) LPos=( 75.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3773.22, -263.34, 10962.86 ) LPos=( 99.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3776.13, -277.33, 10957.57 ) LPos=( 105.75, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3761.60, -295.41, 10983.76 ) LPos=( 75.75, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3764.50, -313.39, 10978.46 ) LPos=( 81.75, -312.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3758.69, -339.42, 10988.88 ) LPos=( 69.75, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3770.32, -431.36, 10967.61 ) LPos=( 93.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3764.51, -501.39, 10977.90 ) LPos=( 81.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3764.51, -513.39, 10977.87 ) LPos=( 81.75, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3764.51, -531.39, 10977.82 ) LPos=( 81.75, -530.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3755.79, -599.44, 10993.36 ) LPos=( 63.75, -598.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3773.23, -613.34, 10961.83 ) LPos=( 99.75, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3761.61, -619.40, 10982.81 ) LPos=( 75.75, -618.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,01 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3803.47, 612.81, 10910.75 ) LPos=( 162.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3786.03, 556.72, 10942.08 ) LPos=( 126.25, 557.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3794.75, 544.77, 10926.30 ) LPos=( 144.25, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3803.47, 538.81, 10910.53 ) LPos=( 162.25, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3797.66, 532.78, 10921.01 ) LPos=( 150.25, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3794.75, 526.77, 10926.24 ) LPos=( 144.25, 527.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3803.47, 488.81, 10910.39 ) LPos=( 162.25, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3786.04, 476.72, 10941.84 ) LPos=( 126.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3794.76, 476.77, 10926.10 ) LPos=( 144.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3797.67, 320.78, 10920.39 ) LPos=( 150.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3783.14, 302.71, 10946.58 ) LPos=( 120.25, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3788.95, 296.74, 10936.07 ) LPos=( 132.25, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3803.48, 258.82, 10909.71 ) LPos=( 162.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3803.48, 246.82, 10909.67 ) LPos=( 162.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3804.97, 212.64, 10906.90 ) LPos=( 165.31, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3800.79, 212.61, 10914.44 ) LPos=( 156.69, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3800.79, 218.36, 10914.46 ) LPos=( 156.69, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3799.40, 221.23, 10916.98 ) LPos=( 153.81, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3796.61, 221.22, 10922.01 ) LPos=( 148.06, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3790.01, 215.43, 10933.91 ) LPos=( 134.44, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3799.40, 181.73, 10916.87 ) LPos=( 153.81, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3803.57, 181.75, 10909.32 ) LPos=( 162.44, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3804.97, 184.64, 10906.81 ) LPos=( 165.31, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3804.97, 199.01, 10906.86 ) LPos=( 165.31, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3795.22, 156.58, 10924.34 ) LPos=( 145.19, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3803.58, 162.38, 10909.26 ) LPos=( 162.44, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3804.97, 165.26, 10906.76 ) LPos=( 165.31, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3798.00, 173.85, 10919.36 ) LPos=( 150.94, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3787.23, 153.67, 10938.76 ) LPos=( 128.69, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3795.22, 128.58, 10924.25 ) LPos=( 145.19, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3798.01, 125.72, 10919.22 ) LPos=( 150.94, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3798.01, 140.10, 10919.26 ) LPos=( 150.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3800.79, 137.24, 10914.22 ) LPos=( 156.69, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3802.18, 128.62, 10911.68 ) LPos=( 159.56, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3803.58, 125.75, 10909.16 ) LPos=( 162.44, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3803.58, 131.50, 10909.17 ) LPos=( 162.44, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3803.58, 137.25, 10909.19 ) LPos=( 162.44, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3804.97, 128.64, 10906.65 ) LPos=( 165.31, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3804.97, 134.39, 10906.67 ) LPos=( 165.31, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3804.97, 137.26, 10906.67 ) LPos=( 165.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3781.66, 134.26, 10948.77 ) LPos=( 117.19, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3791.41, 131.44, 10931.15 ) LPos=( 137.31, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3791.41, 128.56, 10931.14 ) LPos=( 137.31, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3800.79, 109.24, 10914.14 ) LPos=( 156.69, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3804.97, 112.14, 10906.60 ) LPos=( 165.31, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3802.18, 117.87, 10911.65 ) LPos=( 159.56, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3795.22, 89.83, 10924.14 ) LPos=( 145.19, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3799.40, 81.23, 10916.57 ) LPos=( 153.81, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3802.19, 72.62, 10911.51 ) LPos=( 159.56, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3784.44, 69.65, 10943.55 ) LPos=( 122.94, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3800.79, 50.36, 10913.96 ) LPos=( 156.69, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3798.01, 53.22, 10919.00 ) LPos=( 150.94, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3791.41, 50.31, 10930.91 ) LPos=( 137.31, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3788.62, 44.55, 10935.93 ) LPos=( 131.56, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3788.62, 41.67, 10935.92 ) LPos=( 131.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3799.40, 25.23, 10916.41 ) LPos=( 153.81, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3799.40, 30.98, 10916.42 ) LPos=( 153.81, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3802.19, 31.00, 10911.39 ) LPos=( 159.56, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3804.97, 25.26, 10906.35 ) LPos=( 165.31, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3788.62, 30.92, 10935.89 ) LPos=( 131.56, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3781.66, 25.14, 10948.45 ) LPos=( 117.19, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3791.41, 25.19, 10930.84 ) LPos=( 137.31, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3799.40, -11.39, 10916.30 ) LPos=( 153.81, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3799.40, 5.86, 10916.35 ) LPos=( 153.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3784.45, -11.47, 10943.31 ) LPos=( 122.94, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3795.23, -30.79, 10923.79 ) LPos=( 145.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3796.62, -27.91, 10921.28 ) LPos=( 148.06, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3798.01, -30.78, 10918.76 ) LPos=( 150.94, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3802.19, -30.75, 10911.21 ) LPos=( 159.56, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3804.97, -39.36, 10906.16 ) LPos=( 165.31, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3804.97, -30.74, 10906.18 ) LPos=( 165.31, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3787.23, -27.96, 10938.23 ) LPos=( 128.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3784.45, -33.72, 10943.24 ) LPos=( 122.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3788.63, -36.58, 10935.69 ) LPos=( 131.56, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3803.58, -70.25, 10908.58 ) LPos=( 162.44, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3799.40, -70.27, 10916.13 ) LPos=( 153.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3798.01, -50.15, 10918.70 ) LPos=( 150.94, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3790.02, -58.82, 10933.11 ) LPos=( 134.44, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3787.23, -67.46, 10938.11 ) LPos=( 128.69, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3785.84, -64.59, 10940.64 ) LPos=( 125.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3784.45, -53.10, 10943.19 ) LPos=( 122.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3784.45, -67.47, 10943.14 ) LPos=( 122.94, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3784.45, -78.22, 10943.11 ) LPos=( 122.94, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3781.66, -98.36, 10948.08 ) LPos=( 117.19, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3799.41, -117.64, 10915.99 ) LPos=( 153.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3802.19, -106.13, 10910.99 ) LPos=( 159.56, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3791.41, -126.31, 10930.40 ) LPos=( 137.31, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3790.02, -120.57, 10932.93 ) LPos=( 134.44, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3788.63, -114.83, 10935.46 ) LPos=( 131.56, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3787.24, -114.83, 10937.98 ) LPos=( 128.69, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3784.45, -109.10, 10943.02 ) LPos=( 122.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3784.45, -117.72, 10943.00 ) LPos=( 122.94, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3784.45, -126.35, 10942.97 ) LPos=( 122.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3783.06, -117.73, 10945.51 ) LPos=( 120.06, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3799.41, -139.89, 10915.92 ) LPos=( 153.81, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3803.58, -137.00, 10908.38 ) LPos=( 162.44, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3787.24, -134.21, 10937.92 ) LPos=( 128.69, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3787.24, -139.96, 10937.90 ) LPos=( 128.69, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3790.02, -139.94, 10932.87 ) LPos=( 134.44, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3790.02, -145.69, 10932.85 ) LPos=( 134.44, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3804.98, -182.24, 10905.74 ) LPos=( 165.31, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3802.19, -182.25, 10910.77 ) LPos=( 159.56, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3802.19, -173.63, 10910.79 ) LPos=( 159.56, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3802.19, -167.88, 10910.81 ) LPos=( 159.56, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3791.42, -182.31, 10930.23 ) LPos=( 137.31, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3795.23, -193.04, 10923.31 ) LPos=( 145.19, -192.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3796.62, -201.66, 10920.77 ) LPos=( 148.06, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3798.02, -207.40, 10918.24 ) LPos=( 150.94, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3799.41, -201.64, 10915.74 ) LPos=( 153.81, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3804.98, -190.11, 10905.71 ) LPos=( 165.31, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3783.06, -207.48, 10945.25 ) LPos=( 120.06, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3786.06, -227.28, 10939.78 ) LPos=( 126.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3791.87, -233.24, 10929.26 ) LPos=( 138.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3794.78, -245.23, 10923.98 ) LPos=( 144.25, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3797.68, -245.21, 10918.73 ) LPos=( 150.25, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3803.50, -257.18, 10908.20 ) LPos=( 162.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3786.06, -289.28, 10939.60 ) LPos=( 126.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3794.78, -289.23, 10923.85 ) LPos=( 144.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3800.59, -289.20, 10913.35 ) LPos=( 156.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3783.15, -307.29, 10944.79 ) LPos=( 120.25, -306.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3791.88, -407.24, 10928.75 ) LPos=( 138.25, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3786.06, -431.27, 10939.18 ) LPos=( 126.25, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3797.69, -501.21, 10917.98 ) LPos=( 150.25, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3791.88, -575.24, 10928.26 ) LPos=( 138.25, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3788.98, -625.26, 10933.36 ) LPos=( 132.25, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3794.79, -625.23, 10922.86 ) LPos=( 144.25, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3791.88, -631.24, 10928.09 ) LPos=( 138.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3794.79, -631.23, 10922.85 ) LPos=( 144.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3797.70, -631.21, 10917.60 ) LPos=( 150.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3800.60, -631.20, 10912.35 ) LPos=( 156.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3803.51, -631.18, 10907.10 ) LPos=( 162.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3803.51, -637.18, 10907.08 ) LPos=( 162.25, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,00 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.40, 644.87, 10892.91 ) LPos=( 182.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3810.50, 538.85, 10897.85 ) LPos=( 176.75, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3813.40, 538.87, 10892.60 ) LPos=( 182.75, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.40, 532.87, 10892.58 ) LPos=( 182.75, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3822.12, 532.91, 10876.83 ) LPos=( 200.75, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3825.03, 526.93, 10871.57 ) LPos=( 206.75, 527.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3813.40, 520.87, 10892.54 ) LPos=( 182.75, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.03, 520.93, 10871.55 ) LPos=( 206.75, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3810.50, 494.85, 10897.72 ) LPos=( 176.75, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3810.50, 488.85, 10897.70 ) LPos=( 176.75, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3810.50, 426.85, 10897.52 ) LPos=( 176.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.41, 420.87, 10892.25 ) LPos=( 182.75, 421.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3819.22, 420.90, 10881.75 ) LPos=( 194.75, 421.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3827.94, 394.94, 10865.93 ) LPos=( 212.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3822.13, 370.91, 10876.36 ) LPos=( 200.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3825.03, 370.93, 10871.11 ) LPos=( 206.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3825.04, 326.93, 10870.98 ) LPos=( 206.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3813.41, 314.87, 10891.94 ) LPos=( 182.75, 315.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3827.94, 308.95, 10865.68 ) LPos=( 212.75, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3810.50, 302.85, 10897.15 ) LPos=( 176.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3825.04, 302.93, 10870.91 ) LPos=( 206.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3827.94, 296.95, 10865.64 ) LPos=( 212.75, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3830.85, 296.96, 10860.39 ) LPos=( 218.75, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3822.13, 276.91, 10876.08 ) LPos=( 200.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3813.41, 246.87, 10891.74 ) LPos=( 182.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3816.32, 246.88, 10886.49 ) LPos=( 188.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3819.23, 240.90, 10881.22 ) LPos=( 194.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3814.59, 224.19, 10889.54 ) LPos=( 185.19, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3814.59, 218.44, 10889.52 ) LPos=( 185.19, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3814.59, 209.81, 10889.50 ) LPos=( 185.19, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3809.02, 221.28, 10899.59 ) LPos=( 173.69, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3822.59, 199.10, 10875.03 ) LPos=( 201.69, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3825.37, 190.49, 10869.98 ) LPos=( 207.44, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3826.77, 181.88, 10867.44 ) LPos=( 210.31, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3815.99, 199.07, 10886.95 ) LPos=( 188.06, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3826.77, 159.63, 10867.37 ) LPos=( 210.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3830.94, 162.52, 10859.83 ) LPos=( 218.94, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3817.38, 165.33, 10884.34 ) LPos=( 190.94, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3817.38, 156.70, 10884.31 ) LPos=( 190.94, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3814.60, 159.56, 10889.35 ) LPos=( 185.19, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3813.20, 168.18, 10891.89 ) LPos=( 182.31, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3810.42, 162.41, 10896.91 ) LPos=( 176.56, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3829.55, 125.89, 10862.24 ) LPos=( 216.06, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3832.34, 131.66, 10857.23 ) LPos=( 221.81, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3810.42, 143.04, 10896.85 ) LPos=( 176.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3811.81, 137.30, 10894.32 ) LPos=( 179.44, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3809.03, 131.53, 10899.33 ) LPos=( 173.69, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3809.03, 128.66, 10899.32 ) LPos=( 173.69, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3830.95, 109.40, 10859.68 ) LPos=( 218.94, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3823.98, 117.99, 10872.28 ) LPos=( 204.56, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3814.60, 117.94, 10889.23 ) LPos=( 185.19, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3828.16, 90.01, 10864.65 ) LPos=( 213.19, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3815.99, 81.32, 10886.61 ) LPos=( 188.06, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3818.78, 81.33, 10881.58 ) LPos=( 193.81, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3822.59, 47.61, 10874.59 ) LPos=( 201.69, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3818.78, 44.71, 10881.47 ) LPos=( 193.81, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3818.78, 41.84, 10881.46 ) LPos=( 193.81, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3814.60, 44.69, 10889.01 ) LPos=( 185.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3822.59, 28.23, 10874.53 ) LPos=( 201.69, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3828.16, 16.76, 10864.44 ) LPos=( 213.19, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3829.56, 28.27, 10861.96 ) LPos=( 216.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3809.03, 33.91, 10899.04 ) LPos=( 173.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3818.78, 19.59, 10881.40 ) LPos=( 193.81, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3811.81, 16.67, 10893.96 ) LPos=( 179.44, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3829.56, -11.23, 10861.84 ) LPos=( 216.06, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3826.77, -11.25, 10866.87 ) LPos=( 210.31, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3830.95, -8.35, 10859.33 ) LPos=( 218.94, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3830.95, -5.47, 10859.34 ) LPos=( 218.94, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3822.59, -5.52, 10874.43 ) LPos=( 201.69, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3830.95, 3.15, 10859.37 ) LPos=( 218.94, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3822.59, 3.11, 10874.46 ) LPos=( 201.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3815.99, -5.55, 10886.35 ) LPos=( 188.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3815.99, -14.18, 10886.33 ) LPos=( 188.06, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3813.21, -14.19, 10891.36 ) LPos=( 182.31, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3811.82, -5.58, 10893.90 ) LPos=( 179.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3810.42, -11.33, 10896.40 ) LPos=( 176.56, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3825.38, -27.75, 10869.34 ) LPos=( 207.44, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3832.34, -36.34, 10856.74 ) LPos=( 221.81, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3809.03, -22.09, 10898.88 ) LPos=( 173.69, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3810.42, -22.08, 10896.36 ) LPos=( 176.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3811.82, -22.08, 10893.85 ) LPos=( 179.44, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3809.03, -24.97, 10898.87 ) LPos=( 173.69, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3813.21, -24.94, 10891.33 ) LPos=( 182.31, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3815.99, -24.93, 10886.30 ) LPos=( 188.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3809.03, -27.84, 10898.86 ) LPos=( 173.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3810.42, -27.83, 10896.35 ) LPos=( 176.56, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3814.60, -30.69, 10888.79 ) LPos=( 185.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3817.39, -33.55, 10883.75 ) LPos=( 190.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3815.99, -36.43, 10886.26 ) LPos=( 188.06, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3817.39, -36.42, 10883.75 ) LPos=( 190.94, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3815.99, -42.18, 10886.24 ) LPos=( 188.06, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3826.77, -70.12, 10866.70 ) LPos=( 210.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3832.34, -61.47, 10856.66 ) LPos=( 221.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3832.34, -55.72, 10856.68 ) LPos=( 221.81, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3830.95, -55.72, 10859.19 ) LPos=( 218.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3828.17, -55.74, 10864.22 ) LPos=( 213.19, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3832.34, -52.84, 10856.69 ) LPos=( 221.81, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3818.78, -58.66, 10881.17 ) LPos=( 193.81, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3813.21, -58.69, 10891.23 ) LPos=( 182.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3814.60, -78.06, 10888.65 ) LPos=( 185.19, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3816.00, -83.80, 10886.12 ) LPos=( 188.06, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3814.60, -86.69, 10888.63 ) LPos=( 185.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3816.00, -86.68, 10886.11 ) LPos=( 188.06, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3822.60, -123.27, 10874.09 ) LPos=( 201.69, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3822.60, -120.39, 10874.10 ) LPos=( 201.69, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.38, -106.00, 10869.11 ) LPos=( 207.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3818.78, -126.16, 10880.97 ) LPos=( 193.81, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3817.39, -126.17, 10883.48 ) LPos=( 190.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3816.00, -126.18, 10886.00 ) LPos=( 188.06, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3814.60, -126.19, 10888.51 ) LPos=( 185.19, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3811.82, -134.08, 10893.52 ) LPos=( 179.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3813.21, -139.82, 10890.99 ) LPos=( 182.31, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3811.82, -142.70, 10893.50 ) LPos=( 179.44, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3809.03, -148.47, 10898.51 ) LPos=( 173.69, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3810.43, -151.33, 10895.98 ) LPos=( 176.56, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3822.60, -173.52, 10873.94 ) LPos=( 201.69, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3829.56, -170.61, 10861.37 ) LPos=( 216.06, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3828.17, -164.86, 10863.90 ) LPos=( 213.19, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.38, -162.00, 10868.94 ) LPos=( 207.44, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3816.00, -173.55, 10885.86 ) LPos=( 188.06, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3813.21, -173.57, 10890.89 ) LPos=( 182.31, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3830.96, -204.35, 10858.76 ) LPos=( 218.94, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3832.35, -207.22, 10856.23 ) LPos=( 221.81, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3832.35, -204.34, 10856.24 ) LPos=( 221.81, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3816.33, -221.11, 10885.12 ) LPos=( 188.75, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3827.96, -239.05, 10864.07 ) LPos=( 212.75, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3822.15, -257.08, 10874.51 ) LPos=( 200.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3825.05, -277.07, 10869.21 ) LPos=( 206.75, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3813.43, -313.13, 10890.10 ) LPos=( 182.75, -312.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3830.87, -375.04, 10858.42 ) LPos=( 218.75, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3827.96, -425.05, 10863.52 ) LPos=( 212.75, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3825.06, -475.07, 10868.63 ) LPos=( 206.75, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3810.53, -557.14, 10894.63 ) LPos=( 176.75, -556.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3825.06, -637.07, 10868.15 ) LPos=( 206.75, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3810.53, -643.14, 10894.38 ) LPos=( 176.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.44, -643.13, 10889.13 ) LPos=( 182.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3816.35, -643.11, 10883.88 ) LPos=( 188.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3819.25, -643.10, 10878.63 ) LPos=( 194.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3816.35, -649.11, 10883.86 ) LPos=( 188.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3819.25, -649.10, 10878.61 ) LPos=( 194.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3822.16, -649.08, 10873.36 ) LPos=( 200.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3822.16, -655.08, 10873.35 ) LPos=( 200.75, -654.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.06, -655.07, 10868.10 ) LPos=( 206.75, -654.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3837.86, 613.00, 10848.64 ) LPos=( 233.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3840.77, 613.01, 10843.39 ) LPos=( 239.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3840.77, 601.01, 10843.35 ) LPos=( 239.25, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3840.77, 583.01, 10843.30 ) LPos=( 239.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3843.68, 583.03, 10838.05 ) LPos=( 245.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3837.87, 545.00, 10848.44 ) LPos=( 233.25, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.49, 533.06, 10827.40 ) LPos=( 257.25, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3837.87, 521.00, 10848.37 ) LPos=( 233.25, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3846.59, 507.04, 10832.58 ) LPos=( 251.25, 507.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.50, 365.06, 10826.91 ) LPos=( 257.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3852.40, 365.08, 10821.66 ) LPos=( 263.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3855.31, 365.09, 10816.41 ) LPos=( 269.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3840.78, 359.01, 10842.64 ) LPos=( 239.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3852.40, 359.08, 10821.64 ) LPos=( 263.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3852.40, 315.08, 10821.52 ) LPos=( 263.25, 315.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3837.87, 309.00, 10847.74 ) LPos=( 233.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3840.78, 309.01, 10842.49 ) LPos=( 239.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3858.22, 309.11, 10811.00 ) LPos=( 275.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3855.31, 297.09, 10816.21 ) LPos=( 269.25, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3849.50, 277.06, 10826.65 ) LPos=( 257.25, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3837.87, 271.00, 10847.63 ) LPos=( 233.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3843.69, 271.03, 10837.13 ) LPos=( 245.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3852.41, 271.08, 10821.39 ) LPos=( 263.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3837.87, 265.00, 10847.61 ) LPos=( 233.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3849.50, 259.06, 10826.60 ) LPos=( 257.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.50, 253.06, 10826.58 ) LPos=( 257.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3852.41, 253.08, 10821.33 ) LPos=( 263.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3837.87, 247.00, 10847.56 ) LPos=( 233.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3858.22, 241.11, 10810.80 ) LPos=( 275.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3854.13, 212.90, 10818.10 ) LPos=( 266.81, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3851.35, 212.88, 10823.13 ) LPos=( 261.06, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3859.70, 215.80, 10808.05 ) LPos=( 278.31, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3854.13, 218.65, 10818.12 ) LPos=( 266.81, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3852.74, 227.27, 10820.66 ) LPos=( 263.94, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3840.57, 215.70, 10842.60 ) LPos=( 238.81, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3837.78, 227.19, 10847.67 ) LPos=( 233.06, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3851.35, 184.88, 10823.05 ) LPos=( 261.06, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3855.53, 196.41, 10815.54 ) LPos=( 269.69, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3855.53, 202.16, 10815.55 ) LPos=( 269.69, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3836.39, 202.05, 10850.11 ) LPos=( 230.19, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3843.36, 202.09, 10837.53 ) LPos=( 244.56, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3843.36, 190.59, 10837.50 ) LPos=( 244.56, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3840.57, 187.70, 10842.52 ) LPos=( 238.81, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3856.92, 162.66, 10812.92 ) LPos=( 272.56, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3859.71, 171.30, 10807.92 ) LPos=( 278.31, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3837.79, 156.81, 10847.46 ) LPos=( 233.06, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3849.96, 131.75, 10825.41 ) LPos=( 258.19, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3854.14, 143.27, 10817.89 ) LPos=( 266.81, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3856.92, 126.04, 10812.81 ) LPos=( 272.56, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3856.92, 131.79, 10812.83 ) LPos=( 272.56, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3856.92, 143.29, 10812.86 ) LPos=( 272.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3859.71, 143.30, 10807.83 ) LPos=( 278.31, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3837.79, 131.69, 10847.39 ) LPos=( 233.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3840.57, 125.95, 10842.34 ) LPos=( 238.81, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3841.97, 125.96, 10839.82 ) LPos=( 241.69, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3849.96, 100.88, 10825.32 ) LPos=( 258.19, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3858.31, 106.67, 10810.24 ) LPos=( 275.44, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3851.35, 106.63, 10822.82 ) LPos=( 261.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3858.31, 112.42, 10810.26 ) LPos=( 275.44, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3856.92, 112.41, 10812.77 ) LPos=( 272.56, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3855.53, 118.16, 10815.31 ) LPos=( 269.69, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3837.79, 106.56, 10847.31 ) LPos=( 233.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3851.35, 90.13, 10822.77 ) LPos=( 261.06, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3855.53, 90.16, 10815.22 ) LPos=( 269.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3856.92, 90.16, 10812.71 ) LPos=( 272.56, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3858.32, 81.55, 10810.17 ) LPos=( 275.44, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3859.71, 87.30, 10807.67 ) LPos=( 278.31, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3844.75, 87.22, 10834.68 ) LPos=( 247.44, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3851.35, 42.01, 10822.63 ) LPos=( 261.06, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3849.96, 59.25, 10825.19 ) LPos=( 258.19, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3851.35, 62.13, 10822.69 ) LPos=( 261.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3846.15, 53.48, 10832.07 ) LPos=( 250.31, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3846.15, 41.98, 10832.03 ) LPos=( 250.31, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3849.96, 28.38, 10825.10 ) LPos=( 258.19, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3855.53, 14.03, 10815.00 ) LPos=( 269.69, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3856.92, 14.04, 10812.48 ) LPos=( 272.56, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3856.92, 16.91, 10812.49 ) LPos=( 272.56, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3856.92, 34.16, 10812.54 ) LPos=( 272.56, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3858.32, 22.67, 10809.99 ) LPos=( 275.44, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3858.32, 25.55, 10810.00 ) LPos=( 275.44, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3837.79, 25.44, 10847.07 ) LPos=( 233.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3843.36, 25.47, 10837.01 ) LPos=( 244.56, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3846.15, 22.61, 10831.98 ) LPos=( 250.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3837.79, 16.81, 10847.05 ) LPos=( 233.06, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3846.15, 13.98, 10831.95 ) LPos=( 250.31, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3855.53, -13.97, 10814.92 ) LPos=( 269.69, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3856.93, -11.09, 10812.41 ) LPos=( 272.56, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3855.53, -8.22, 10814.93 ) LPos=( 269.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3849.96, -8.25, 10825.00 ) LPos=( 258.19, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3852.75, -5.36, 10819.97 ) LPos=( 263.94, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3855.53, -2.47, 10814.95 ) LPos=( 269.69, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3858.32, 0.42, 10809.93 ) LPos=( 275.44, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3843.36, 0.34, 10836.94 ) LPos=( 244.56, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3840.58, -8.30, 10841.95 ) LPos=( 238.81, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3839.18, 0.32, 10844.49 ) LPos=( 235.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3839.18, -2.56, 10844.48 ) LPos=( 235.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3849.96, -39.12, 10824.90 ) LPos=( 258.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3852.75, -24.73, 10819.92 ) LPos=( 263.94, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3855.53, -27.59, 10814.88 ) LPos=( 269.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3856.93, -24.71, 10812.37 ) LPos=( 272.56, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3859.71, -24.70, 10807.34 ) LPos=( 278.31, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3836.40, -30.57, 10849.43 ) LPos=( 230.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3843.36, -42.03, 10836.82 ) LPos=( 244.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3854.14, -69.98, 10817.27 ) LPos=( 266.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3854.14, -64.23, 10817.29 ) LPos=( 266.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3859.71, -61.32, 10807.23 ) LPos=( 278.31, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3859.71, -49.82, 10807.27 ) LPos=( 278.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3843.36, -64.28, 10836.75 ) LPos=( 244.56, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3841.97, -58.54, 10839.28 ) LPos=( 241.69, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3852.75, -77.86, 10819.76 ) LPos=( 263.94, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3858.32, -97.95, 10809.64 ) LPos=( 275.44, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3858.32, -95.08, 10809.65 ) LPos=( 275.44, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3858.32, -92.20, 10809.66 ) LPos=( 275.44, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3859.71, -95.07, 10807.13 ) LPos=( 278.31, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3836.40, -86.57, 10849.26 ) LPos=( 230.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3846.15, -86.52, 10831.65 ) LPos=( 250.31, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3841.97, -95.17, 10839.18 ) LPos=( 241.69, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3839.19, -98.06, 10844.20 ) LPos=( 235.94, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3846.15, -98.02, 10831.62 ) LPos=( 250.31, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3856.93, -125.96, 10812.07 ) LPos=( 272.56, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3856.93, -120.21, 10812.09 ) LPos=( 272.56, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3855.54, -120.22, 10814.61 ) LPos=( 269.69, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3859.71, -117.32, 10807.07 ) LPos=( 278.31, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3858.32, -114.45, 10809.59 ) LPos=( 275.44, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3856.93, -114.46, 10812.11 ) LPos=( 272.56, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3851.36, -114.49, 10822.17 ) LPos=( 261.06, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3859.71, -111.57, 10807.09 ) LPos=( 278.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3854.14, -111.60, 10817.15 ) LPos=( 266.81, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3852.75, -111.61, 10819.66 ) LPos=( 263.94, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3849.96, -108.75, 10824.70 ) LPos=( 258.19, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3858.32, -105.83, 10809.62 ) LPos=( 275.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3844.76, -105.90, 10834.11 ) LPos=( 247.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3843.37, -111.66, 10836.61 ) LPos=( 244.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3841.97, -111.67, 10839.13 ) LPos=( 241.69, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3841.97, -126.04, 10839.08 ) LPos=( 241.69, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3837.79, -114.56, 10846.66 ) LPos=( 233.06, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3852.75, -153.98, 10819.54 ) LPos=( 263.94, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3852.75, -142.48, 10819.57 ) LPos=( 263.94, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3854.14, -142.48, 10817.06 ) LPos=( 266.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3856.93, -145.34, 10812.02 ) LPos=( 272.56, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3856.93, -136.71, 10812.04 ) LPos=( 272.56, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3856.93, -133.84, 10812.05 ) LPos=( 272.56, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3859.71, -148.20, 10806.98 ) LPos=( 278.31, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3840.58, -136.80, 10841.57 ) LPos=( 238.81, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3841.97, -136.79, 10839.05 ) LPos=( 241.69, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3837.80, -145.44, 10846.57 ) LPos=( 233.06, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3846.15, -154.02, 10831.46 ) LPos=( 250.31, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3851.36, -179.12, 10821.98 ) LPos=( 261.06, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3855.54, -170.47, 10814.46 ) LPos=( 269.69, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3851.36, -164.74, 10822.02 ) LPos=( 261.06, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3854.15, -195.60, 10816.90 ) LPos=( 266.81, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3858.32, -204.20, 10809.33 ) LPos=( 275.44, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3839.19, -210.06, 10843.87 ) LPos=( 235.94, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3858.23, -220.89, 10809.44 ) LPos=( 275.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3855.33, -226.91, 10814.68 ) LPos=( 269.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3858.23, -232.89, 10809.41 ) LPos=( 275.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3843.70, -250.97, 10835.60 ) LPos=( 245.25, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3846.61, -256.95, 10830.33 ) LPos=( 251.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3852.42, -256.92, 10819.84 ) LPos=( 263.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3840.80, -262.98, 10840.81 ) LPos=( 239.25, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3843.70, -276.97, 10835.52 ) LPos=( 245.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3852.42, -276.92, 10819.78 ) LPos=( 263.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3855.33, -276.91, 10814.53 ) LPos=( 269.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3843.70, -282.97, 10835.51 ) LPos=( 245.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3849.52, -282.94, 10825.01 ) LPos=( 257.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3840.80, -288.98, 10840.74 ) LPos=( 239.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3849.52, -288.94, 10824.99 ) LPos=( 257.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3837.89, -301.00, 10845.95 ) LPos=( 233.25, -300.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3837.89, -333.00, 10845.86 ) LPos=( 233.25, -332.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3855.33, -424.91, 10814.09 ) LPos=( 269.25, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3858.24, -450.89, 10808.77 ) LPos=( 275.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3855.33, -480.91, 10813.93 ) LPos=( 269.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3858.24, -480.89, 10808.68 ) LPos=( 275.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3852.43, -486.92, 10819.16 ) LPos=( 263.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3855.33, -486.91, 10813.91 ) LPos=( 269.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3855.34, -500.91, 10813.87 ) LPos=( 269.25, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3858.24, -506.89, 10808.60 ) LPos=( 275.25, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3855.34, -524.91, 10813.80 ) LPos=( 269.25, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3858.24, -536.89, 10808.52 ) LPos=( 275.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3852.43, -574.92, 10818.90 ) LPos=( 263.25, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.53, -586.94, 10824.12 ) LPos=( 257.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3852.43, -618.92, 10818.77 ) LPos=( 263.25, -618.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3865.23, 651.14, 10799.32 ) LPos=( 289.75, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3865.23, 645.14, 10799.30 ) LPos=( 289.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3868.14, 645.16, 10794.05 ) LPos=( 295.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3865.23, 639.14, 10799.28 ) LPos=( 289.75, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3871.04, 639.17, 10788.78 ) LPos=( 301.75, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3868.14, 633.16, 10794.02 ) LPos=( 295.75, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3873.95, 633.19, 10783.52 ) LPos=( 307.75, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3871.05, 601.17, 10788.67 ) LPos=( 301.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3865.23, 589.14, 10799.14 ) LPos=( 289.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3865.24, 489.14, 10798.84 ) LPos=( 289.75, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3868.14, 477.16, 10793.56 ) LPos=( 295.75, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3868.14, 465.16, 10793.52 ) LPos=( 295.75, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3876.86, 427.21, 10777.66 ) LPos=( 313.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3879.77, 427.22, 10772.42 ) LPos=( 319.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.77, 415.22, 10772.38 ) LPos=( 319.75, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3876.86, 389.21, 10777.55 ) LPos=( 313.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3879.77, 389.22, 10772.30 ) LPos=( 319.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.15, 383.16, 10793.28 ) LPos=( 295.75, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3873.96, 383.19, 10782.78 ) LPos=( 307.75, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3873.96, 365.19, 10782.73 ) LPos=( 307.75, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3873.96, 359.19, 10782.71 ) LPos=( 307.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.77, 359.22, 10772.22 ) LPos=( 319.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3873.96, 353.19, 10782.70 ) LPos=( 307.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3865.24, 327.14, 10798.37 ) LPos=( 289.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.15, 327.16, 10793.12 ) LPos=( 295.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3879.77, 327.22, 10772.12 ) LPos=( 319.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.15, 271.16, 10792.95 ) LPos=( 295.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3873.96, 271.19, 10782.46 ) LPos=( 307.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3865.24, 265.14, 10798.19 ) LPos=( 289.75, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3865.24, 259.14, 10798.17 ) LPos=( 289.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3879.77, 259.22, 10771.92 ) LPos=( 319.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3885.59, 241.25, 10761.37 ) LPos=( 331.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3884.29, 230.31, 10763.69 ) LPos=( 329.06, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3866.55, 218.71, 10795.70 ) LPos=( 292.44, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3881.50, 187.92, 10768.60 ) LPos=( 323.31, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.89, 199.43, 10766.11 ) LPos=( 326.19, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3863.76, 196.45, 10800.66 ) LPos=( 286.69, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3863.76, 184.95, 10800.63 ) LPos=( 286.69, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3882.90, 154.18, 10765.98 ) LPos=( 326.19, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3882.90, 157.05, 10765.99 ) LPos=( 326.19, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3882.90, 174.30, 10766.04 ) LPos=( 326.19, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3873.51, 165.63, 10782.97 ) LPos=( 306.81, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3865.15, 165.58, 10798.06 ) LPos=( 289.56, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3863.76, 171.32, 10800.59 ) LPos=( 286.69, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3877.33, 140.52, 10776.00 ) LPos=( 314.69, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3877.33, 143.40, 10776.01 ) LPos=( 314.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3882.90, 137.68, 10765.93 ) LPos=( 326.19, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3887.07, 137.70, 10758.39 ) LPos=( 334.81, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.12, 143.37, 10785.42 ) LPos=( 303.94, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3872.12, 140.49, 10785.41 ) LPos=( 303.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3863.76, 137.57, 10800.49 ) LPos=( 286.69, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3867.94, 128.97, 10792.92 ) LPos=( 295.31, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3884.29, 98.18, 10763.30 ) LPos=( 329.06, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3887.08, 103.95, 10758.29 ) LPos=( 334.81, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3880.11, 103.91, 10770.86 ) LPos=( 320.44, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3885.68, 106.82, 10760.81 ) LPos=( 331.94, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.29, 106.81, 10763.33 ) LPos=( 329.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3880.11, 106.79, 10770.87 ) LPos=( 320.44, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.12, 100.99, 10785.29 ) LPos=( 303.94, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3867.94, 103.85, 10792.85 ) LPos=( 295.31, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3877.33, 90.27, 10775.86 ) LPos=( 314.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3878.72, 70.15, 10773.28 ) LPos=( 317.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3878.72, 78.78, 10773.31 ) LPos=( 317.56, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3878.72, 81.65, 10773.31 ) LPos=( 317.56, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3882.90, 75.93, 10765.75 ) LPos=( 326.19, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3873.51, 90.25, 10782.74 ) LPos=( 306.81, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3866.55, 87.34, 10795.31 ) LPos=( 292.44, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3870.73, 84.49, 10787.76 ) LPos=( 301.06, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3872.12, 84.49, 10785.24 ) LPos=( 303.94, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3869.34, 81.60, 10790.26 ) LPos=( 298.19, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3870.73, 81.61, 10787.75 ) LPos=( 301.06, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3873.51, 81.63, 10782.72 ) LPos=( 306.81, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3863.76, 78.70, 10800.32 ) LPos=( 286.69, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3866.55, 78.71, 10795.29 ) LPos=( 292.44, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3873.51, 78.75, 10782.71 ) LPos=( 306.81, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3869.34, 72.98, 10790.24 ) LPos=( 298.19, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3885.68, 42.19, 10760.62 ) LPos=( 331.94, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3881.51, 42.17, 10768.17 ) LPos=( 323.31, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3878.72, 42.15, 10773.20 ) LPos=( 317.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3884.29, 45.06, 10763.15 ) LPos=( 329.06, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3882.90, 45.05, 10765.66 ) LPos=( 326.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3881.51, 45.04, 10768.18 ) LPos=( 323.31, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3880.11, 45.04, 10770.69 ) LPos=( 320.44, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3887.08, 47.95, 10758.12 ) LPos=( 334.81, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3884.29, 47.93, 10763.15 ) LPos=( 329.06, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3882.90, 47.93, 10765.67 ) LPos=( 326.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3881.51, 47.92, 10768.19 ) LPos=( 323.31, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3880.11, 47.91, 10770.70 ) LPos=( 320.44, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.29, 50.81, 10763.16 ) LPos=( 329.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3882.90, 50.80, 10765.68 ) LPos=( 326.19, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3877.33, 53.65, 10775.75 ) LPos=( 314.69, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3880.11, 56.54, 10770.73 ) LPos=( 320.44, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3880.11, 59.41, 10770.73 ) LPos=( 320.44, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3884.29, 62.31, 10763.20 ) LPos=( 329.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3873.51, 50.75, 10782.63 ) LPos=( 306.81, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3869.34, 47.85, 10790.17 ) LPos=( 298.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3867.94, 62.22, 10792.72 ) LPos=( 295.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3865.16, 62.21, 10797.75 ) LPos=( 289.56, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3863.77, 62.20, 10800.27 ) LPos=( 286.69, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3877.33, 14.15, 10775.63 ) LPos=( 314.69, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3877.33, 31.40, 10775.68 ) LPos=( 314.69, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3878.72, 19.90, 10773.13 ) LPos=( 317.56, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3881.51, 22.79, 10768.11 ) LPos=( 323.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3881.51, 28.54, 10768.13 ) LPos=( 323.31, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3882.90, 34.30, 10765.63 ) LPos=( 326.19, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3884.29, 17.06, 10763.06 ) LPos=( 329.06, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3884.29, 19.93, 10763.07 ) LPos=( 329.06, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3884.29, 22.81, 10763.08 ) LPos=( 329.06, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3884.29, 28.56, 10763.10 ) LPos=( 329.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3885.69, 22.82, 10760.57 ) LPos=( 331.94, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3887.08, 19.95, 10758.04 ) LPos=( 334.81, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3887.08, 22.82, 10758.05 ) LPos=( 334.81, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3887.08, 25.70, 10758.06 ) LPos=( 334.81, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3866.55, 34.21, 10795.16 ) LPos=( 292.44, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3867.94, 34.22, 10792.64 ) LPos=( 295.31, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3869.34, 34.23, 10790.13 ) LPos=( 298.19, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3866.55, 28.46, 10795.14 ) LPos=( 292.44, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3870.73, 28.49, 10787.59 ) LPos=( 301.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3865.16, 25.58, 10797.65 ) LPos=( 289.56, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3870.73, 22.74, 10787.58 ) LPos=( 301.06, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3867.94, 14.10, 10792.58 ) LPos=( 295.31, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3869.34, 14.10, 10790.07 ) LPos=( 298.19, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3884.29, -13.82, 10762.97 ) LPos=( 329.06, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3880.12, -13.84, 10770.52 ) LPos=( 320.44, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3877.33, -10.98, 10775.56 ) LPos=( 314.69, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3878.72, -8.10, 10773.05 ) LPos=( 317.56, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3887.08, -5.18, 10757.97 ) LPos=( 334.81, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3882.90, -5.20, 10765.51 ) LPos=( 326.19, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3887.08, -2.30, 10757.98 ) LPos=( 334.81, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3881.51, -2.33, 10768.04 ) LPos=( 323.31, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3887.08, 0.57, 10757.99 ) LPos=( 334.81, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3885.69, 0.57, 10760.50 ) LPos=( 331.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3881.51, 0.54, 10768.05 ) LPos=( 323.31, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3880.12, 0.54, 10770.56 ) LPos=( 320.44, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3887.08, 3.45, 10757.99 ) LPos=( 334.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3884.29, 3.43, 10763.02 ) LPos=( 329.06, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3880.12, 3.41, 10770.57 ) LPos=( 320.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3877.33, 3.40, 10775.60 ) LPos=( 314.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3887.08, 6.32, 10758.00 ) LPos=( 334.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3873.52, 6.25, 10782.50 ) LPos=( 306.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3872.12, 6.24, 10785.01 ) LPos=( 303.94, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3872.12, 3.37, 10785.00 ) LPos=( 303.94, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3872.12, 0.49, 10785.00 ) LPos=( 303.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3872.12, -2.38, 10784.99 ) LPos=( 303.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3872.12, -5.26, 10784.98 ) LPos=( 303.94, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3870.73, 6.24, 10787.53 ) LPos=( 301.06, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3870.73, -8.14, 10787.49 ) LPos=( 301.06, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3869.34, 6.23, 10790.04 ) LPos=( 298.19, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3869.34, 3.35, 10790.04 ) LPos=( 298.19, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3869.34, -11.02, 10789.99 ) LPos=( 298.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3869.34, -13.90, 10789.98 ) LPos=( 298.19, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3867.94, 6.22, 10792.56 ) LPos=( 295.31, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3867.94, 3.35, 10792.55 ) LPos=( 295.31, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3866.55, 6.21, 10795.07 ) LPos=( 292.44, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3866.55, 3.34, 10795.07 ) LPos=( 292.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3866.55, -8.16, 10795.03 ) LPos=( 292.44, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3865.16, 0.46, 10797.57 ) LPos=( 289.56, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3863.77, 3.33, 10800.10 ) LPos=( 286.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3863.77, -2.42, 10800.08 ) LPos=( 286.69, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3877.33, -36.10, 10775.48 ) LPos=( 314.69, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3877.33, -21.73, 10775.53 ) LPos=( 314.69, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3878.72, -30.35, 10772.99 ) LPos=( 317.56, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3878.72, -27.47, 10772.99 ) LPos=( 317.56, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3878.72, -21.72, 10773.01 ) LPos=( 317.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3880.12, -41.84, 10770.44 ) LPos=( 320.44, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3880.12, -38.96, 10770.45 ) LPos=( 320.44, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3880.12, -30.34, 10770.47 ) LPos=( 320.44, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.90, -24.57, 10765.46 ) LPos=( 326.19, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3882.90, -21.70, 10765.47 ) LPos=( 326.19, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3884.29, -36.07, 10762.91 ) LPos=( 329.06, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3884.29, -30.32, 10762.93 ) LPos=( 329.06, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3884.29, -24.57, 10762.94 ) LPos=( 329.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3884.29, -21.69, 10762.95 ) LPos=( 329.06, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3865.16, -21.79, 10797.51 ) LPos=( 289.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3866.55, -21.79, 10794.99 ) LPos=( 292.44, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.12, -24.63, 10784.92 ) LPos=( 303.94, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3873.52, -27.50, 10782.40 ) LPos=( 306.81, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3873.52, -30.37, 10782.39 ) LPos=( 306.81, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3870.73, -33.26, 10787.41 ) LPos=( 301.06, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3872.12, -33.26, 10784.90 ) LPos=( 303.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3884.30, -69.82, 10762.81 ) LPos=( 329.06, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3882.90, -69.82, 10765.32 ) LPos=( 326.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3878.72, -69.84, 10772.87 ) LPos=( 317.56, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3884.30, -66.94, 10762.82 ) LPos=( 329.06, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3877.33, -66.98, 10775.39 ) LPos=( 314.69, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3884.30, -64.07, 10762.83 ) LPos=( 329.06, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3881.51, -64.08, 10767.86 ) LPos=( 323.31, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3880.12, -64.09, 10770.37 ) LPos=( 320.44, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3887.08, -61.18, 10757.80 ) LPos=( 334.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.30, -61.19, 10762.83 ) LPos=( 329.06, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3882.90, -61.20, 10765.35 ) LPos=( 326.19, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3878.72, -61.22, 10772.90 ) LPos=( 317.56, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3877.33, -61.23, 10775.41 ) LPos=( 314.69, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3877.33, -55.48, 10775.43 ) LPos=( 314.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3887.08, -52.55, 10757.83 ) LPos=( 334.81, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3877.33, -49.73, 10775.44 ) LPos=( 314.69, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3873.52, -55.50, 10782.32 ) LPos=( 306.81, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3873.52, -61.25, 10782.30 ) LPos=( 306.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3870.73, -55.51, 10787.35 ) LPos=( 301.06, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3870.73, -58.39, 10787.34 ) LPos=( 301.06, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3869.34, -69.89, 10789.82 ) LPos=( 298.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3867.95, -49.78, 10792.39 ) LPos=( 295.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3867.95, -69.90, 10792.34 ) LPos=( 295.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3866.55, -52.66, 10794.90 ) LPos=( 292.44, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3865.16, -64.17, 10797.38 ) LPos=( 289.56, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3863.77, -69.92, 10799.88 ) LPos=( 286.69, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3877.33, -86.35, 10775.34 ) LPos=( 314.69, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3877.33, -83.48, 10775.35 ) LPos=( 314.69, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3877.33, -80.60, 10775.35 ) LPos=( 314.69, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3878.73, -97.84, 10772.79 ) LPos=( 317.56, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3881.51, -89.21, 10767.78 ) LPos=( 323.31, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3882.90, -97.82, 10765.24 ) LPos=( 326.19, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.90, -80.57, 10765.29 ) LPos=( 326.19, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3884.30, -80.57, 10762.78 ) LPos=( 329.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3884.30, -77.69, 10762.79 ) LPos=( 329.06, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3885.69, -89.18, 10760.24 ) LPos=( 331.94, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3887.08, -94.93, 10757.71 ) LPos=( 334.81, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3887.08, -92.05, 10757.71 ) LPos=( 334.81, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3863.77, -80.67, 10799.85 ) LPos=( 286.69, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3870.73, -80.64, 10787.27 ) LPos=( 301.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3869.34, -83.52, 10789.78 ) LPos=( 298.19, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3867.95, -89.28, 10792.28 ) LPos=( 295.31, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3870.73, -92.14, 10787.24 ) LPos=( 301.06, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3865.16, -95.04, 10797.29 ) LPos=( 289.56, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3887.08, -125.80, 10757.61 ) LPos=( 334.81, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3885.69, -125.81, 10760.13 ) LPos=( 331.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3881.51, -125.83, 10767.68 ) LPos=( 323.31, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3877.33, -125.85, 10775.22 ) LPos=( 314.69, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3885.69, -122.93, 10760.14 ) LPos=( 331.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3884.30, -122.94, 10762.65 ) LPos=( 329.06, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3881.51, -117.20, 10767.70 ) LPos=( 323.31, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3878.73, -117.22, 10772.73 ) LPos=( 317.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3887.08, -114.30, 10757.65 ) LPos=( 334.81, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3885.69, -114.31, 10760.16 ) LPos=( 331.94, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3880.12, -114.34, 10770.22 ) LPos=( 320.44, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3881.51, -111.45, 10767.72 ) LPos=( 323.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3880.12, -111.46, 10770.23 ) LPos=( 320.44, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3878.73, -111.47, 10772.75 ) LPos=( 317.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3887.08, -108.55, 10757.67 ) LPos=( 334.81, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3877.33, -108.60, 10775.27 ) LPos=( 314.69, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3887.08, -105.68, 10757.67 ) LPos=( 334.81, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3884.30, -105.69, 10762.70 ) LPos=( 329.06, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3877.33, -105.73, 10775.28 ) LPos=( 314.69, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.13, -123.00, 10784.63 ) LPos=( 303.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3869.34, -114.39, 10789.69 ) LPos=( 298.19, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3866.56, -111.53, 10794.73 ) LPos=( 292.44, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3866.56, -114.41, 10794.72 ) LPos=( 292.44, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3865.16, -105.79, 10797.26 ) LPos=( 289.56, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3865.16, -117.29, 10797.23 ) LPos=( 289.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3865.16, -120.17, 10797.22 ) LPos=( 289.56, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3865.16, -123.04, 10797.21 ) LPos=( 289.56, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3865.16, -125.92, 10797.20 ) LPos=( 289.56, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3863.77, -123.05, 10799.72 ) LPos=( 286.69, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3863.77, -125.92, 10799.72 ) LPos=( 286.69, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3877.33, -153.85, 10775.14 ) LPos=( 314.69, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3877.33, -145.23, 10775.16 ) LPos=( 314.69, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3877.33, -139.48, 10775.18 ) LPos=( 314.69, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3887.08, -150.93, 10757.54 ) LPos=( 334.81, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3887.08, -145.18, 10757.56 ) LPos=( 334.81, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3887.08, -142.30, 10757.57 ) LPos=( 334.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3887.08, -139.43, 10757.57 ) LPos=( 334.81, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3866.56, -136.66, 10794.65 ) LPos=( 292.44, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3867.95, -136.65, 10792.14 ) LPos=( 295.31, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3882.91, -181.82, 10765.00 ) LPos=( 326.19, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3880.12, -178.96, 10770.03 ) LPos=( 320.44, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3884.30, -176.06, 10762.50 ) LPos=( 329.06, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.30, -173.19, 10762.51 ) LPos=( 329.06, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3884.30, -170.31, 10762.51 ) LPos=( 329.06, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3885.69, -167.43, 10760.01 ) LPos=( 331.94, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3884.30, -164.56, 10762.53 ) LPos=( 329.06, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3878.73, -164.59, 10772.59 ) LPos=( 317.56, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3885.69, -161.68, 10760.02 ) LPos=( 331.94, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3877.34, -161.73, 10775.12 ) LPos=( 314.69, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3877.34, -209.85, 10774.97 ) LPos=( 314.69, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3880.12, -204.09, 10769.96 ) LPos=( 320.44, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3881.51, -209.83, 10767.43 ) LPos=( 323.31, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3882.91, -198.32, 10764.95 ) LPos=( 326.19, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3885.69, -189.68, 10759.94 ) LPos=( 331.94, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3865.17, -189.79, 10797.01 ) LPos=( 289.56, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3865.17, -204.17, 10796.97 ) LPos=( 289.56, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3872.13, -204.13, 10784.40 ) LPos=( 303.94, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3868.16, -220.84, 10791.51 ) LPos=( 295.75, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3871.07, -220.82, 10786.26 ) LPos=( 301.75, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3876.88, -226.79, 10775.74 ) LPos=( 313.75, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3876.88, -232.79, 10775.73 ) LPos=( 313.75, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3873.98, -238.81, 10780.96 ) LPos=( 307.75, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3871.07, -244.82, 10786.19 ) LPos=( 301.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3876.88, -244.79, 10775.69 ) LPos=( 313.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3879.79, -244.78, 10770.44 ) LPos=( 319.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.70, -244.76, 10765.19 ) LPos=( 325.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3873.98, -250.81, 10780.92 ) LPos=( 307.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3879.79, -250.78, 10770.43 ) LPos=( 319.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3885.60, -250.75, 10759.93 ) LPos=( 331.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3868.16, -256.84, 10791.40 ) LPos=( 295.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.79, -256.78, 10770.41 ) LPos=( 319.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3882.70, -256.76, 10765.16 ) LPos=( 325.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3885.60, -256.74, 10759.91 ) LPos=( 331.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3865.26, -262.85, 10796.64 ) LPos=( 289.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3871.07, -262.82, 10786.14 ) LPos=( 301.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3885.60, -262.74, 10759.89 ) LPos=( 331.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3871.07, -294.82, 10786.04 ) LPos=( 301.75, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.17, -344.84, 10791.15 ) LPos=( 295.75, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3868.17, -350.84, 10791.13 ) LPos=( 295.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.79, -368.78, 10770.08 ) LPos=( 319.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3871.08, -394.82, 10785.75 ) LPos=( 301.75, -394.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3868.17, -406.84, 10790.96 ) LPos=( 295.75, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3868.17, -444.84, 10790.85 ) LPos=( 295.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3876.89, -444.79, 10775.10 ) LPos=( 313.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3876.89, -450.79, 10775.09 ) LPos=( 313.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3876.89, -456.79, 10775.07 ) LPos=( 313.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3865.27, -506.85, 10795.92 ) LPos=( 289.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3865.27, -518.85, 10795.88 ) LPos=( 289.75, -518.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3882.70, -518.76, 10764.39 ) LPos=( 325.75, -518.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3865.27, -562.85, 10795.75 ) LPos=( 289.75, -562.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3876.89, -580.79, 10774.71 ) LPos=( 313.75, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3882.71, -592.76, 10764.17 ) LPos=( 325.75, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3879.80, -618.77, 10769.35 ) LPos=( 319.75, -618.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3885.61, -648.74, 10758.76 ) LPos=( 331.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3912.94, 663.40, 10713.18 ) LPos=( 388.25, 663.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3904.22, 657.35, 10728.91 ) LPos=( 370.25, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3912.94, 651.40, 10713.15 ) LPos=( 388.25, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3907.13, 613.37, 10723.53 ) LPos=( 376.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3895.51, 601.30, 10744.49 ) LPos=( 352.25, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3901.32, 601.34, 10734.00 ) LPos=( 364.25, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3898.41, 595.32, 10739.23 ) LPos=( 358.25, 595.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3898.41, 589.32, 10739.21 ) LPos=( 358.25, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3895.51, 451.30, 10744.05 ) LPos=( 352.25, 451.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.42, 433.32, 10738.75 ) LPos=( 358.25, 433.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3901.33, 433.34, 10733.50 ) LPos=( 364.25, 433.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3907.14, 415.37, 10722.95 ) LPos=( 376.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3912.95, 415.40, 10712.45 ) LPos=( 388.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.42, 377.32, 10738.59 ) LPos=( 358.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3904.23, 377.35, 10728.09 ) LPos=( 370.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3892.61, 359.29, 10749.03 ) LPos=( 346.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3912.95, 353.40, 10712.27 ) LPos=( 388.25, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3912.95, 327.40, 10712.19 ) LPos=( 388.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3907.14, 321.37, 10722.68 ) LPos=( 376.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3895.52, 315.31, 10743.65 ) LPos=( 352.25, 315.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3907.14, 309.37, 10722.64 ) LPos=( 376.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3898.42, 271.32, 10738.28 ) LPos=( 358.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.42, 265.32, 10738.26 ) LPos=( 358.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3892.61, 253.29, 10748.72 ) LPos=( 346.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3901.33, 253.34, 10732.97 ) LPos=( 364.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3912.96, 253.40, 10711.98 ) LPos=( 388.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3910.26, 210.32, 10716.72 ) LPos=( 382.69, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3911.66, 216.08, 10714.22 ) LPos=( 385.56, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3914.44, 221.84, 10709.21 ) LPos=( 391.31, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3914.44, 224.72, 10709.21 ) LPos=( 391.31, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3892.52, 224.60, 10748.80 ) LPos=( 346.06, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3914.44, 160.09, 10709.02 ) LPos=( 391.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3913.05, 160.09, 10711.54 ) LPos=( 388.44, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3904.69, 160.04, 10726.63 ) LPos=( 371.19, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3914.44, 174.47, 10709.07 ) LPos=( 391.31, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3900.88, 162.90, 10733.53 ) LPos=( 363.31, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3900.88, 160.02, 10733.52 ) LPos=( 363.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3898.09, 160.01, 10738.55 ) LPos=( 357.56, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3893.92, 162.86, 10746.10 ) LPos=( 348.94, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3891.13, 159.97, 10751.13 ) LPos=( 343.19, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3904.69, 137.79, 10726.57 ) LPos=( 371.19, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3906.09, 132.05, 10724.03 ) LPos=( 374.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3910.27, 126.32, 10716.47 ) LPos=( 382.69, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3913.05, 146.46, 10711.50 ) LPos=( 388.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3914.44, 146.47, 10708.98 ) LPos=( 391.31, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3900.88, 140.65, 10733.46 ) LPos=( 363.31, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3891.13, 131.97, 10751.04 ) LPos=( 343.19, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3899.49, 132.01, 10735.95 ) LPos=( 360.44, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3904.70, 112.67, 10726.49 ) LPos=( 371.19, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3913.05, 118.46, 10711.42 ) LPos=( 388.44, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3896.70, 115.50, 10740.94 ) LPos=( 354.69, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3896.70, 98.25, 10740.88 ) LPos=( 354.69, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3892.52, 112.60, 10748.47 ) LPos=( 346.06, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3904.70, 84.67, 10726.41 ) LPos=( 371.19, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3907.48, 73.18, 10721.35 ) LPos=( 376.94, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3907.48, 84.68, 10721.38 ) LPos=( 376.94, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3911.66, 78.96, 10713.82 ) LPos=( 385.56, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3911.66, 81.83, 10713.83 ) LPos=( 385.56, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3913.05, 78.96, 10711.30 ) LPos=( 388.44, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3914.44, 87.59, 10708.81 ) LPos=( 391.31, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3895.31, 90.37, 10743.38 ) LPos=( 351.81, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3899.49, 90.39, 10735.83 ) LPos=( 360.44, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3891.13, 84.60, 10750.91 ) LPos=( 343.19, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3892.53, 73.10, 10748.36 ) LPos=( 346.06, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3892.53, 70.23, 10748.35 ) LPos=( 346.06, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3893.92, 70.24, 10745.83 ) LPos=( 348.94, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3913.05, 56.71, 10711.24 ) LPos=( 388.44, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3914.45, 59.59, 10708.73 ) LPos=( 391.31, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3910.27, 59.57, 10716.28 ) LPos=( 382.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3913.05, 62.46, 10711.25 ) LPos=( 388.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3908.87, 62.44, 10718.80 ) LPos=( 379.81, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3906.09, 62.43, 10723.83 ) LPos=( 374.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3899.49, 62.39, 10735.75 ) LPos=( 360.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3899.49, 59.52, 10735.74 ) LPos=( 360.44, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3898.10, 59.51, 10738.26 ) LPos=( 357.56, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3896.70, 59.50, 10740.77 ) LPos=( 354.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3896.70, 56.63, 10740.76 ) LPos=( 354.69, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3896.70, 53.75, 10740.75 ) LPos=( 354.69, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3896.70, 50.88, 10740.75 ) LPos=( 354.69, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3895.31, 59.49, 10743.29 ) LPos=( 351.81, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3895.31, 56.62, 10743.28 ) LPos=( 351.81, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3892.53, 59.48, 10748.32 ) LPos=( 346.06, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3891.13, 47.97, 10750.80 ) LPos=( 343.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3891.13, 45.10, 10750.79 ) LPos=( 343.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3908.88, 20.07, 10718.67 ) LPos=( 379.81, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3910.27, 34.45, 10716.20 ) LPos=( 382.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3911.66, 20.08, 10713.64 ) LPos=( 385.56, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3913.05, 22.96, 10711.14 ) LPos=( 388.44, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3913.05, 25.84, 10711.15 ) LPos=( 388.44, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3914.45, 17.22, 10708.61 ) LPos=( 391.31, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3895.31, 31.49, 10743.20 ) LPos=( 351.81, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3892.53, 25.73, 10748.22 ) LPos=( 346.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3893.92, 25.74, 10745.70 ) LPos=( 348.94, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3898.10, 25.76, 10738.16 ) LPos=( 357.56, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3892.53, 19.98, 10748.20 ) LPos=( 346.06, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3893.92, 17.11, 10745.68 ) LPos=( 348.94, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3899.49, 17.14, 10735.62 ) LPos=( 360.44, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3891.14, 14.22, 10750.70 ) LPos=( 343.19, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3900.88, 14.27, 10733.09 ) LPos=( 363.31, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3913.06, -13.66, 10711.03 ) LPos=( 388.44, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3913.05, -5.04, 10711.06 ) LPos=( 388.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3908.88, -5.06, 10718.60 ) LPos=( 379.81, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3907.48, -2.19, 10721.12 ) LPos=( 376.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3913.05, 0.71, 10711.07 ) LPos=( 388.44, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3910.27, 0.70, 10716.10 ) LPos=( 382.69, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3908.88, 6.44, 10718.63 ) LPos=( 379.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3898.10, 3.51, 10738.09 ) LPos=( 357.56, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3896.71, 3.50, 10740.61 ) LPos=( 354.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3896.71, -10.87, 10740.56 ) LPos=( 354.69, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3896.71, -13.75, 10740.56 ) LPos=( 354.69, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3895.31, 6.37, 10743.13 ) LPos=( 351.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3895.31, 3.49, 10743.12 ) LPos=( 351.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3893.92, 6.36, 10745.65 ) LPos=( 348.94, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3892.53, -5.15, 10748.13 ) LPos=( 346.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3892.53, -10.90, 10748.11 ) LPos=( 346.06, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3891.14, -2.28, 10750.65 ) LPos=( 343.19, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3906.09, -38.82, 10723.53 ) LPos=( 374.06, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3898.10, -21.62, 10738.02 ) LPos=( 357.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3891.14, -27.40, 10750.58 ) LPos=( 343.19, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3893.92, -30.26, 10745.54 ) LPos=( 348.94, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3891.14, -33.15, 10750.56 ) LPos=( 343.19, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3891.14, -38.90, 10750.54 ) LPos=( 343.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3900.89, -41.73, 10732.93 ) LPos=( 363.31, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3914.45, -69.65, 10708.35 ) LPos=( 391.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3913.06, -69.66, 10710.87 ) LPos=( 388.44, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3911.66, -66.79, 10713.39 ) LPos=( 385.56, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3913.06, -52.41, 10710.92 ) LPos=( 388.44, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3893.92, -55.39, 10745.46 ) LPos=( 348.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3892.53, -49.65, 10748.00 ) LPos=( 346.06, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3904.70, -94.83, 10725.88 ) LPos=( 371.19, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3906.09, -89.07, 10723.38 ) LPos=( 374.06, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3906.09, -83.32, 10723.40 ) LPos=( 374.06, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3910.27, -91.93, 10715.83 ) LPos=( 382.69, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3913.06, -83.29, 10710.83 ) LPos=( 388.44, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3914.45, -91.90, 10708.29 ) LPos=( 391.31, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3911.67, -108.42, 10713.27 ) LPos=( 385.56, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3895.32, -122.88, 10742.75 ) LPos=( 351.81, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3904.70, -139.33, 10725.75 ) LPos=( 371.19, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3904.70, -136.46, 10725.76 ) LPos=( 371.19, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3907.49, -150.82, 10720.69 ) LPos=( 376.94, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3892.53, -136.52, 10747.74 ) LPos=( 346.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3893.93, -139.39, 10745.22 ) LPos=( 348.94, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3895.32, -142.26, 10742.69 ) LPos=( 351.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3899.50, -145.11, 10735.14 ) LPos=( 360.44, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3896.71, -148.00, 10740.16 ) LPos=( 354.69, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3899.50, -147.98, 10735.13 ) LPos=( 360.44, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3898.10, -150.87, 10737.64 ) LPos=( 357.56, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3910.27, -170.18, 10715.60 ) LPos=( 382.69, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3907.49, -164.44, 10720.65 ) LPos=( 376.94, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3906.10, -164.45, 10723.16 ) LPos=( 374.06, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3904.70, -164.46, 10725.68 ) LPos=( 371.19, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3906.10, -161.57, 10723.17 ) LPos=( 374.06, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3898.10, -173.12, 10737.57 ) LPos=( 357.56, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3896.71, -173.12, 10740.09 ) LPos=( 354.69, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3895.32, -167.38, 10742.62 ) LPos=( 351.81, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3911.67, -189.54, 10713.03 ) LPos=( 385.56, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3913.06, -201.04, 10710.48 ) LPos=( 388.44, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3913.06, -195.29, 10710.50 ) LPos=( 388.44, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3893.93, -189.64, 10745.07 ) LPos=( 348.94, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3896.71, -189.62, 10740.04 ) LPos=( 354.69, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3898.10, -189.62, 10737.52 ) LPos=( 357.56, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3900.89, -206.85, 10732.44 ) LPos=( 363.31, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3895.53, -226.69, 10742.06 ) LPos=( 352.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3910.06, -226.61, 10715.82 ) LPos=( 382.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3898.44, -232.68, 10736.80 ) LPos=( 358.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.44, -238.68, 10736.78 ) LPos=( 358.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3907.16, -256.63, 10720.98 ) LPos=( 376.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3907.16, -282.63, 10720.90 ) LPos=( 376.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3910.07, -282.61, 10715.65 ) LPos=( 382.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3898.44, -306.68, 10736.58 ) LPos=( 358.25, -306.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3892.63, -338.71, 10746.98 ) LPos=( 346.25, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3901.35, -356.66, 10731.18 ) LPos=( 364.25, -356.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3892.63, -362.71, 10746.91 ) LPos=( 346.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3898.44, -362.68, 10736.42 ) LPos=( 358.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3901.35, -418.66, 10731.00 ) LPos=( 364.25, -418.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3892.63, -430.71, 10746.71 ) LPos=( 346.25, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3892.63, -444.71, 10746.67 ) LPos=( 346.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3898.45, -450.68, 10736.16 ) LPos=( 358.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3895.54, -456.69, 10741.39 ) LPos=( 352.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3904.26, -456.64, 10725.64 ) LPos=( 370.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3892.63, -486.71, 10746.55 ) LPos=( 346.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3898.45, -486.68, 10736.05 ) LPos=( 358.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3904.26, -486.64, 10725.55 ) LPos=( 370.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3912.98, -486.60, 10709.81 ) LPos=( 388.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3912.98, -506.60, 10709.75 ) LPos=( 388.25, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3904.26, -512.64, 10725.48 ) LPos=( 370.25, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3898.45, -524.68, 10735.94 ) LPos=( 358.25, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3892.64, -536.71, 10746.40 ) LPos=( 346.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3907.17, -542.63, 10720.14 ) LPos=( 376.25, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3892.64, -562.71, 10746.33 ) LPos=( 346.25, -562.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3898.45, -612.68, 10735.68 ) LPos=( 358.25, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3912.98, -636.60, 10709.37 ) LPos=( 388.25, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3937.41, 675.53, 10669.04 ) LPos=( 438.75, 675.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3928.69, 657.48, 10684.73 ) LPos=( 420.75, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.41, 657.53, 10668.98 ) LPos=( 438.75, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3928.69, 645.48, 10684.70 ) LPos=( 420.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3937.41, 613.53, 10668.85 ) LPos=( 438.75, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3919.97, 595.43, 10700.30 ) LPos=( 402.75, 595.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3940.31, 583.54, 10663.52 ) LPos=( 444.75, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3919.97, 577.43, 10700.24 ) LPos=( 402.75, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3937.41, 527.53, 10668.60 ) LPos=( 438.75, 527.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3928.69, 395.48, 10683.96 ) LPos=( 420.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3931.60, 395.50, 10678.71 ) LPos=( 426.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3928.70, 389.48, 10683.94 ) LPos=( 420.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3925.79, 377.47, 10689.16 ) LPos=( 414.75, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.88, 371.45, 10694.39 ) LPos=( 408.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3940.32, 365.54, 10662.88 ) LPos=( 444.75, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3919.98, 359.44, 10699.60 ) LPos=( 402.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3922.88, 353.45, 10694.34 ) LPos=( 408.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3937.42, 333.53, 10668.03 ) LPos=( 438.75, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3919.98, 309.44, 10699.46 ) LPos=( 402.75, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3937.42, 303.53, 10667.94 ) LPos=( 438.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3925.79, 265.47, 10688.83 ) LPos=( 414.75, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3931.61, 253.50, 10678.30 ) LPos=( 426.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3922.89, 247.45, 10694.03 ) LPos=( 408.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3922.89, 241.45, 10694.01 ) LPos=( 408.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.02, 224.85, 10664.82 ) LPos=( 442.06, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3941.81, 227.74, 10659.79 ) LPos=( 447.81, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3924.07, 210.40, 10691.78 ) LPos=( 411.19, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3918.50, 227.62, 10701.90 ) LPos=( 399.69, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3918.50, 216.12, 10701.86 ) LPos=( 399.69, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3932.06, 199.69, 10677.32 ) LPos=( 427.69, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3936.24, 188.21, 10669.74 ) LPos=( 436.31, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.02, 188.23, 10664.71 ) LPos=( 442.06, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3940.42, 202.61, 10662.24 ) LPos=( 444.94, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3926.85, 199.66, 10686.72 ) LPos=( 416.94, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3921.28, 185.26, 10696.74 ) LPos=( 405.44, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3932.06, 163.06, 10677.21 ) LPos=( 427.69, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3932.06, 168.81, 10677.23 ) LPos=( 427.69, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.68, 171.64, 10694.19 ) LPos=( 408.31, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3922.68, 154.39, 10694.14 ) LPos=( 408.31, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3921.28, 163.01, 10696.68 ) LPos=( 405.44, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3921.28, 160.13, 10696.67 ) LPos=( 405.44, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3919.89, 171.62, 10699.22 ) LPos=( 402.56, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3918.50, 171.62, 10701.73 ) LPos=( 399.69, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3932.06, 143.69, 10677.15 ) LPos=( 427.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3933.46, 143.70, 10674.64 ) LPos=( 430.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3940.42, 132.23, 10662.03 ) LPos=( 444.94, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3940.42, 140.86, 10662.05 ) LPos=( 444.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3921.29, 146.51, 10696.63 ) LPos=( 405.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3919.89, 143.62, 10699.13 ) LPos=( 402.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3924.07, 140.77, 10691.58 ) LPos=( 411.19, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3922.68, 137.89, 10694.09 ) LPos=( 408.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3925.46, 137.90, 10689.06 ) LPos=( 414.06, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3928.25, 118.54, 10683.97 ) LPos=( 419.81, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3926.86, 101.29, 10686.43 ) LPos=( 416.94, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3924.07, 112.77, 10691.50 ) LPos=( 411.19, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3921.29, 112.76, 10696.53 ) LPos=( 405.44, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3921.29, 101.26, 10696.49 ) LPos=( 405.44, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3933.46, 70.45, 10674.42 ) LPos=( 430.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3934.85, 79.08, 10671.93 ) LPos=( 433.44, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3936.24, 81.96, 10669.43 ) LPos=( 436.31, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3937.64, 81.97, 10666.91 ) LPos=( 439.19, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.03, 76.23, 10664.38 ) LPos=( 442.06, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3939.03, 84.85, 10664.41 ) LPos=( 442.06, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3921.29, 87.63, 10696.45 ) LPos=( 405.44, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3921.29, 84.76, 10696.45 ) LPos=( 405.44, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3921.29, 81.88, 10696.44 ) LPos=( 405.44, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3921.29, 76.13, 10696.42 ) LPos=( 405.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3926.86, 76.16, 10686.36 ) LPos=( 416.94, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3926.86, 73.29, 10686.35 ) LPos=( 416.94, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3919.89, 70.37, 10698.92 ) LPos=( 402.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3921.29, 70.38, 10696.40 ) LPos=( 405.44, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3934.85, 42.45, 10671.83 ) LPos=( 433.44, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3933.46, 45.32, 10674.35 ) LPos=( 430.56, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3932.07, 45.31, 10676.87 ) LPos=( 427.69, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.85, 62.58, 10671.89 ) LPos=( 433.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3926.86, 48.16, 10686.28 ) LPos=( 416.94, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3924.07, 62.52, 10691.35 ) LPos=( 411.19, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3924.07, 59.65, 10691.34 ) LPos=( 411.19, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3922.68, 62.51, 10693.87 ) LPos=( 408.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3922.68, 56.76, 10693.85 ) LPos=( 408.31, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3921.29, 62.51, 10696.38 ) LPos=( 405.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3921.29, 42.38, 10696.32 ) LPos=( 405.44, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3932.07, 34.56, 10676.83 ) LPos=( 427.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3933.46, 31.70, 10674.31 ) LPos=( 430.56, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3934.85, 14.45, 10671.74 ) LPos=( 433.44, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3934.85, 25.95, 10671.78 ) LPos=( 433.44, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3934.85, 28.83, 10671.79 ) LPos=( 433.44, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3939.03, 23.10, 10664.22 ) LPos=( 442.06, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3941.82, 17.37, 10659.18 ) LPos=( 447.81, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3921.29, 34.51, 10696.30 ) LPos=( 405.44, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3922.68, 34.51, 10693.78 ) LPos=( 408.31, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3926.86, 34.54, 10686.24 ) LPos=( 416.94, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3922.68, 31.64, 10693.78 ) LPos=( 408.31, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3925.47, 25.90, 10688.73 ) LPos=( 414.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3921.29, 14.38, 10696.24 ) LPos=( 405.44, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3934.85, 3.70, 10671.71 ) LPos=( 433.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3928.25, 3.67, 10683.63 ) LPos=( 419.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3926.86, -2.09, 10686.13 ) LPos=( 416.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.68, 3.64, 10693.69 ) LPos=( 408.31, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3921.29, -7.87, 10696.17 ) LPos=( 405.44, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3921.29, -10.74, 10696.17 ) LPos=( 405.44, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3919.90, -5.00, 10698.70 ) LPos=( 402.56, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3918.50, -7.88, 10701.20 ) LPos=( 399.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3918.50, -10.76, 10701.20 ) LPos=( 399.69, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3932.07, -30.06, 10676.64 ) LPos=( 427.69, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3933.46, -38.68, 10674.10 ) LPos=( 430.56, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3934.85, -35.80, 10671.60 ) LPos=( 433.44, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3939.03, -41.52, 10664.03 ) LPos=( 442.06, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3939.03, -38.65, 10664.04 ) LPos=( 442.06, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3918.50, -27.26, 10701.15 ) LPos=( 399.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3921.29, -32.99, 10696.10 ) LPos=( 405.44, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3922.68, -35.86, 10693.58 ) LPos=( 408.31, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3926.86, -35.84, 10686.03 ) LPos=( 416.94, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3919.90, -41.63, 10698.59 ) LPos=( 402.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3939.03, -63.77, 10663.97 ) LPos=( 442.06, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3941.82, -58.01, 10658.96 ) LPos=( 447.81, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3932.07, -55.19, 10676.57 ) LPos=( 427.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3940.42, -52.27, 10661.49 ) LPos=( 444.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.85, -49.42, 10671.56 ) LPos=( 433.44, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3933.46, -49.43, 10674.07 ) LPos=( 430.56, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3925.47, -58.10, 10688.48 ) LPos=( 414.06, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3924.08, -63.85, 10690.98 ) LPos=( 411.19, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3924.08, -69.60, 10690.96 ) LPos=( 411.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3922.68, -49.49, 10693.54 ) LPos=( 408.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3922.68, -58.11, 10693.51 ) LPos=( 408.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3922.68, -66.74, 10693.49 ) LPos=( 408.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3921.29, -49.49, 10696.05 ) LPos=( 405.44, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3919.90, -52.38, 10698.56 ) LPos=( 402.56, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3918.51, -55.26, 10701.07 ) LPos=( 399.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3918.51, -61.01, 10701.05 ) LPos=( 399.69, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3918.51, -69.63, 10701.02 ) LPos=( 399.69, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3932.07, -94.69, 10676.45 ) LPos=( 427.69, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3932.07, -77.44, 10676.50 ) LPos=( 427.69, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3941.82, -97.51, 10658.84 ) LPos=( 447.81, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3941.82, -80.26, 10658.89 ) LPos=( 447.81, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3926.86, -80.34, 10685.90 ) LPos=( 416.94, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3919.90, -91.88, 10698.44 ) LPos=( 402.56, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3924.08, -91.85, 10690.90 ) LPos=( 411.19, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3922.68, -94.74, 10693.40 ) LPos=( 408.31, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3926.86, -97.59, 10685.85 ) LPos=( 416.94, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3937.64, -125.53, 10666.30 ) LPos=( 439.19, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3934.86, -122.67, 10671.34 ) LPos=( 433.44, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3941.82, -114.01, 10658.79 ) LPos=( 447.81, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3933.46, -111.18, 10673.89 ) LPos=( 430.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3940.43, -108.27, 10661.32 ) LPos=( 444.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3937.64, -108.28, 10666.35 ) LPos=( 439.19, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3941.82, -105.38, 10658.82 ) LPos=( 447.81, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3939.03, -105.40, 10663.85 ) LPos=( 442.06, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3937.64, -105.41, 10666.36 ) LPos=( 439.19, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3926.86, -108.34, 10685.82 ) LPos=( 416.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3925.47, -122.72, 10688.29 ) LPos=( 414.06, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3919.90, -111.25, 10698.39 ) LPos=( 402.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3919.90, -122.75, 10698.35 ) LPos=( 402.56, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3939.03, -139.15, 10663.75 ) LPos=( 442.06, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3939.03, -136.27, 10663.76 ) LPos=( 442.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3924.08, -133.48, 10690.78 ) LPos=( 411.19, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3918.51, -136.38, 10700.83 ) LPos=( 399.69, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3925.47, -142.10, 10688.23 ) LPos=( 414.06, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3921.29, -144.99, 10695.77 ) LPos=( 405.44, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3918.51, -147.88, 10700.79 ) LPos=( 399.69, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3922.69, -150.74, 10693.24 ) LPos=( 408.31, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3925.47, -153.60, 10688.20 ) LPos=( 414.06, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3934.86, -178.67, 10671.18 ) LPos=( 433.44, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3932.07, -178.69, 10676.21 ) LPos=( 427.69, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3937.64, -175.78, 10666.16 ) LPos=( 439.19, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.04, -167.15, 10663.67 ) LPos=( 442.06, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3919.90, -167.25, 10698.22 ) LPos=( 402.56, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3919.90, -170.13, 10698.21 ) LPos=( 402.56, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3933.47, -209.55, 10673.60 ) LPos=( 430.56, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3934.86, -200.92, 10671.11 ) LPos=( 433.44, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3936.25, -209.54, 10668.57 ) LPos=( 436.31, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3937.64, -195.16, 10666.10 ) LPos=( 439.19, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3926.87, -198.09, 10685.56 ) LPos=( 416.94, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3940.34, -244.45, 10661.09 ) LPos=( 444.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3922.90, -344.55, 10692.29 ) LPos=( 408.75, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3931.62, -350.50, 10676.52 ) LPos=( 426.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3934.53, -350.48, 10671.27 ) LPos=( 432.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.44, -350.47, 10666.03 ) LPos=( 438.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3940.34, -350.45, 10660.78 ) LPos=( 444.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3934.53, -362.48, 10671.24 ) LPos=( 432.75, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3937.44, -374.47, 10665.96 ) LPos=( 438.75, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3940.34, -374.45, 10660.71 ) LPos=( 444.75, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3937.44, -388.47, 10665.91 ) LPos=( 438.75, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.44, -406.47, 10665.86 ) LPos=( 438.75, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3931.63, -412.50, 10676.34 ) LPos=( 426.75, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3937.44, -418.47, 10665.83 ) LPos=( 438.75, -418.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3940.35, -424.45, 10660.56 ) LPos=( 444.75, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3925.81, -430.53, 10686.79 ) LPos=( 414.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3931.63, -430.50, 10676.29 ) LPos=( 426.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3937.44, -430.47, 10665.79 ) LPos=( 438.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3937.44, -444.47, 10665.75 ) LPos=( 438.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3940.35, -444.45, 10660.50 ) LPos=( 444.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3920.00, -450.56, 10697.23 ) LPos=( 402.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3922.91, -450.55, 10691.98 ) LPos=( 408.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3925.81, -450.53, 10686.73 ) LPos=( 414.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3934.53, -450.48, 10670.98 ) LPos=( 432.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3937.44, -450.47, 10665.73 ) LPos=( 438.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3940.35, -450.45, 10660.48 ) LPos=( 444.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3920.00, -456.56, 10697.21 ) LPos=( 402.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3931.63, -456.50, 10676.21 ) LPos=( 426.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3934.53, -456.48, 10670.96 ) LPos=( 432.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3934.53, -462.48, 10670.95 ) LPos=( 432.75, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.44, -462.47, 10665.70 ) LPos=( 438.75, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3940.35, -462.45, 10660.45 ) LPos=( 444.75, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3934.53, -468.48, 10670.93 ) LPos=( 432.75, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3934.53, -474.48, 10670.91 ) LPos=( 432.75, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3937.44, -474.47, 10665.66 ) LPos=( 438.75, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3937.44, -480.47, 10665.64 ) LPos=( 438.75, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3931.63, -486.50, 10676.12 ) LPos=( 426.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.53, -486.48, 10670.88 ) LPos=( 432.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3937.44, -486.47, 10665.63 ) LPos=( 438.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3922.91, -500.55, 10691.83 ) LPos=( 408.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3934.53, -500.48, 10670.83 ) LPos=( 432.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3922.91, -506.55, 10691.81 ) LPos=( 408.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3940.35, -506.45, 10660.32 ) LPos=( 444.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3925.82, -512.53, 10686.55 ) LPos=( 414.75, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3931.63, -512.50, 10676.05 ) LPos=( 426.75, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.91, -524.55, 10691.76 ) LPos=( 408.75, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3931.63, -536.50, 10675.98 ) LPos=( 426.75, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.54, -542.48, 10670.71 ) LPos=( 432.75, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3931.63, -574.50, 10675.87 ) LPos=( 426.75, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3940.35, -586.45, 10660.08 ) LPos=( 444.75, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3920.01, -624.56, 10696.72 ) LPos=( 402.75, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.91, -636.54, 10691.43 ) LPos=( 408.75, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3925.82, -636.53, 10686.18 ) LPos=( 414.75, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3922.91, -642.54, 10691.41 ) LPos=( 408.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3928.73, -642.51, 10680.92 ) LPos=( 420.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3922.91, -648.54, 10691.40 ) LPos=( 408.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3922.91, -654.54, 10691.38 ) LPos=( 408.75, -654.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3950.24, 675.60, 10645.85 ) LPos=( 465.25, 675.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3953.15, 675.61, 10640.60 ) LPos=( 471.25, 675.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3953.15, 669.61, 10640.59 ) LPos=( 471.25, 669.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3953.15, 663.61, 10640.57 ) LPos=( 471.25, 663.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3956.06, 657.63, 10635.30 ) LPos=( 477.25, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3958.96, 651.64, 10630.04 ) LPos=( 483.25, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3958.96, 645.64, 10630.02 ) LPos=( 483.25, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3961.87, 645.66, 10624.77 ) LPos=( 489.25, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3964.78, 645.67, 10619.52 ) LPos=( 495.25, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.15, 639.61, 10640.50 ) LPos=( 471.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3961.87, 639.66, 10624.75 ) LPos=( 489.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3964.78, 639.67, 10619.50 ) LPos=( 495.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.68, 639.69, 10614.25 ) LPos=( 501.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3947.34, 633.58, 10650.98 ) LPos=( 459.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3964.78, 633.67, 10619.48 ) LPos=( 495.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3967.68, 633.69, 10614.24 ) LPos=( 501.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3967.68, 577.69, 10614.07 ) LPos=( 501.25, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3967.68, 539.69, 10613.96 ) LPos=( 501.25, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3956.06, 483.63, 10634.79 ) LPos=( 477.25, 483.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.06, 451.63, 10634.70 ) LPos=( 477.25, 451.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3958.97, 433.64, 10629.40 ) LPos=( 483.25, 433.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3956.06, 415.63, 10634.59 ) LPos=( 477.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3961.88, 415.66, 10624.09 ) LPos=( 489.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3953.16, 395.61, 10639.78 ) LPos=( 471.25, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.06, 395.63, 10634.53 ) LPos=( 477.25, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3947.35, 359.58, 10650.18 ) LPos=( 459.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3958.97, 339.64, 10629.12 ) LPos=( 483.25, 339.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.78, 327.67, 10618.59 ) LPos=( 495.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3947.35, 321.58, 10650.06 ) LPos=( 459.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3950.25, 321.60, 10644.81 ) LPos=( 465.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3950.25, 309.60, 10644.78 ) LPos=( 465.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3947.35, 271.58, 10649.92 ) LPos=( 459.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3950.25, 271.60, 10644.67 ) LPos=( 465.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3953.16, 271.61, 10639.42 ) LPos=( 471.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3958.97, 265.64, 10628.90 ) LPos=( 483.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3964.79, 265.67, 10618.40 ) LPos=( 495.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3950.25, 259.60, 10644.63 ) LPos=( 465.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3953.16, 259.61, 10639.38 ) LPos=( 471.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3947.35, 253.58, 10649.86 ) LPos=( 459.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3950.26, 247.60, 10644.60 ) LPos=( 465.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3950.26, 241.60, 10644.58 ) LPos=( 465.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3956.07, 241.63, 10634.08 ) LPos=( 477.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3967.69, 241.69, 10613.09 ) LPos=( 501.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3959.43, 230.71, 10627.98 ) LPos=( 484.19, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3951.44, 227.79, 10642.41 ) LPos=( 467.69, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3951.44, 224.92, 10642.40 ) LPos=( 467.69, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3951.44, 213.42, 10642.36 ) LPos=( 467.69, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3950.04, 227.78, 10644.92 ) LPos=( 464.81, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3950.04, 224.91, 10644.91 ) LPos=( 464.81, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3950.04, 210.53, 10644.87 ) LPos=( 464.81, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3959.43, 194.08, 10627.87 ) LPos=( 484.19, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3967.79, 188.38, 10612.76 ) LPos=( 501.44, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3969.18, 194.14, 10610.27 ) LPos=( 504.31, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3959.43, 163.21, 10627.78 ) LPos=( 484.19, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3967.79, 174.75, 10612.72 ) LPos=( 501.44, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3952.83, 171.80, 10639.73 ) LPos=( 470.56, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3960.82, 135.22, 10625.18 ) LPos=( 487.06, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3963.61, 129.48, 10620.14 ) LPos=( 492.81, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.79, 146.75, 10612.64 ) LPos=( 501.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3969.18, 143.89, 10610.12 ) LPos=( 504.31, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3945.87, 146.64, 10652.23 ) LPos=( 456.19, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3950.05, 140.91, 10644.67 ) LPos=( 464.81, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3952.83, 140.92, 10639.64 ) LPos=( 470.56, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3950.05, 138.03, 10644.66 ) LPos=( 464.81, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3951.44, 138.04, 10642.14 ) LPos=( 467.69, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3950.05, 129.41, 10644.63 ) LPos=( 464.81, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3969.18, 98.64, 10609.99 ) LPos=( 504.31, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3960.83, 98.59, 10625.08 ) LPos=( 487.06, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3965.00, 104.36, 10617.55 ) LPos=( 495.69, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3962.22, 104.35, 10622.58 ) LPos=( 489.94, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3965.00, 107.24, 10617.56 ) LPos=( 495.69, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3963.61, 107.23, 10620.07 ) LPos=( 492.81, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3965.00, 112.99, 10617.57 ) LPos=( 495.69, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3966.40, 115.87, 10615.07 ) LPos=( 498.56, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3967.79, 118.75, 10612.56 ) LPos=( 501.44, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3955.62, 112.94, 10634.52 ) LPos=( 476.31, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3950.05, 112.91, 10644.58 ) LPos=( 464.81, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3947.26, 118.64, 10649.63 ) LPos=( 459.06, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3947.26, 112.89, 10649.62 ) LPos=( 459.06, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3947.26, 110.02, 10649.61 ) LPos=( 459.06, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3945.87, 112.89, 10652.13 ) LPos=( 456.19, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3959.43, 84.96, 10627.55 ) LPos=( 484.19, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3967.79, 70.63, 10612.42 ) LPos=( 501.44, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3969.18, 90.76, 10609.96 ) LPos=( 504.31, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3945.87, 90.64, 10652.06 ) LPos=( 456.19, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3951.44, 90.67, 10642.00 ) LPos=( 467.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3947.26, 84.89, 10649.53 ) LPos=( 459.06, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3950.05, 84.91, 10644.50 ) LPos=( 464.81, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3954.23, 84.93, 10636.96 ) LPos=( 473.44, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3951.44, 79.17, 10641.97 ) LPos=( 467.69, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3966.40, 51.25, 10614.88 ) LPos=( 498.56, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3966.40, 57.00, 10614.89 ) LPos=( 498.56, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3967.79, 62.75, 10612.40 ) LPos=( 501.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3952.83, 42.55, 10639.35 ) LPos=( 470.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3948.66, 51.15, 10646.92 ) LPos=( 461.94, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3947.26, 51.14, 10649.43 ) LPos=( 459.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3947.26, 48.27, 10649.43 ) LPos=( 459.06, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3947.26, 42.52, 10649.41 ) LPos=( 459.06, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3962.22, 23.22, 10622.34 ) LPos=( 489.94, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3967.79, 14.63, 10612.25 ) LPos=( 501.44, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3967.79, 31.88, 10612.31 ) LPos=( 501.44, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3969.18, 31.89, 10609.79 ) LPos=( 504.31, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3945.87, 34.64, 10651.90 ) LPos=( 456.19, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3947.26, 34.64, 10649.39 ) LPos=( 459.06, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3945.87, 31.76, 10651.89 ) LPos=( 456.19, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3948.66, 28.90, 10646.85 ) LPos=( 461.94, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3945.87, 26.01, 10651.88 ) LPos=( 456.19, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3945.87, 23.14, 10651.87 ) LPos=( 456.19, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3945.87, 20.26, 10651.86 ) LPos=( 456.19, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3945.87, 17.39, 10651.85 ) LPos=( 456.19, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3948.66, 14.53, 10646.81 ) LPos=( 461.94, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3960.83, -13.41, 10624.75 ) LPos=( 487.06, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3967.79, -10.50, 10612.18 ) LPos=( 501.44, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3963.61, -10.52, 10619.73 ) LPos=( 492.81, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3959.44, -10.54, 10627.27 ) LPos=( 484.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3960.83, -4.78, 10624.77 ) LPos=( 487.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3966.40, 3.87, 10614.74 ) LPos=( 498.56, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3965.01, 3.86, 10617.25 ) LPos=( 495.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3963.61, 3.86, 10619.77 ) LPos=( 492.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3966.40, 6.75, 10614.75 ) LPos=( 498.56, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3963.61, 6.73, 10619.78 ) LPos=( 492.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3955.62, 6.69, 10634.21 ) LPos=( 476.31, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3951.44, -1.96, 10641.73 ) LPos=( 467.69, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3947.27, 3.77, 10649.29 ) LPos=( 459.06, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3960.83, -35.66, 10624.68 ) LPos=( 487.06, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3960.83, -27.03, 10624.71 ) LPos=( 487.06, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3965.01, -27.01, 10617.16 ) LPos=( 495.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3965.01, -24.14, 10617.17 ) LPos=( 495.69, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3966.40, -41.38, 10614.61 ) LPos=( 498.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3967.79, -24.12, 10612.14 ) LPos=( 501.44, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.79, -21.25, 10612.15 ) LPos=( 501.44, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3948.66, -29.97, 10646.68 ) LPos=( 461.94, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3948.66, -32.85, 10646.67 ) LPos=( 461.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3952.84, -38.57, 10639.11 ) LPos=( 470.56, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3963.62, -69.39, 10619.55 ) LPos=( 492.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3959.44, -57.91, 10627.13 ) LPos=( 484.19, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3955.62, -57.94, 10634.02 ) LPos=( 476.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3955.62, -69.44, 10633.99 ) LPos=( 476.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3951.45, -66.58, 10641.54 ) LPos=( 467.69, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3959.44, -91.66, 10627.03 ) LPos=( 484.19, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3962.22, -88.77, 10622.01 ) LPos=( 489.94, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3965.01, -88.76, 10616.98 ) LPos=( 495.69, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3967.79, -94.50, 10611.93 ) LPos=( 501.44, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3967.79, -83.00, 10611.97 ) LPos=( 501.44, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3969.19, -88.74, 10609.44 ) LPos=( 504.31, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3969.19, -82.99, 10609.45 ) LPos=( 504.31, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3969.19, -77.24, 10609.47 ) LPos=( 504.31, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3954.23, -77.32, 10636.48 ) LPos=( 473.44, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3950.05, -80.21, 10644.02 ) LPos=( 464.81, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3954.23, -80.19, 10636.47 ) LPos=( 473.44, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3948.66, -85.97, 10646.52 ) LPos=( 461.94, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3966.40, -125.38, 10614.36 ) LPos=( 498.56, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3959.44, -122.54, 10626.94 ) LPos=( 484.19, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3960.83, -119.66, 10624.44 ) LPos=( 487.06, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3966.40, -116.75, 10614.38 ) LPos=( 498.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3963.62, -116.77, 10619.41 ) LPos=( 492.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3969.19, -113.86, 10609.36 ) LPos=( 504.31, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3969.19, -110.99, 10609.37 ) LPos=( 504.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3959.44, -111.04, 10626.98 ) LPos=( 484.19, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3966.40, -108.13, 10614.41 ) LPos=( 498.56, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3963.62, -108.14, 10619.44 ) LPos=( 492.81, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3965.01, -105.26, 10616.93 ) LPos=( 495.69, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3955.62, -105.31, 10633.88 ) LPos=( 476.31, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3954.23, -108.19, 10636.39 ) LPos=( 473.44, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3954.23, -125.44, 10636.34 ) LPos=( 473.44, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3948.66, -122.60, 10646.41 ) LPos=( 461.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3947.27, -108.23, 10648.97 ) LPos=( 459.06, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3945.88, -111.11, 10651.47 ) LPos=( 456.19, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3959.44, -147.66, 10626.87 ) LPos=( 484.19, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3959.44, -144.79, 10626.88 ) LPos=( 484.19, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3962.23, -136.15, 10621.87 ) LPos=( 489.94, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3963.62, -136.14, 10619.36 ) LPos=( 492.81, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3965.01, -153.38, 10616.79 ) LPos=( 495.69, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3966.40, -136.13, 10614.33 ) LPos=( 498.56, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3966.40, -133.25, 10614.34 ) LPos=( 498.56, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3967.80, -153.37, 10611.76 ) LPos=( 501.44, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.80, -133.24, 10611.82 ) LPos=( 501.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3945.88, -141.99, 10651.38 ) LPos=( 456.19, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3948.66, -141.97, 10646.35 ) LPos=( 461.94, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3947.27, -144.85, 10648.86 ) LPos=( 459.06, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3948.66, -144.85, 10646.34 ) LPos=( 461.94, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3954.23, -150.57, 10636.27 ) LPos=( 473.44, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3965.01, -181.38, 10616.71 ) LPos=( 495.69, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3959.44, -175.66, 10626.79 ) LPos=( 484.19, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3954.23, -172.82, 10636.20 ) LPos=( 473.44, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3951.45, -175.71, 10641.22 ) LPos=( 467.69, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3950.06, -167.09, 10643.76 ) LPos=( 464.81, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3947.27, -209.48, 10648.67 ) LPos=( 459.06, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3951.45, -209.46, 10641.12 ) LPos=( 467.69, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3956.08, -238.37, 10632.67 ) LPos=( 477.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3947.36, -244.42, 10648.40 ) LPos=( 459.25, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -256.38, 10637.87 ) LPos=( 471.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3950.27, -276.40, 10643.06 ) LPos=( 465.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3950.27, -294.40, 10643.01 ) LPos=( 465.25, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3956.09, -344.37, 10632.36 ) LPos=( 477.25, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3953.18, -356.38, 10637.58 ) LPos=( 471.25, -356.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3947.37, -362.42, 10648.06 ) LPos=( 459.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3953.18, -362.38, 10637.56 ) LPos=( 471.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3958.99, -362.35, 10627.06 ) LPos=( 483.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3964.81, -362.32, 10616.56 ) LPos=( 495.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -368.38, 10637.54 ) LPos=( 471.25, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3956.09, -374.37, 10632.27 ) LPos=( 477.25, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3947.37, -388.42, 10647.98 ) LPos=( 459.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.09, -388.37, 10632.23 ) LPos=( 477.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3958.99, -388.35, 10626.98 ) LPos=( 483.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3947.37, -394.42, 10647.96 ) LPos=( 459.25, -394.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3956.09, -400.37, 10632.20 ) LPos=( 477.25, -400.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.81, -400.32, 10616.45 ) LPos=( 495.25, -400.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3947.37, -406.42, 10647.93 ) LPos=( 459.25, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3950.27, -406.40, 10642.68 ) LPos=( 465.25, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -424.38, 10637.38 ) LPos=( 471.25, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3958.99, -424.35, 10626.88 ) LPos=( 483.25, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3964.81, -430.32, 10616.36 ) LPos=( 495.25, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.09, -444.37, 10632.07 ) LPos=( 477.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3959.00, -444.35, 10626.82 ) LPos=( 483.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3961.90, -444.34, 10621.57 ) LPos=( 489.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3967.71, -444.31, 10611.07 ) LPos=( 501.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3947.37, -450.41, 10647.80 ) LPos=( 459.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3953.18, -450.38, 10637.30 ) LPos=( 471.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3961.90, -450.34, 10621.55 ) LPos=( 489.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3959.00, -456.35, 10626.78 ) LPos=( 483.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3961.90, -456.34, 10621.53 ) LPos=( 489.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.81, -456.32, 10616.29 ) LPos=( 495.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3967.71, -456.31, 10611.04 ) LPos=( 501.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3956.09, -462.37, 10632.02 ) LPos=( 477.25, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3961.90, -462.34, 10621.52 ) LPos=( 489.25, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3964.81, -462.32, 10616.27 ) LPos=( 495.25, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3947.37, -468.41, 10647.74 ) LPos=( 459.25, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3964.81, -468.32, 10616.25 ) LPos=( 495.25, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3967.71, -468.31, 10611.00 ) LPos=( 501.25, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3956.09, -474.37, 10631.98 ) LPos=( 477.25, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -480.38, 10637.21 ) LPos=( 471.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3956.09, -480.37, 10631.96 ) LPos=( 477.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3961.90, -480.34, 10621.46 ) LPos=( 489.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3947.37, -486.41, 10647.69 ) LPos=( 459.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3956.09, -486.37, 10631.94 ) LPos=( 477.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3961.90, -486.34, 10621.45 ) LPos=( 489.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3961.90, -506.34, 10621.39 ) LPos=( 489.25, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3967.72, -568.31, 10610.71 ) LPos=( 501.25, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3961.91, -580.34, 10621.17 ) LPos=( 489.25, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3956.09, -586.37, 10631.65 ) LPos=( 477.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3947.37, -592.41, 10647.38 ) LPos=( 459.25, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.81, -624.32, 10615.79 ) LPos=( 495.25, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3980.52, 651.76, 10591.11 ) LPos=( 527.75, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3977.61, 619.74, 10596.26 ) LPos=( 521.75, 619.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.52, 619.76, 10591.01 ) LPos=( 527.75, 619.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3983.43, 613.77, 10585.74 ) LPos=( 533.75, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3986.33, 613.79, 10580.50 ) LPos=( 539.75, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3986.33, 607.79, 10580.48 ) LPos=( 539.75, 607.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.24, 607.80, 10575.23 ) LPos=( 545.75, 607.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3992.15, 577.82, 10569.89 ) LPos=( 551.75, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3995.05, 545.84, 10564.55 ) LPos=( 557.75, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3992.15, 539.82, 10569.78 ) LPos=( 551.75, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.24, 521.80, 10574.98 ) LPos=( 545.75, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3986.34, 507.79, 10580.18 ) LPos=( 539.75, 507.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3983.43, 501.77, 10585.42 ) LPos=( 533.75, 501.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3983.43, 483.77, 10585.36 ) LPos=( 533.75, 483.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3983.43, 445.77, 10585.25 ) LPos=( 533.75, 445.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3995.06, 445.84, 10564.26 ) LPos=( 557.75, 445.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3986.34, 427.79, 10579.95 ) LPos=( 539.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3983.43, 415.77, 10585.16 ) LPos=( 533.75, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3980.53, 409.76, 10590.40 ) LPos=( 527.75, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3995.06, 395.84, 10564.11 ) LPos=( 557.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.15, 383.82, 10569.32 ) LPos=( 551.75, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3983.43, 353.77, 10584.98 ) LPos=( 533.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.25, 353.80, 10574.48 ) LPos=( 545.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3995.06, 333.84, 10563.93 ) LPos=( 557.75, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3992.15, 303.82, 10569.09 ) LPos=( 551.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3992.15, 297.82, 10569.07 ) LPos=( 551.75, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.53, 283.76, 10590.03 ) LPos=( 527.75, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3983.44, 283.77, 10584.78 ) LPos=( 533.75, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3974.72, 265.73, 10600.47 ) LPos=( 515.75, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3974.72, 259.73, 10600.45 ) LPos=( 515.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3989.25, 253.81, 10574.19 ) LPos=( 545.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3986.34, 241.79, 10579.40 ) LPos=( 539.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3974.63, 219.29, 10600.50 ) LPos=( 515.56, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3988.19, 188.49, 10575.91 ) LPos=( 543.56, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3990.98, 188.50, 10570.88 ) LPos=( 549.31, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3973.24, 197.03, 10602.95 ) LPos=( 512.69, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3988.19, 163.36, 10575.84 ) LPos=( 543.56, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3977.41, 174.81, 10595.34 ) LPos=( 521.31, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3993.76, 144.02, 10565.72 ) LPos=( 555.06, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3995.16, 141.15, 10563.20 ) LPos=( 557.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3993.76, 101.64, 10565.60 ) LPos=( 555.06, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3993.76, 107.39, 10565.61 ) LPos=( 555.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3996.55, 116.03, 10560.61 ) LPos=( 560.81, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3981.59, 98.70, 10587.57 ) LPos=( 529.94, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3980.20, 110.20, 10590.12 ) LPos=( 527.06, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3976.02, 115.92, 10597.68 ) LPos=( 518.44, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3973.24, 118.78, 10602.72 ) LPos=( 512.69, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3988.19, 79.36, 10575.59 ) LPos=( 543.56, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3989.59, 76.50, 10573.07 ) LPos=( 546.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.59, 85.12, 10573.09 ) LPos=( 546.44, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3990.98, 70.75, 10570.54 ) LPos=( 549.31, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3996.55, 70.78, 10560.48 ) LPos=( 560.81, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3996.55, 88.03, 10560.53 ) LPos=( 560.81, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3976.02, 76.42, 10597.56 ) LPos=( 518.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3990.98, 48.50, 10570.47 ) LPos=( 549.31, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3993.77, 51.39, 10565.45 ) LPos=( 555.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3995.16, 57.15, 10562.95 ) LPos=( 557.94, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3993.77, 60.02, 10565.47 ) LPos=( 555.06, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3990.98, 62.88, 10570.51 ) LPos=( 549.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3981.60, 42.70, 10587.40 ) LPos=( 529.94, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3980.20, 48.45, 10589.94 ) LPos=( 527.06, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3978.81, 54.19, 10592.47 ) LPos=( 524.19, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3973.24, 62.78, 10602.55 ) LPos=( 512.69, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3973.24, 59.91, 10602.55 ) LPos=( 512.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3973.24, 57.03, 10602.54 ) LPos=( 512.69, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3988.20, 14.74, 10575.40 ) LPos=( 543.56, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3990.98, 23.38, 10570.40 ) LPos=( 549.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3995.16, 20.53, 10562.84 ) LPos=( 557.94, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3995.16, 29.15, 10562.87 ) LPos=( 557.94, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3976.03, 34.80, 10597.44 ) LPos=( 518.44, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3973.24, 29.03, 10602.46 ) LPos=( 512.69, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3982.99, 29.09, 10584.85 ) LPos=( 532.81, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3978.81, 23.31, 10592.38 ) LPos=( 524.19, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3981.60, 23.33, 10587.35 ) LPos=( 529.94, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3981.60, 20.45, 10587.34 ) LPos=( 529.94, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3973.24, 14.66, 10602.41 ) LPos=( 512.69, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3982.99, 14.71, 10584.81 ) LPos=( 532.81, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3989.59, -13.25, 10572.80 ) LPos=( 546.44, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3992.38, -7.49, 10567.79 ) LPos=( 552.19, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.59, -7.50, 10572.82 ) LPos=( 546.44, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3986.80, -7.52, 10577.85 ) LPos=( 540.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3989.59, -4.63, 10572.83 ) LPos=( 546.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3996.55, -1.72, 10560.26 ) LPos=( 560.81, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3990.98, -1.75, 10570.32 ) LPos=( 549.31, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3990.98, 6.88, 10570.35 ) LPos=( 549.31, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3982.99, -1.79, 10584.76 ) LPos=( 532.81, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3982.99, -7.54, 10584.74 ) LPos=( 532.81, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3981.60, -10.42, 10587.25 ) LPos=( 529.94, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3980.20, -4.68, 10589.78 ) LPos=( 527.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3978.81, -4.69, 10592.30 ) LPos=( 524.19, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3976.03, -4.70, 10597.33 ) LPos=( 518.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3974.63, -1.83, 10599.85 ) LPos=( 515.56, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3990.98, -32.62, 10570.23 ) LPos=( 549.31, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3992.38, -29.74, 10567.73 ) LPos=( 552.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3993.77, -32.61, 10565.20 ) LPos=( 555.06, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3993.77, -23.98, 10565.23 ) LPos=( 555.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3996.55, -21.09, 10560.21 ) LPos=( 560.81, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3982.99, -21.16, 10584.70 ) LPos=( 532.81, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3973.24, -24.09, 10602.30 ) LPos=( 512.69, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3980.21, -24.05, 10589.72 ) LPos=( 527.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3978.81, -26.94, 10592.23 ) LPos=( 524.19, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3980.21, -32.68, 10589.70 ) LPos=( 527.06, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3992.38, -69.24, 10567.61 ) LPos=( 552.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3990.98, -69.25, 10570.13 ) LPos=( 549.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3990.98, -66.37, 10570.13 ) LPos=( 549.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3996.55, -63.47, 10560.08 ) LPos=( 560.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3990.98, -63.50, 10570.14 ) LPos=( 549.31, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.59, -63.50, 10572.66 ) LPos=( 546.44, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3996.55, -60.59, 10560.09 ) LPos=( 560.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3990.98, -60.62, 10570.15 ) LPos=( 549.31, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3989.59, -60.63, 10572.67 ) LPos=( 546.44, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3990.98, -57.75, 10570.16 ) LPos=( 549.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3989.59, -57.75, 10572.67 ) LPos=( 546.44, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3996.55, -54.84, 10560.11 ) LPos=( 560.81, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3995.16, -54.85, 10562.62 ) LPos=( 557.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3988.20, -54.89, 10575.20 ) LPos=( 543.56, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3986.81, -54.89, 10577.71 ) LPos=( 540.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3990.98, -49.12, 10570.18 ) LPos=( 549.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3988.20, -49.14, 10575.21 ) LPos=( 543.56, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3982.99, -63.54, 10584.58 ) LPos=( 532.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3981.60, -49.17, 10587.13 ) LPos=( 529.94, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3981.60, -52.05, 10587.13 ) LPos=( 529.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3981.60, -57.80, 10587.11 ) LPos=( 529.94, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3980.21, -52.05, 10589.64 ) LPos=( 527.06, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3980.21, -54.93, 10589.63 ) LPos=( 527.06, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3977.42, -57.82, 10594.65 ) LPos=( 521.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3977.42, -60.69, 10594.65 ) LPos=( 521.31, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3977.42, -66.44, 10594.63 ) LPos=( 521.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3974.64, -54.96, 10599.69 ) LPos=( 515.56, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3990.98, -80.00, 10570.09 ) LPos=( 549.31, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3992.38, -79.99, 10567.58 ) LPos=( 552.19, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3993.77, -79.98, 10565.06 ) LPos=( 555.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3995.16, -82.85, 10562.54 ) LPos=( 557.94, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3996.56, -97.22, 10559.98 ) LPos=( 560.81, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3996.56, -94.34, 10559.99 ) LPos=( 560.81, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3996.56, -91.47, 10560.00 ) LPos=( 560.81, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3996.56, -85.72, 10560.02 ) LPos=( 560.81, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3996.56, -77.09, 10560.04 ) LPos=( 560.81, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3976.03, -77.20, 10597.11 ) LPos=( 518.44, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3973.24, -80.09, 10602.13 ) LPos=( 512.69, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3974.64, -80.08, 10599.62 ) LPos=( 515.56, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3976.03, -80.08, 10597.10 ) LPos=( 518.44, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3973.24, -82.97, 10602.13 ) LPos=( 512.69, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3974.64, -82.96, 10599.61 ) LPos=( 515.56, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3978.81, -82.94, 10592.07 ) LPos=( 524.19, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3973.24, -85.84, 10602.12 ) LPos=( 512.69, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3974.64, -85.83, 10599.60 ) LPos=( 515.56, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3976.03, -85.83, 10597.09 ) LPos=( 518.44, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3981.60, -85.80, 10587.03 ) LPos=( 529.94, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3973.24, -88.72, 10602.11 ) LPos=( 512.69, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3974.64, -88.71, 10599.59 ) LPos=( 515.56, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3976.03, -88.70, 10597.08 ) LPos=( 518.44, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3973.24, -91.59, 10602.10 ) LPos=( 512.69, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3974.64, -91.58, 10599.59 ) LPos=( 515.56, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3992.38, -125.24, 10567.45 ) LPos=( 552.19, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3990.99, -125.25, 10569.96 ) LPos=( 549.31, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3986.81, -119.52, 10577.52 ) LPos=( 540.69, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3996.56, -110.84, 10559.94 ) LPos=( 560.81, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3992.38, -107.99, 10567.50 ) LPos=( 552.19, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.59, -105.13, 10572.54 ) LPos=( 546.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3990.99, -136.00, 10569.93 ) LPos=( 549.31, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3992.38, -144.61, 10567.39 ) LPos=( 552.19, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3993.77, -141.73, 10564.88 ) LPos=( 555.06, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3996.56, -153.22, 10559.82 ) LPos=( 560.81, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3976.03, -133.20, 10596.95 ) LPos=( 518.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3980.21, -133.18, 10589.40 ) LPos=( 527.06, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3978.82, -136.06, 10591.91 ) LPos=( 524.19, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3980.21, -136.05, 10589.39 ) LPos=( 527.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3978.82, -144.69, 10591.88 ) LPos=( 524.19, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3978.82, -147.56, 10591.88 ) LPos=( 524.19, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3973.25, -150.47, 10601.93 ) LPos=( 512.69, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3981.60, -150.42, 10586.84 ) LPos=( 529.94, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3993.77, -166.86, 10564.81 ) LPos=( 555.06, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3982.99, -169.79, 10584.27 ) LPos=( 532.81, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3976.03, -164.08, 10596.86 ) LPos=( 518.44, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3988.20, -200.64, 10574.77 ) LPos=( 543.56, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3980.21, -194.93, 10589.22 ) LPos=( 527.06, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.17, -288.18, 10567.35 ) LPos=( 551.75, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3977.64, -300.25, 10593.56 ) LPos=( 521.75, -300.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3980.55, -300.24, 10588.31 ) LPos=( 527.75, -300.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3983.45, -306.22, 10583.04 ) LPos=( 533.75, -306.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3974.73, -338.27, 10598.70 ) LPos=( 515.75, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3983.45, -344.22, 10582.93 ) LPos=( 533.75, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3977.64, -350.25, 10593.41 ) LPos=( 521.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -368.27, 10598.61 ) LPos=( 515.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3995.08, -368.16, 10561.87 ) LPos=( 557.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -424.27, 10598.45 ) LPos=( 515.75, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3977.64, -444.25, 10593.14 ) LPos=( 521.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3980.55, -450.24, 10587.87 ) LPos=( 527.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3977.64, -456.25, 10593.10 ) LPos=( 521.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3980.55, -456.24, 10587.85 ) LPos=( 527.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3974.74, -468.27, 10598.32 ) LPos=( 515.75, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3980.55, -468.24, 10587.82 ) LPos=( 527.75, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -480.27, 10598.28 ) LPos=( 515.75, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3980.55, -486.24, 10587.77 ) LPos=( 527.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3977.65, -500.25, 10592.97 ) LPos=( 521.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.55, -500.24, 10587.72 ) LPos=( 527.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3980.55, -506.24, 10587.71 ) LPos=( 527.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3986.37, -524.21, 10577.16 ) LPos=( 539.75, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3986.37, -536.21, 10577.12 ) LPos=( 539.75, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3989.27, -536.19, 10571.87 ) LPos=( 545.75, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3974.74, -542.27, 10598.10 ) LPos=( 515.75, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.27, -542.19, 10571.85 ) LPos=( 545.75, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3989.27, -556.19, 10571.81 ) LPos=( 545.75, -556.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3992.18, -556.18, 10566.56 ) LPos=( 551.75, -556.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3992.18, -562.18, 10566.55 ) LPos=( 551.75, -562.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3974.74, -568.27, 10598.02 ) LPos=( 515.75, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.18, -568.18, 10566.53 ) LPos=( 551.75, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3974.74, -574.27, 10598.01 ) LPos=( 515.75, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3992.18, -574.18, 10566.51 ) LPos=( 551.75, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3974.74, -580.27, 10597.99 ) LPos=( 515.75, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3992.18, -580.18, 10566.49 ) LPos=( 551.75, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3992.18, -586.18, 10566.48 ) LPos=( 551.75, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3995.09, -586.16, 10561.23 ) LPos=( 557.75, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3992.18, -592.18, 10566.46 ) LPos=( 551.75, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3992.18, -598.18, 10566.44 ) LPos=( 551.75, -598.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.56, -612.24, 10587.40 ) LPos=( 527.75, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3992.18, -612.18, 10566.40 ) LPos=( 551.75, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.28, -624.19, 10571.61 ) LPos=( 545.75, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.18, -624.18, 10566.36 ) LPos=( 551.75, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -648.27, 10597.79 ) LPos=( 515.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3986.37, -648.21, 10576.79 ) LPos=( 539.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4004.98, 583.89, 10546.73 ) LPos=( 578.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.61, 583.95, 10525.73 ) LPos=( 602.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4019.51, 577.97, 10520.46 ) LPos=( 608.25, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4016.61, 521.95, 10525.55 ) LPos=( 602.25, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4007.89, 495.90, 10541.22 ) LPos=( 584.25, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4013.70, 477.93, 10530.67 ) LPos=( 596.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 4004.99, 383.89, 10546.14 ) LPos=( 578.25, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4007.89, 377.90, 10540.87 ) LPos=( 584.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 4004.99, 371.89, 10546.10 ) LPos=( 578.25, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4010.80, 371.92, 10535.61 ) LPos=( 590.25, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4013.71, 365.94, 10530.34 ) LPos=( 596.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4016.61, 365.95, 10525.09 ) LPos=( 602.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4019.52, 365.97, 10519.84 ) LPos=( 608.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4010.80, 359.92, 10535.57 ) LPos=( 590.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4013.71, 359.94, 10530.32 ) LPos=( 596.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.61, 359.95, 10525.07 ) LPos=( 602.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4019.52, 359.97, 10519.82 ) LPos=( 608.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 4019.52, 327.97, 10519.73 ) LPos=( 608.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4013.71, 321.94, 10530.21 ) LPos=( 596.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4016.62, 259.95, 10524.78 ) LPos=( 602.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4002.09, 253.87, 10551.01 ) LPos=( 572.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4016.62, 253.95, 10524.76 ) LPos=( 602.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4010.81, 247.92, 10535.24 ) LPos=( 590.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4018.34, 210.90, 10521.52 ) LPos=( 605.81, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.13, 225.29, 10516.53 ) LPos=( 611.56, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4018.34, 231.02, 10521.58 ) LPos=( 605.81, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4010.35, 222.36, 10535.99 ) LPos=( 589.31, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.00, 230.94, 10551.10 ) LPos=( 572.06, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4015.56, 188.63, 10526.48 ) LPos=( 600.06, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4018.35, 154.90, 10521.35 ) LPos=( 605.81, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4023.92, 157.80, 10511.30 ) LPos=( 617.31, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4018.35, 163.52, 10521.38 ) LPos=( 605.81, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.35, 169.27, 10521.40 ) LPos=( 605.81, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4004.78, 157.70, 10545.86 ) LPos=( 577.81, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 4015.56, 141.26, 10526.34 ) LPos=( 600.06, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 4018.35, 147.02, 10521.33 ) LPos=( 605.81, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4019.74, 144.16, 10518.81 ) LPos=( 608.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4023.92, 141.30, 10511.25 ) LPos=( 617.31, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4003.39, 146.94, 10548.34 ) LPos=( 574.94, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 4000.61, 141.18, 10553.36 ) LPos=( 569.19, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4023.92, 98.93, 10511.13 ) LPos=( 617.31, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4000.61, 110.30, 10553.26 ) LPos=( 569.19, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4014.17, 70.88, 10528.65 ) LPos=( 597.19, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 4016.96, 85.27, 10523.66 ) LPos=( 602.94, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 4019.74, 91.03, 10518.65 ) LPos=( 608.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4021.13, 70.91, 10516.08 ) LPos=( 611.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.13, 76.66, 10516.09 ) LPos=( 611.56, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4021.13, 85.29, 10516.12 ) LPos=( 611.56, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4022.53, 82.42, 10513.60 ) LPos=( 614.44, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4010.36, 90.98, 10535.60 ) LPos=( 589.31, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 4010.36, 88.11, 10535.59 ) LPos=( 589.31, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4003.39, 73.69, 10548.13 ) LPos=( 574.94, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4022.53, 42.92, 10513.48 ) LPos=( 614.44, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 4021.13, 54.41, 10516.03 ) LPos=( 611.56, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.35, 57.27, 10521.07 ) LPos=( 605.81, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4014.17, 57.25, 10528.61 ) LPos=( 597.19, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4015.56, 60.13, 10526.11 ) LPos=( 600.06, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4007.57, 57.22, 10540.53 ) LPos=( 583.56, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.00, 62.94, 10550.61 ) LPos=( 572.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 4019.74, 26.41, 10518.46 ) LPos=( 608.69, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 4019.74, 35.03, 10518.49 ) LPos=( 608.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4023.92, 20.68, 10510.90 ) LPos=( 617.31, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4023.92, 26.43, 10510.92 ) LPos=( 617.31, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 4006.18, 32.08, 10542.97 ) LPos=( 580.69, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 4002.00, 29.19, 10550.51 ) LPos=( 572.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4008.96, 23.47, 10537.92 ) LPos=( 586.44, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4004.79, 14.83, 10545.44 ) LPos=( 577.81, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 4021.14, -1.59, 10515.86 ) LPos=( 611.56, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.14, 1.29, 10515.87 ) LPos=( 611.56, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.35, 1.27, 10520.90 ) LPos=( 605.81, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4021.14, 4.16, 10515.88 ) LPos=( 611.56, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4019.74, 4.16, 10518.40 ) LPos=( 608.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4018.35, 4.15, 10520.91 ) LPos=( 605.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.96, 4.14, 10523.43 ) LPos=( 602.94, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4022.53, 7.05, 10513.37 ) LPos=( 614.44, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4019.74, 7.03, 10518.40 ) LPos=( 608.69, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4018.35, 7.02, 10520.92 ) LPos=( 605.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4015.57, 7.01, 10525.95 ) LPos=( 600.06, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4003.40, 1.19, 10547.91 ) LPos=( 574.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4003.40, -1.68, 10547.91 ) LPos=( 574.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4000.61, -7.45, 10552.92 ) LPos=( 569.19, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4014.17, -41.12, 10528.32 ) LPos=( 597.19, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4014.17, -38.25, 10528.33 ) LPos=( 597.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4023.92, -41.07, 10510.72 ) LPos=( 617.31, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4004.79, -26.80, 10545.32 ) LPos=( 577.81, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 4000.61, -32.57, 10552.85 ) LPos=( 569.19, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4003.40, -41.18, 10547.79 ) LPos=( 574.94, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4023.92, -66.20, 10510.64 ) LPos=( 617.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4021.14, -66.21, 10515.67 ) LPos=( 611.56, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4015.57, -66.24, 10525.74 ) LPos=( 600.06, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 4016.96, -63.36, 10523.23 ) LPos=( 602.94, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.14, -54.71, 10515.71 ) LPos=( 611.56, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4014.17, -54.75, 10528.28 ) LPos=( 597.19, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4023.92, -51.82, 10510.69 ) LPos=( 617.31, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4022.53, -51.83, 10513.20 ) LPos=( 614.44, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4019.75, -48.97, 10518.24 ) LPos=( 608.69, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4006.18, -60.54, 10542.70 ) LPos=( 580.69, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 4006.18, -63.42, 10542.69 ) LPos=( 580.69, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4002.00, -57.69, 10550.26 ) LPos=( 572.06, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4002.00, -60.56, 10550.25 ) LPos=( 572.06, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4000.61, -49.07, 10552.80 ) LPos=( 569.19, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4000.61, -63.45, 10552.75 ) LPos=( 569.19, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4014.18, -85.62, 10528.19 ) LPos=( 597.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4015.57, -91.37, 10525.66 ) LPos=( 600.06, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4015.57, -79.87, 10525.70 ) LPos=( 600.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 4016.96, -85.61, 10523.16 ) LPos=( 602.94, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4019.75, -88.47, 10518.12 ) LPos=( 608.69, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4021.14, -85.59, 10515.62 ) LPos=( 611.56, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4021.14, -82.71, 10515.63 ) LPos=( 611.56, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4023.92, -97.07, 10510.55 ) LPos=( 617.31, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4006.18, -77.04, 10542.65 ) LPos=( 580.69, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4002.00, -79.94, 10550.19 ) LPos=( 572.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 4010.36, -79.89, 10535.10 ) LPos=( 589.31, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4002.01, -85.69, 10550.17 ) LPos=( 572.06, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4008.97, -97.15, 10537.56 ) LPos=( 586.44, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.96, -107.86, 10523.10 ) LPos=( 602.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4010.36, -110.77, 10535.01 ) LPos=( 589.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 4007.58, -105.03, 10540.06 ) LPos=( 583.56, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4006.18, -110.79, 10542.55 ) LPos=( 580.69, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.01, -105.06, 10550.12 ) LPos=( 572.06, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4002.01, -122.31, 10550.07 ) LPos=( 572.06, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4002.01, -125.19, 10550.06 ) LPos=( 572.06, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4000.61, -113.69, 10552.61 ) LPos=( 569.19, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4000.61, -116.57, 10552.60 ) LPos=( 569.19, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4014.18, -147.37, 10528.01 ) LPos=( 597.19, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4015.57, -147.37, 10525.50 ) LPos=( 600.06, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 4007.58, -133.03, 10539.97 ) LPos=( 583.56, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 4008.97, -133.03, 10537.46 ) LPos=( 586.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4002.01, -135.94, 10550.03 ) LPos=( 572.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4016.96, -169.61, 10522.92 ) LPos=( 602.94, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.36, -166.73, 10520.41 ) LPos=( 605.81, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4021.14, -160.96, 10515.40 ) LPos=( 611.56, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4010.36, -169.64, 10534.84 ) LPos=( 589.31, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4003.40, -175.43, 10547.40 ) LPos=( 574.94, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4002.01, -172.56, 10549.92 ) LPos=( 572.06, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4023.93, -209.07, 10510.22 ) LPos=( 617.31, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 4004.79, -197.67, 10544.81 ) LPos=( 577.81, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4002.01, -209.19, 10549.81 ) LPos=( 572.06, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4003.40, -209.18, 10547.30 ) LPos=( 574.94, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4002.10, -220.12, 10549.62 ) LPos=( 572.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4010.82, -220.08, 10533.87 ) LPos=( 590.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4013.73, -220.06, 10528.62 ) LPos=( 596.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 4016.63, -220.05, 10523.37 ) LPos=( 602.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4002.10, -226.12, 10549.60 ) LPos=( 572.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4010.82, -232.08, 10533.83 ) LPos=( 590.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 4019.54, -232.03, 10518.09 ) LPos=( 608.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 4010.82, -238.08, 10533.82 ) LPos=( 590.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 4019.54, -238.03, 10518.07 ) LPos=( 608.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4007.91, -250.09, 10539.03 ) LPos=( 584.25, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4002.10, -262.12, 10549.49 ) LPos=( 572.25, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4019.54, -282.03, 10517.94 ) LPos=( 608.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.10, -312.12, 10549.35 ) LPos=( 572.25, -312.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4005.01, -318.11, 10544.08 ) LPos=( 578.25, -318.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4007.92, -338.09, 10538.77 ) LPos=( 584.25, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 4010.82, -350.08, 10533.49 ) LPos=( 590.25, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4013.73, -350.06, 10528.24 ) LPos=( 596.25, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4022.45, -388.01, 10512.38 ) LPos=( 614.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 4022.45, -412.01, 10512.31 ) LPos=( 614.25, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4013.73, -500.06, 10527.80 ) LPos=( 596.25, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4013.73, -536.06, 10527.69 ) LPos=( 596.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.64, -592.05, 10522.28 ) LPos=( 602.25, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4041.07, 602.08, 10481.60 ) LPos=( 652.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4029.44, 590.02, 10502.56 ) LPos=( 628.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4038.16, 590.06, 10486.82 ) LPos=( 646.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4043.98, 590.10, 10476.32 ) LPos=( 658.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4046.88, 590.11, 10471.07 ) LPos=( 664.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4032.35, 584.03, 10497.30 ) LPos=( 634.75, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4049.79, 584.13, 10465.80 ) LPos=( 670.75, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4035.26, 578.05, 10492.03 ) LPos=( 640.75, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4035.26, 564.05, 10491.99 ) LPos=( 640.75, 563.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 4041.07, 552.08, 10481.46 ) LPos=( 652.75, 551.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 4043.98, 552.10, 10476.21 ) LPos=( 658.75, 551.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 4043.98, 546.10, 10476.19 ) LPos=( 658.75, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4041.08, 396.08, 10481.00 ) LPos=( 652.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 4041.08, 390.08, 10480.98 ) LPos=( 652.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 4029.45, 372.02, 10501.92 ) LPos=( 628.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4041.08, 360.08, 10480.89 ) LPos=( 652.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4032.36, 354.03, 10496.62 ) LPos=( 634.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4041.08, 354.08, 10480.88 ) LPos=( 652.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4049.80, 310.13, 10465.00 ) LPos=( 670.75, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4049.80, 304.13, 10464.98 ) LPos=( 670.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 4041.08, 278.08, 10480.65 ) LPos=( 652.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 4043.99, 278.10, 10475.40 ) LPos=( 658.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4043.99, 260.10, 10475.35 ) LPos=( 658.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4038.17, 254.07, 10485.83 ) LPos=( 646.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4043.99, 254.10, 10475.33 ) LPos=( 658.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4049.80, 248.13, 10464.82 ) LPos=( 670.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4044.32, 222.54, 10474.64 ) LPos=( 659.44, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4042.93, 225.40, 10477.16 ) LPos=( 656.56, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4037.72, 219.63, 10486.55 ) LPos=( 645.81, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4032.15, 213.85, 10496.59 ) LPos=( 634.31, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 4042.93, 197.40, 10477.08 ) LPos=( 656.56, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4036.33, 191.62, 10488.98 ) LPos=( 642.94, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4032.15, 182.97, 10496.50 ) LPos=( 634.31, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4033.54, 182.98, 10493.99 ) LPos=( 637.19, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4036.33, 182.99, 10488.96 ) LPos=( 642.94, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4051.29, 157.95, 10461.87 ) LPos=( 673.81, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4042.93, 166.53, 10476.99 ) LPos=( 656.56, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,05 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4029.37, 154.96, 10501.45 ) LPos=( 628.56, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4041.54, 129.90, 10479.40 ) LPos=( 653.69, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4032.15, 135.60, 10496.36 ) LPos=( 634.31, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4030.76, 132.71, 10498.87 ) LPos=( 631.44, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4034.94, 132.74, 10491.33 ) LPos=( 640.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4030.76, 129.84, 10498.86 ) LPos=( 631.44, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4034.94, 129.86, 10491.32 ) LPos=( 640.06, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,08 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4051.29, 113.45, 10461.74 ) LPos=( 673.81, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4036.33, 116.24, 10488.76 ) LPos=( 642.94, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4036.33, 101.87, 10488.72 ) LPos=( 642.94, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4033.55, 119.10, 10493.80 ) LPos=( 637.19, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4033.55, 116.23, 10493.79 ) LPos=( 637.19, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 4032.15, 107.60, 10496.28 ) LPos=( 634.31, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4029.37, 116.21, 10501.34 ) LPos=( 628.56, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4027.97, 116.20, 10503.85 ) LPos=( 625.69, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4027.98, 104.70, 10503.82 ) LPos=( 625.69, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4049.90, 76.82, 10464.15 ) LPos=( 670.94, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 4034.94, 91.11, 10491.20 ) LPos=( 640.06, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4027.98, 76.70, 10503.74 ) LPos=( 625.69, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4049.90, 43.07, 10464.05 ) LPos=( 670.94, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4041.54, 43.02, 10479.14 ) LPos=( 653.69, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 4047.11, 45.93, 10469.09 ) LPos=( 665.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 4041.54, 51.65, 10479.17 ) LPos=( 653.69, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4037.73, 60.25, 10486.08 ) LPos=( 645.81, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4029.37, 48.71, 10501.14 ) LPos=( 628.56, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4042.93, 17.91, 10476.55 ) LPos=( 656.56, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4045.72, 17.92, 10471.52 ) LPos=( 662.31, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 4045.72, 29.42, 10471.56 ) LPos=( 662.31, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4049.90, 26.57, 10464.00 ) LPos=( 670.94, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4051.29, 23.70, 10461.48 ) LPos=( 673.81, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4036.33, -10.13, 10488.39 ) LPos=( 642.94, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 4036.33, -13.00, 10488.38 ) LPos=( 642.94, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 4034.94, 7.11, 10490.96 ) LPos=( 640.06, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4034.94, 1.36, 10490.94 ) LPos=( 640.06, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 4033.55, -10.14, 10493.42 ) LPos=( 637.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4027.98, -7.30, 10503.49 ) LPos=( 625.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4044.33, -32.34, 10473.89 ) LPos=( 659.44, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 4044.33, -23.71, 10473.92 ) LPos=( 659.44, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4045.72, -40.95, 10471.35 ) LPos=( 662.31, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4051.29, -35.18, 10461.31 ) LPos=( 673.81, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4036.33, -23.75, 10488.35 ) LPos=( 642.94, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4029.37, -29.54, 10500.91 ) LPos=( 628.56, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 4037.73, -29.50, 10485.82 ) LPos=( 645.81, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4029.37, -41.04, 10500.88 ) LPos=( 628.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4047.11, -51.70, 10468.80 ) LPos=( 665.19, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4037.73, -57.50, 10485.74 ) LPos=( 645.81, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4037.73, -69.00, 10485.70 ) LPos=( 645.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 4027.98, -69.05, 10503.31 ) LPos=( 625.69, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4042.94, -91.22, 10476.23 ) LPos=( 656.56, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4047.11, -88.32, 10468.70 ) LPos=( 665.19, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4049.90, -79.68, 10463.69 ) LPos=( 670.94, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4027.98, -85.55, 10503.26 ) LPos=( 625.69, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4033.55, -94.14, 10493.17 ) LPos=( 637.19, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4032.16, -97.03, 10495.68 ) LPos=( 634.31, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4048.51, -124.94, 10466.07 ) LPos=( 668.06, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4051.29, -116.30, 10461.07 ) LPos=( 673.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4042.94, -113.47, 10476.17 ) LPos=( 656.56, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4045.72, -104.83, 10471.16 ) LPos=( 662.31, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4036.34, -104.88, 10488.11 ) LPos=( 642.94, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 4042.94, -144.34, 10476.08 ) LPos=( 656.56, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4051.29, -150.05, 10460.97 ) LPos=( 673.81, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4048.51, -180.94, 10465.91 ) LPos=( 668.06, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4051.30, -178.05, 10460.89 ) LPos=( 673.81, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4048.51, -178.06, 10465.92 ) LPos=( 668.06, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4037.73, -172.37, 10485.40 ) LPos=( 645.81, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4034.95, -166.64, 10490.45 ) LPos=( 640.06, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 4051.30, -188.80, 10460.86 ) LPos=( 673.81, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4029.38, -197.54, 10500.42 ) LPos=( 628.56, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4030.77, -197.53, 10497.90 ) LPos=( 631.44, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4036.34, -203.25, 10487.82 ) LPos=( 642.94, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4036.34, -209.00, 10487.81 ) LPos=( 642.94, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 4032.38, -249.96, 10494.85 ) LPos=( 634.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4035.28, -249.95, 10489.60 ) LPos=( 640.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4038.19, -249.93, 10484.35 ) LPos=( 646.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4049.81, -249.87, 10463.36 ) LPos=( 670.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4038.19, -255.93, 10484.33 ) LPos=( 646.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4044.00, -255.90, 10473.84 ) LPos=( 658.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4029.47, -275.98, 10500.02 ) LPos=( 628.75, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4032.38, -281.96, 10494.76 ) LPos=( 634.75, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4035.28, -293.95, 10489.47 ) LPos=( 640.75, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4038.19, -317.93, 10484.15 ) LPos=( 646.75, -318.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4032.38, -367.96, 10494.50 ) LPos=( 634.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4038.19, -387.93, 10483.95 ) LPos=( 646.75, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4046.91, -411.88, 10468.13 ) LPos=( 664.75, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4044.01, -417.90, 10473.36 ) LPos=( 658.75, -418.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4046.91, -429.88, 10468.08 ) LPos=( 664.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:203,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 4049.82, -455.87, 10462.75 ) LPos=( 670.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:203,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4038.20, -567.93, 10483.42 ) LPos=( 646.75, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:203,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4041.11, -591.91, 10478.10 ) LPos=( 652.75, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,00 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.78, 644.98, 10494.19 ) LPos=( -640.75, 644.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4039.68, 619.00, 10488.86 ) LPos=( -646.75, 618.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4042.59, 589.01, 10483.52 ) LPos=( -652.75, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4042.59, 557.01, 10483.43 ) LPos=( -652.75, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4030.96, 520.95, 10504.32 ) LPos=( -628.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4048.40, 507.04, 10472.79 ) LPos=( -664.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4042.59, 507.01, 10483.28 ) LPos=( -652.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4033.86, 506.97, 10499.03 ) LPos=( -634.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4042.59, 501.01, 10483.27 ) LPos=( -652.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.77, 500.98, 10493.76 ) LPos=( -640.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4051.31, 471.06, 10467.43 ) LPos=( -670.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4033.86, 450.97, 10498.86 ) LPos=( -634.75, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.77, 420.98, 10493.53 ) LPos=( -640.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4030.95, 420.95, 10504.03 ) LPos=( -628.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4051.31, 353.06, 10467.09 ) LPos=( -670.75, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4051.30, 339.06, 10467.05 ) LPos=( -670.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4045.49, 339.03, 10477.54 ) LPos=( -658.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4030.95, 338.95, 10503.78 ) LPos=( -628.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4048.40, 333.04, 10472.28 ) LPos=( -664.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4048.40, 327.04, 10472.26 ) LPos=( -664.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4039.67, 327.00, 10488.00 ) LPos=( -646.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4048.40, 315.04, 10472.22 ) LPos=( -664.75, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4051.30, 303.06, 10466.94 ) LPos=( -670.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4039.67, 277.00, 10487.86 ) LPos=( -646.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4039.67, 265.00, 10487.82 ) LPos=( -646.75, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4048.39, 247.04, 10472.02 ) LPos=( -664.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4039.67, 247.00, 10487.77 ) LPos=( -646.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4037.82, 212.80, 10491.00 ) LPos=( -642.94, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4039.22, 224.31, 10488.52 ) LPos=( -645.81, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4044.43, 209.96, 10479.08 ) LPos=( -656.56, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4052.79, 221.50, 10464.02 ) LPos=( -673.81, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4052.79, 210.00, 10463.99 ) LPos=( -673.81, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4039.22, 196.31, 10488.44 ) LPos=( -645.81, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4039.22, 202.06, 10488.46 ) LPos=( -645.81, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4037.82, 187.68, 10490.93 ) LPos=( -642.94, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4037.82, 199.18, 10490.96 ) LPos=( -642.94, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4048.60, 193.48, 10471.48 ) LPos=( -665.19, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -4050.00, 184.87, 10468.94 ) LPos=( -668.06, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4052.78, 182.01, 10463.91 ) LPos=( -673.81, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4029.46, 159.63, 10505.94 ) LPos=( -625.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4035.03, 162.54, 10495.89 ) LPos=( -637.19, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4033.64, 168.28, 10498.42 ) LPos=( -634.31, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4030.86, 171.14, 10503.46 ) LPos=( -628.56, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4029.46, 174.01, 10505.98 ) LPos=( -625.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4043.03, 171.20, 10481.48 ) LPos=( -653.69, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4043.03, 168.33, 10481.47 ) LPos=( -653.69, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4043.03, 159.70, 10481.44 ) LPos=( -653.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4043.03, 156.83, 10481.44 ) LPos=( -653.69, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4043.03, 153.95, 10481.43 ) LPos=( -653.69, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.42, 165.46, 10478.95 ) LPos=( -656.56, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4044.42, 156.84, 10478.92 ) LPos=( -656.56, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4045.82, 162.59, 10476.42 ) LPos=( -659.44, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4048.60, 165.48, 10471.40 ) LPos=( -665.19, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4050.00, 153.99, 10468.85 ) LPos=( -668.06, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4051.39, 156.87, 10466.35 ) LPos=( -670.94, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4035.03, 146.04, 10495.84 ) LPos=( -637.19, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4045.82, 146.09, 10476.38 ) LPos=( -659.44, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4051.39, 140.37, 10466.30 ) LPos=( -670.94, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.82, 140.34, 10476.36 ) LPos=( -659.44, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4044.42, 140.34, 10478.87 ) LPos=( -656.56, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4045.82, 134.59, 10476.34 ) LPos=( -659.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4044.42, 134.59, 10478.86 ) LPos=( -656.56, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4043.03, 134.58, 10481.37 ) LPos=( -653.69, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4044.42, 131.71, 10478.85 ) LPos=( -656.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4043.03, 131.70, 10481.36 ) LPos=( -653.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4051.39, 128.87, 10466.27 ) LPos=( -670.94, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4044.42, 128.84, 10478.84 ) LPos=( -656.56, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4052.78, 126.01, 10463.74 ) LPos=( -673.81, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4035.03, 100.79, 10495.70 ) LPos=( -637.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.43, 100.79, 10493.19 ) LPos=( -640.06, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4037.82, 100.80, 10490.68 ) LPos=( -642.94, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4036.43, 106.54, 10493.21 ) LPos=( -640.06, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4039.21, 106.56, 10488.18 ) LPos=( -645.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4029.46, 109.38, 10505.79 ) LPos=( -625.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4035.03, 112.29, 10495.74 ) LPos=( -637.19, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4043.03, 112.33, 10481.31 ) LPos=( -653.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4043.03, 109.45, 10481.30 ) LPos=( -653.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4043.03, 103.70, 10481.28 ) LPos=( -653.69, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4043.03, 97.95, 10481.26 ) LPos=( -653.69, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4044.42, 115.21, 10478.80 ) LPos=( -656.56, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.42, 109.46, 10478.78 ) LPos=( -656.56, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4045.82, 115.22, 10476.28 ) LPos=( -659.44, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4045.82, 97.97, 10476.23 ) LPos=( -659.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4047.21, 106.60, 10473.74 ) LPos=( -662.31, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4048.60, 100.86, 10471.21 ) LPos=( -665.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4052.78, 118.13, 10463.72 ) LPos=( -673.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4052.78, 115.26, 10463.71 ) LPos=( -673.81, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4052.78, 112.38, 10463.70 ) LPos=( -673.81, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4039.21, 69.93, 10488.07 ) LPos=( -645.81, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4039.21, 72.81, 10488.08 ) LPos=( -645.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4030.85, 90.01, 10503.22 ) LPos=( -628.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4029.46, 72.76, 10505.68 ) LPos=( -625.69, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4029.46, 90.01, 10505.73 ) LPos=( -625.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4051.39, 90.12, 10466.15 ) LPos=( -670.94, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4052.78, 78.63, 10463.60 ) LPos=( -673.81, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4051.39, 78.62, 10466.12 ) LPos=( -670.94, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4049.99, 78.62, 10468.63 ) LPos=( -668.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4043.03, 78.58, 10481.21 ) LPos=( -653.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4049.99, 69.99, 10468.61 ) LPos=( -668.06, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4047.21, 69.98, 10473.64 ) LPos=( -662.31, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4037.82, 53.43, 10490.54 ) LPos=( -642.94, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4033.64, 62.03, 10498.11 ) LPos=( -634.31, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, 47.72, 10476.09 ) LPos=( -659.44, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4045.81, 44.84, 10476.08 ) LPos=( -659.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4047.21, 59.23, 10473.61 ) LPos=( -662.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4047.21, 56.35, 10473.60 ) LPos=( -662.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4049.99, 62.12, 10468.58 ) LPos=( -668.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4049.99, 53.49, 10468.56 ) LPos=( -668.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4052.78, 59.26, 10463.55 ) LPos=( -673.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4052.78, 53.51, 10463.53 ) LPos=( -673.81, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4039.21, 19.68, 10487.92 ) LPos=( -645.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -4036.42, 22.54, 10492.96 ) LPos=( -640.06, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4035.03, 13.91, 10495.45 ) LPos=( -637.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4035.03, 19.66, 10495.47 ) LPos=( -637.19, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4033.64, 13.90, 10497.96 ) LPos=( -634.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4033.64, 16.78, 10497.97 ) LPos=( -634.31, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4033.64, 19.65, 10497.98 ) LPos=( -634.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4032.24, 13.90, 10500.48 ) LPos=( -631.44, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4032.24, 22.52, 10500.50 ) LPos=( -631.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4030.85, 31.14, 10503.05 ) LPos=( -628.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4029.46, 16.76, 10505.52 ) LPos=( -625.69, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4029.46, 31.13, 10505.56 ) LPos=( -625.69, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4043.03, 34.08, 10481.08 ) LPos=( -653.69, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4048.60, 22.61, 10470.98 ) LPos=( -665.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4047.21, 22.60, 10473.50 ) LPos=( -662.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4044.42, 22.59, 10478.53 ) LPos=( -656.56, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4047.21, 19.73, 10473.49 ) LPos=( -662.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4045.81, 16.84, 10476.00 ) LPos=( -659.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4030.85, -8.36, 10502.93 ) LPos=( -628.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4030.85, -5.48, 10502.94 ) LPos=( -628.56, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4039.21, -5.44, 10487.85 ) LPos=( -645.81, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4030.85, -2.61, 10502.95 ) LPos=( -628.56, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.42, 0.29, 10492.90 ) LPos=( -640.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4037.82, 0.30, 10490.38 ) LPos=( -642.94, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4033.64, 3.15, 10497.93 ) LPos=( -634.31, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4029.46, 6.01, 10505.49 ) LPos=( -625.69, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4044.42, -8.29, 10478.44 ) LPos=( -656.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4044.42, -14.04, 10478.42 ) LPos=( -656.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4049.99, 6.12, 10468.42 ) LPos=( -668.06, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4036.42, -42.08, 10492.77 ) LPos=( -640.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4036.42, -24.83, 10492.82 ) LPos=( -640.06, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4035.03, -42.09, 10495.29 ) LPos=( -637.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4035.03, -21.96, 10495.34 ) LPos=( -637.19, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4032.24, -39.23, 10500.32 ) LPos=( -631.44, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4032.24, -27.73, 10500.36 ) LPos=( -631.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4030.85, -27.73, 10502.87 ) LPos=( -628.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4049.99, -21.88, 10468.34 ) LPos=( -668.06, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4051.38, -24.75, 10465.81 ) LPos=( -670.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4047.20, -27.65, 10473.35 ) LPos=( -662.31, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4045.81, -30.53, 10475.86 ) LPos=( -659.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4052.78, -33.37, 10463.27 ) LPos=( -673.81, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4044.42, -36.29, 10478.35 ) LPos=( -656.56, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4048.60, -42.02, 10470.79 ) LPos=( -665.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4047.20, -42.02, 10473.31 ) LPos=( -662.31, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4037.81, -70.07, 10490.17 ) LPos=( -642.94, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4035.03, -58.59, 10495.24 ) LPos=( -637.19, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4035.03, -55.71, 10495.25 ) LPos=( -637.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4033.64, -49.97, 10497.78 ) LPos=( -634.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4039.21, -49.94, 10487.72 ) LPos=( -645.81, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.42, -58.54, 10478.29 ) LPos=( -656.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4047.20, -55.65, 10473.27 ) LPos=( -662.31, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4049.99, -52.76, 10468.25 ) LPos=( -668.06, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4052.78, -69.99, 10463.17 ) LPos=( -673.81, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4036.42, -92.33, 10492.62 ) LPos=( -640.06, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4035.03, -98.09, 10495.12 ) LPos=( -637.19, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4035.03, -95.21, 10495.13 ) LPos=( -637.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4035.03, -92.34, 10495.14 ) LPos=( -637.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4035.03, -77.96, 10495.18 ) LPos=( -637.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4033.63, -77.97, 10497.70 ) LPos=( -634.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4048.60, -80.77, 10470.68 ) LPos=( -665.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, -83.66, 10475.70 ) LPos=( -659.44, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4052.78, -89.37, 10463.11 ) LPos=( -673.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4052.78, -92.24, 10463.10 ) LPos=( -673.81, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4047.20, -92.27, 10473.16 ) LPos=( -662.31, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4044.42, -92.29, 10478.19 ) LPos=( -656.56, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4045.81, -95.16, 10475.67 ) LPos=( -659.44, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4043.02, -98.05, 10480.69 ) LPos=( -653.69, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4032.24, -126.10, 10500.07 ) LPos=( -631.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.42, -123.20, 10492.53 ) LPos=( -640.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4035.03, -120.34, 10495.06 ) LPos=( -637.19, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4037.81, -120.32, 10490.03 ) LPos=( -642.94, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4035.03, -117.46, 10495.06 ) LPos=( -637.19, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4033.63, -114.59, 10497.59 ) LPos=( -634.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4035.03, -111.71, 10495.08 ) LPos=( -637.19, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4029.45, -108.87, 10505.15 ) LPos=( -625.69, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4043.02, -108.80, 10480.66 ) LPos=( -653.69, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4047.20, -108.77, 10473.11 ) LPos=( -662.31, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4037.81, -154.07, 10489.93 ) LPos=( -642.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4035.03, -139.71, 10495.00 ) LPos=( -637.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4033.63, -148.34, 10497.49 ) LPos=( -634.31, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4033.63, -139.72, 10497.51 ) LPos=( -634.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4033.63, -136.84, 10497.52 ) LPos=( -634.31, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4033.63, -133.97, 10497.53 ) LPos=( -634.31, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4032.24, -142.60, 10500.02 ) LPos=( -631.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4032.24, -139.73, 10500.03 ) LPos=( -631.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4032.24, -136.85, 10500.04 ) LPos=( -631.44, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4032.24, -133.98, 10500.05 ) LPos=( -631.44, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4030.85, -154.11, 10502.50 ) LPos=( -628.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4030.85, -136.86, 10502.55 ) LPos=( -628.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4029.45, -154.12, 10505.02 ) LPos=( -625.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, -139.66, 10475.54 ) LPos=( -659.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4043.02, -145.42, 10480.55 ) LPos=( -653.69, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.42, -179.20, 10492.37 ) LPos=( -640.06, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -4033.63, -176.34, 10497.41 ) LPos=( -634.31, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4029.45, -164.87, 10504.98 ) LPos=( -625.69, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4037.81, -161.95, 10489.90 ) LPos=( -642.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4039.20, -161.94, 10487.39 ) LPos=( -645.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.41, -170.54, 10477.96 ) LPos=( -656.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, -176.28, 10475.43 ) LPos=( -659.44, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4045.81, -179.16, 10475.42 ) LPos=( -659.44, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4048.59, -179.14, 10470.39 ) LPos=( -665.19, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4049.99, -161.88, 10467.93 ) LPos=( -668.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4049.99, -182.01, 10467.87 ) LPos=( -668.06, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4052.77, -179.12, 10462.85 ) LPos=( -673.81, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4052.77, -181.99, 10462.84 ) LPos=( -673.81, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4037.81, -210.07, 10489.76 ) LPos=( -642.94, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4033.63, -198.59, 10497.34 ) LPos=( -634.31, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4032.24, -198.60, 10499.86 ) LPos=( -631.44, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4030.84, -192.86, 10502.39 ) LPos=( -628.56, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4047.20, -189.90, 10472.87 ) LPos=( -662.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4052.77, -192.74, 10462.81 ) LPos=( -673.81, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4051.38, -192.75, 10465.32 ) LPos=( -670.94, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4047.20, -195.65, 10472.86 ) LPos=( -662.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4051.29, -220.94, 10465.40 ) LPos=( -670.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.75, -227.02, 10491.63 ) LPos=( -640.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4030.93, -233.05, 10502.11 ) LPos=( -628.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4033.84, -245.03, 10496.82 ) LPos=( -634.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4039.66, -251.00, 10486.31 ) LPos=( -646.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.75, -251.02, 10491.56 ) LPos=( -640.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4033.84, -251.03, 10496.80 ) LPos=( -634.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4042.56, -256.98, 10481.04 ) LPos=( -652.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4039.66, -257.00, 10486.29 ) LPos=( -646.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4036.75, -257.01, 10491.54 ) LPos=( -640.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4033.84, -257.03, 10496.79 ) LPos=( -634.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4030.93, -257.05, 10502.04 ) LPos=( -628.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -4036.75, -263.01, 10491.52 ) LPos=( -640.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4051.29, -276.94, 10465.24 ) LPos=( -670.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4039.66, -277.00, 10486.23 ) LPos=( -646.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4045.47, -282.97, 10475.72 ) LPos=( -658.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4033.84, -295.03, 10496.68 ) LPos=( -634.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4042.56, -312.98, 10480.88 ) LPos=( -652.75, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4033.84, -333.03, 10496.56 ) LPos=( -634.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4030.93, -333.05, 10501.81 ) LPos=( -628.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4030.93, -345.05, 10501.78 ) LPos=( -628.75, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4039.65, -351.00, 10486.01 ) LPos=( -646.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4030.93, -357.05, 10501.74 ) LPos=( -628.75, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4039.65, -369.00, 10485.96 ) LPos=( -646.75, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:208,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4048.37, -406.95, 10470.10 ) LPos=( -664.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:209,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4030.93, -481.04, 10501.38 ) LPos=( -628.75, -481.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:209,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4042.56, -524.98, 10480.26 ) LPos=( -652.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:209,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4042.56, -542.98, 10480.20 ) LPos=( -652.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:209,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4039.65, -543.00, 10485.45 ) LPos=( -646.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:209,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4033.83, -593.03, 10495.80 ) LPos=( -634.75, -593.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4003.58, 550.81, 10553.83 ) LPos=( -572.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4023.93, 532.91, 10517.04 ) LPos=( -614.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4023.93, 500.91, 10516.94 ) LPos=( -614.25, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4023.93, 494.91, 10516.93 ) LPos=( -614.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4023.93, 488.91, 10516.91 ) LPos=( -614.25, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4023.93, 482.91, 10516.89 ) LPos=( -614.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4015.21, 482.87, 10532.64 ) LPos=( -596.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4021.02, 476.90, 10522.12 ) LPos=( -608.25, 476.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4003.57, 470.81, 10553.59 ) LPos=( -572.25, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4018.11, 464.88, 10527.33 ) LPos=( -602.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:210,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4015.21, 464.87, 10532.58 ) LPos=( -596.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4015.20, 450.87, 10532.54 ) LPos=( -596.25, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4012.30, 438.85, 10537.76 ) LPos=( -590.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4006.48, 432.82, 10548.23 ) LPos=( -578.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4012.30, 426.85, 10537.72 ) LPos=( -590.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4009.39, 426.84, 10542.97 ) LPos=( -584.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4018.11, 420.88, 10527.21 ) LPos=( -602.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4003.57, 420.81, 10553.45 ) LPos=( -572.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4006.48, 414.82, 10548.18 ) LPos=( -578.25, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4012.30, 408.85, 10537.67 ) LPos=( -590.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4006.48, 408.82, 10548.16 ) LPos=( -578.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4012.30, 394.85, 10537.63 ) LPos=( -590.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -4015.20, 382.87, 10532.34 ) LPos=( -596.25, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4003.57, 376.81, 10553.32 ) LPos=( -572.25, 376.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4015.20, 364.87, 10532.29 ) LPos=( -596.25, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4006.48, 338.82, 10547.96 ) LPos=( -578.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4006.48, 332.82, 10547.94 ) LPos=( -578.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.39, 326.84, 10542.67 ) LPos=( -584.25, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4006.48, 320.82, 10547.91 ) LPos=( -578.25, 320.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4023.92, 302.91, 10516.36 ) LPos=( -614.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4006.48, 302.82, 10547.85 ) LPos=( -578.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4012.29, 296.85, 10537.34 ) LPos=( -590.25, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4018.11, 276.88, 10526.78 ) LPos=( -602.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4003.57, 276.81, 10553.02 ) LPos=( -572.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4021.01, 270.90, 10521.52 ) LPos=( -608.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4018.11, 270.88, 10526.77 ) LPos=( -602.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4021.01, 264.90, 10521.50 ) LPos=( -608.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4003.57, 264.81, 10552.99 ) LPos=( -572.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:211,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4003.57, 258.81, 10552.97 ) LPos=( -572.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4006.26, 218.38, 10547.99 ) LPos=( -577.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4007.66, 218.39, 10545.47 ) LPos=( -580.69, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4004.87, 224.13, 10550.52 ) LPos=( -574.94, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4007.66, 227.02, 10545.50 ) LPos=( -580.69, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4007.66, 229.89, 10545.51 ) LPos=( -580.69, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4022.62, 229.97, 10518.50 ) LPos=( -611.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4010.44, 184.66, 10540.34 ) LPos=( -586.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4010.44, 190.41, 10540.36 ) LPos=( -586.44, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4010.44, 199.03, 10540.39 ) LPos=( -586.44, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.05, 196.15, 10542.89 ) LPos=( -583.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4025.40, 201.99, 10513.39 ) LPos=( -617.31, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4015.65, 184.68, 10530.94 ) LPos=( -597.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4007.65, 153.77, 10545.28 ) LPos=( -580.69, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4007.65, 168.14, 10545.33 ) LPos=( -580.69, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4009.05, 168.15, 10542.81 ) LPos=( -583.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.08, 173.86, 10555.40 ) LPos=( -569.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4003.48, 173.87, 10552.89 ) LPos=( -572.06, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4006.26, 173.88, 10547.86 ) LPos=( -577.81, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4007.65, 173.89, 10545.34 ) LPos=( -580.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4018.44, 159.57, 10525.84 ) LPos=( -602.94, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4025.40, 171.11, 10513.30 ) LPos=( -617.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4010.44, 131.53, 10540.19 ) LPos=( -586.44, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4003.47, 140.12, 10552.79 ) LPos=( -572.06, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4002.08, 134.36, 10555.29 ) LPos=( -569.19, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4017.04, 145.94, 10528.31 ) LPos=( -600.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4022.62, 140.22, 10518.24 ) LPos=( -611.56, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4018.44, 140.20, 10525.78 ) LPos=( -602.94, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4019.83, 134.46, 10523.25 ) LPos=( -605.81, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4024.01, 131.60, 10515.70 ) LPos=( -614.44, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4021.22, 131.59, 10520.73 ) LPos=( -608.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4019.83, 131.58, 10523.24 ) LPos=( -605.81, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4021.22, 128.71, 10520.72 ) LPos=( -608.69, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4019.83, 128.71, 10523.23 ) LPos=( -605.81, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4021.22, 125.84, 10520.71 ) LPos=( -608.69, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -4018.44, 125.82, 10525.74 ) LPos=( -602.94, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4004.87, 103.50, 10550.17 ) LPos=( -574.94, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4009.05, 106.40, 10542.63 ) LPos=( -583.56, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4007.65, 109.27, 10545.15 ) LPos=( -580.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4009.05, 115.02, 10542.65 ) LPos=( -583.56, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4006.26, 117.89, 10547.69 ) LPos=( -577.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4015.65, 117.93, 10530.74 ) LPos=( -597.19, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4022.61, 103.60, 10518.13 ) LPos=( -611.56, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4025.40, 109.36, 10513.12 ) LPos=( -617.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4011.83, 81.29, 10537.53 ) LPos=( -589.31, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4010.44, 78.41, 10540.03 ) LPos=( -586.44, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4009.05, 75.53, 10542.54 ) LPos=( -583.56, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.05, 84.15, 10542.56 ) LPos=( -583.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4007.65, 78.39, 10545.06 ) LPos=( -580.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.08, 69.74, 10555.10 ) LPos=( -569.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -4002.08, 84.11, 10555.14 ) LPos=( -569.19, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4024.01, 89.98, 10515.57 ) LPos=( -614.44, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4019.83, 89.96, 10523.12 ) LPos=( -605.81, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4025.40, 87.11, 10513.05 ) LPos=( -617.31, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4022.61, 87.10, 10518.08 ) LPos=( -611.56, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4021.22, 81.34, 10520.58 ) LPos=( -608.69, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4015.65, 75.56, 10530.62 ) LPos=( -597.19, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4017.04, 72.69, 10528.10 ) LPos=( -600.06, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4021.22, 69.84, 10520.54 ) LPos=( -608.69, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4015.65, 69.81, 10530.60 ) LPos=( -597.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4006.26, 41.76, 10547.47 ) LPos=( -577.81, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4009.04, 41.78, 10542.44 ) LPos=( -583.56, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4002.08, 47.49, 10555.03 ) LPos=( -569.19, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4003.47, 47.50, 10552.52 ) LPos=( -572.06, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4004.86, 47.50, 10550.00 ) LPos=( -574.94, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4006.26, 50.39, 10547.49 ) LPos=( -577.81, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4003.47, 53.25, 10552.53 ) LPos=( -572.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4004.86, 53.25, 10550.02 ) LPos=( -574.94, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4007.65, 53.27, 10544.99 ) LPos=( -580.69, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4006.26, 59.01, 10547.52 ) LPos=( -577.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.08, 61.86, 10555.07 ) LPos=( -569.19, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4004.86, 61.88, 10550.04 ) LPos=( -574.94, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4006.26, 61.89, 10547.53 ) LPos=( -577.81, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4015.65, 61.93, 10530.58 ) LPos=( -597.19, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4015.65, 53.31, 10530.55 ) LPos=( -597.19, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4015.65, 47.56, 10530.54 ) LPos=( -597.19, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4019.83, 47.58, 10522.99 ) LPos=( -605.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4025.40, 61.99, 10512.98 ) LPos=( -617.31, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4010.44, 16.66, 10539.85 ) LPos=( -586.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4010.44, 25.28, 10539.88 ) LPos=( -586.44, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4006.26, 16.64, 10547.40 ) LPos=( -577.81, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.26, 22.39, 10547.41 ) LPos=( -577.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4006.26, 25.26, 10547.42 ) LPos=( -577.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4006.26, 28.14, 10547.43 ) LPos=( -577.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4006.26, 33.89, 10547.45 ) LPos=( -577.81, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4004.86, 33.88, 10549.96 ) LPos=( -574.94, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4003.47, 16.62, 10552.42 ) LPos=( -572.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4002.08, 22.36, 10554.96 ) LPos=( -569.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4002.08, 30.99, 10554.98 ) LPos=( -569.19, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4019.83, 33.96, 10522.95 ) LPos=( -605.81, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4019.83, 28.21, 10522.94 ) LPos=( -605.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4017.04, 28.19, 10527.97 ) LPos=( -600.06, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4015.65, 28.19, 10530.48 ) LPos=( -597.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4025.40, 25.36, 10512.87 ) LPos=( -617.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:212,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4019.83, 22.46, 10522.92 ) LPos=( -605.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4004.86, -14.25, 10549.82 ) LPos=( -574.94, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4010.44, -11.34, 10539.77 ) LPos=( -586.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4004.86, -8.50, 10549.84 ) LPos=( -574.94, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4011.83, -8.46, 10537.26 ) LPos=( -589.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4004.86, -5.62, 10549.84 ) LPos=( -574.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4003.47, -2.75, 10552.37 ) LPos=( -572.06, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4007.65, 0.14, 10544.83 ) LPos=( -580.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4011.83, 0.17, 10537.29 ) LPos=( -589.31, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4003.47, 5.87, 10552.39 ) LPos=( -572.06, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4010.44, 5.91, 10539.82 ) LPos=( -586.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4015.65, -5.56, 10530.38 ) LPos=( -597.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4017.04, -8.43, 10527.86 ) LPos=( -600.06, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4019.83, 3.08, 10522.86 ) LPos=( -605.81, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4019.83, -2.67, 10522.85 ) LPos=( -605.81, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4021.22, 3.09, 10520.35 ) LPos=( -608.69, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4021.22, -2.66, 10520.33 ) LPos=( -608.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4022.61, 3.10, 10517.83 ) LPos=( -611.56, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4022.61, -14.15, 10517.78 ) LPos=( -611.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4024.01, 3.10, 10515.32 ) LPos=( -614.44, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4024.01, -2.65, 10515.30 ) LPos=( -614.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4024.00, -5.52, 10515.29 ) LPos=( -614.44, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4025.40, 0.24, 10512.80 ) LPos=( -617.31, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.04, -27.85, 10542.24 ) LPos=( -583.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4007.65, -36.48, 10544.72 ) LPos=( -580.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4007.65, -27.86, 10544.75 ) LPos=( -580.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4007.65, -22.11, 10544.77 ) LPos=( -580.69, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4006.26, -42.24, 10547.22 ) LPos=( -577.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4006.26, -30.74, 10547.26 ) LPos=( -577.81, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4004.86, -42.25, 10549.74 ) LPos=( -574.94, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4003.47, -42.25, 10552.25 ) LPos=( -572.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -4003.47, -36.50, 10552.27 ) LPos=( -572.06, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4017.04, -24.93, 10527.81 ) LPos=( -600.06, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4025.40, -30.64, 10512.70 ) LPos=( -617.31, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4017.04, -30.68, 10527.79 ) LPos=( -600.06, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4022.61, -33.53, 10517.73 ) LPos=( -611.56, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4022.61, -36.40, 10517.72 ) LPos=( -611.56, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -4022.61, -39.28, 10517.71 ) LPos=( -611.56, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4019.82, -39.29, 10522.74 ) LPos=( -605.81, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4017.04, -39.31, 10527.77 ) LPos=( -600.06, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4017.04, -42.18, 10527.76 ) LPos=( -600.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4015.64, -42.19, 10530.27 ) LPos=( -597.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4003.47, -58.75, 10552.20 ) LPos=( -572.06, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4002.07, -55.89, 10554.73 ) LPos=( -569.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4004.86, -55.87, 10549.70 ) LPos=( -574.94, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4007.65, -52.98, 10544.68 ) LPos=( -580.69, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4015.64, -64.44, 10530.21 ) LPos=( -597.19, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4017.04, -50.06, 10527.74 ) LPos=( -600.06, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4019.82, -52.92, 10522.70 ) LPos=( -605.81, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4021.22, -64.41, 10520.15 ) LPos=( -608.69, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4022.61, -50.03, 10517.68 ) LPos=( -611.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4024.00, -61.52, 10515.13 ) LPos=( -614.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4024.00, -67.27, 10515.11 ) LPos=( -614.44, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4025.40, -50.01, 10512.65 ) LPos=( -617.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4011.83, -98.21, 10537.00 ) LPos=( -589.31, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4011.83, -95.33, 10537.01 ) LPos=( -589.31, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4009.04, -86.72, 10542.06 ) LPos=( -583.56, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4007.65, -92.48, 10544.56 ) LPos=( -580.69, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4006.25, -98.24, 10547.06 ) LPos=( -577.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4006.25, -92.49, 10547.08 ) LPos=( -577.81, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.25, -89.61, 10547.08 ) LPos=( -577.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4004.86, -95.37, 10549.58 ) LPos=( -574.94, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4022.61, -78.03, 10517.60 ) LPos=( -611.56, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4025.40, -80.89, 10512.56 ) LPos=( -617.31, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4022.61, -80.90, 10517.59 ) LPos=( -611.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4019.82, -80.92, 10522.62 ) LPos=( -605.81, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4024.00, -83.77, 10515.06 ) LPos=( -614.44, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4024.00, -89.52, 10515.05 ) LPos=( -614.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4015.64, -92.44, 10530.13 ) LPos=( -597.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4022.61, -98.15, 10517.54 ) LPos=( -611.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4006.25, -123.36, 10546.98 ) LPos=( -577.81, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.25, -114.74, 10547.01 ) LPos=( -577.81, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4002.07, -109.01, 10554.57 ) LPos=( -569.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4006.25, -108.99, 10547.03 ) LPos=( -577.81, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.07, -106.14, 10554.58 ) LPos=( -569.19, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4004.86, -106.12, 10549.55 ) LPos=( -574.94, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4011.83, -106.08, 10536.98 ) LPos=( -589.31, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4015.64, -108.94, 10530.08 ) LPos=( -597.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4022.61, -120.40, 10517.47 ) LPos=( -611.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4022.61, -126.15, 10517.45 ) LPos=( -611.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4025.39, -117.51, 10512.45 ) LPos=( -617.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4025.39, -123.26, 10512.43 ) LPos=( -617.31, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4025.39, -139.76, 10512.38 ) LPos=( -617.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4018.43, -142.67, 10524.95 ) LPos=( -602.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4021.21, -145.53, 10519.91 ) LPos=( -608.69, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4019.82, -151.29, 10522.41 ) LPos=( -605.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4025.39, -154.14, 10512.34 ) LPos=( -617.31, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4007.64, -182.23, 10544.30 ) LPos=( -580.69, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4011.82, -182.21, 10536.75 ) LPos=( -589.31, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4006.25, -179.36, 10546.82 ) LPos=( -577.81, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4002.07, -173.64, 10554.38 ) LPos=( -569.19, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4010.43, -167.84, 10539.31 ) LPos=( -586.44, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4015.64, -173.56, 10529.89 ) LPos=( -597.19, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4017.03, -182.18, 10527.35 ) LPos=( -600.06, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4021.21, -173.53, 10519.83 ) LPos=( -608.69, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4022.61, -167.78, 10517.33 ) LPos=( -611.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4011.82, -204.46, 10536.69 ) LPos=( -589.31, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.25, -201.61, 10546.75 ) LPos=( -577.81, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4004.86, -201.62, 10549.27 ) LPos=( -574.94, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4002.07, -201.64, 10554.30 ) LPos=( -569.19, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:213,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4017.03, -190.06, 10527.33 ) LPos=( -600.06, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4018.09, -221.11, 10525.32 ) LPos=( -602.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4006.46, -221.17, 10546.31 ) LPos=( -578.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4003.55, -227.19, 10551.55 ) LPos=( -572.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4009.37, -245.16, 10541.00 ) LPos=( -584.25, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4006.46, -263.17, 10546.19 ) LPos=( -578.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4021.00, -307.10, 10519.82 ) LPos=( -608.25, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4018.09, -319.11, 10525.03 ) LPos=( -602.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4012.27, -319.14, 10535.53 ) LPos=( -590.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4012.27, -333.14, 10535.49 ) LPos=( -590.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4023.90, -369.08, 10514.39 ) LPos=( -614.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4020.99, -389.10, 10519.58 ) LPos=( -608.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4015.18, -389.13, 10530.08 ) LPos=( -596.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4003.55, -401.19, 10551.03 ) LPos=( -572.25, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4006.46, -407.17, 10545.77 ) LPos=( -578.25, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:214,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4003.55, -407.19, 10551.02 ) LPos=( -572.25, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:215,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4015.18, -451.13, 10529.89 ) LPos=( -596.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:215,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4006.45, -475.17, 10545.57 ) LPos=( -578.25, -475.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:215,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4015.18, -525.13, 10529.68 ) LPos=( -596.25, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:215,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4023.90, -563.08, 10513.82 ) LPos=( -614.25, -563.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:215,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4020.99, -563.10, 10519.07 ) LPos=( -608.25, -563.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:215,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4018.08, -637.11, 10524.10 ) LPos=( -602.25, -637.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3987.83, 556.72, 10582.28 ) LPos=( -539.75, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3990.73, 544.74, 10576.99 ) LPos=( -545.75, 544.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3976.20, 538.66, 10603.22 ) LPos=( -515.75, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3979.10, 520.68, 10597.91 ) LPos=( -521.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3976.20, 506.66, 10603.12 ) LPos=( -515.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3990.73, 500.74, 10576.86 ) LPos=( -545.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3982.01, 500.69, 10592.61 ) LPos=( -527.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.92, 494.71, 10587.34 ) LPos=( -533.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3990.73, 488.74, 10576.83 ) LPos=( -545.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3987.83, 488.72, 10582.08 ) LPos=( -539.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3990.73, 482.74, 10576.81 ) LPos=( -545.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3987.83, 482.72, 10582.06 ) LPos=( -539.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3993.64, 476.75, 10571.54 ) LPos=( -551.75, 476.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3987.82, 470.72, 10582.02 ) LPos=( -539.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:216,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3984.92, 464.71, 10587.25 ) LPos=( -533.75, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.92, 438.71, 10587.18 ) LPos=( -533.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3987.82, 382.72, 10581.76 ) LPos=( -539.75, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3987.82, 370.72, 10581.73 ) LPos=( -539.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3990.73, 358.74, 10576.45 ) LPos=( -545.75, 358.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3979.10, 332.68, 10597.36 ) LPos=( -521.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3987.82, 326.72, 10581.60 ) LPos=( -539.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.91, 326.71, 10586.85 ) LPos=( -533.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3993.64, 308.76, 10571.05 ) LPos=( -551.75, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3979.10, 302.68, 10597.27 ) LPos=( -521.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3990.73, 282.74, 10576.22 ) LPos=( -545.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3987.82, 282.72, 10581.47 ) LPos=( -539.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3993.63, 276.76, 10570.96 ) LPos=( -551.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3987.82, 276.72, 10581.45 ) LPos=( -539.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3982.00, 276.69, 10591.95 ) LPos=( -527.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3976.19, 276.66, 10602.45 ) LPos=( -515.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3987.82, 270.72, 10581.44 ) LPos=( -539.75, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.91, 270.71, 10586.68 ) LPos=( -533.75, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3987.82, 264.72, 10581.42 ) LPos=( -539.75, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3990.73, 258.74, 10576.15 ) LPos=( -545.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3982.00, 258.69, 10591.90 ) LPos=( -527.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3979.10, 258.68, 10597.15 ) LPos=( -521.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3987.82, 252.72, 10581.38 ) LPos=( -539.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3979.10, 252.68, 10597.13 ) LPos=( -521.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3987.82, 246.72, 10581.37 ) LPos=( -539.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3982.00, 246.69, 10591.86 ) LPos=( -527.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:217,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3990.73, 240.74, 10576.10 ) LPos=( -545.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3980.28, 209.62, 10594.87 ) LPos=( -524.19, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3983.06, 215.39, 10589.86 ) LPos=( -529.94, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3983.06, 229.76, 10589.90 ) LPos=( -529.94, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3993.84, 209.69, 10570.38 ) LPos=( -552.19, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3996.63, 221.21, 10565.38 ) LPos=( -557.94, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3998.02, 218.34, 10562.86 ) LPos=( -560.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3998.02, 212.59, 10562.84 ) LPos=( -560.81, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3984.45, 190.27, 10587.27 ) LPos=( -532.81, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3976.10, 195.98, 10602.37 ) LPos=( -515.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3974.70, 187.34, 10604.86 ) LPos=( -512.69, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3995.24, 201.83, 10567.84 ) LPos=( -555.06, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3993.84, 184.57, 10570.30 ) LPos=( -552.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3993.84, 181.69, 10570.29 ) LPos=( -552.19, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3991.06, 181.68, 10575.32 ) LPos=( -546.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3974.70, 153.59, 10604.76 ) LPos=( -512.69, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3976.09, 159.35, 10602.27 ) LPos=( -515.56, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3978.88, 162.24, 10597.25 ) LPos=( -521.31, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3977.49, 165.11, 10599.77 ) LPos=( -518.44, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3984.45, 168.02, 10587.20 ) LPos=( -532.81, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3983.06, 170.89, 10589.73 ) LPos=( -529.94, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3980.27, 173.75, 10594.76 ) LPos=( -524.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3989.66, 168.05, 10577.80 ) LPos=( -543.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3991.06, 168.05, 10575.28 ) LPos=( -546.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3992.45, 170.94, 10572.78 ) LPos=( -549.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3993.84, 170.94, 10570.26 ) LPos=( -552.19, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3993.84, 153.69, 10570.21 ) LPos=( -552.19, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3996.63, 173.83, 10565.24 ) LPos=( -557.94, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3996.63, 168.08, 10565.23 ) LPos=( -557.94, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3974.70, 145.72, 10604.74 ) LPos=( -512.69, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3991.06, 137.18, 10575.19 ) LPos=( -546.44, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3988.27, 134.29, 10580.22 ) LPos=( -540.69, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3980.27, 97.62, 10594.54 ) LPos=( -524.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3976.09, 100.48, 10602.09 ) LPos=( -515.56, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3974.70, 109.09, 10604.63 ) LPos=( -512.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3976.09, 109.10, 10602.12 ) LPos=( -515.56, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3976.09, 111.98, 10602.13 ) LPos=( -515.56, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3974.70, 114.84, 10604.65 ) LPos=( -512.69, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3980.27, 114.87, 10594.59 ) LPos=( -524.19, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3974.70, 117.72, 10604.66 ) LPos=( -512.69, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3978.88, 117.74, 10597.11 ) LPos=( -521.31, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3992.45, 97.69, 10572.56 ) LPos=( -549.31, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3995.23, 103.45, 10567.55 ) LPos=( -555.06, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3998.02, 109.22, 10562.54 ) LPos=( -560.81, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3984.45, 75.40, 10586.93 ) LPos=( -532.81, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3983.06, 69.64, 10589.43 ) LPos=( -529.94, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3976.09, 81.10, 10602.04 ) LPos=( -515.56, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3976.09, 83.98, 10602.05 ) LPos=( -515.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.09, 89.73, 10602.06 ) LPos=( -515.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3974.70, 89.72, 10604.58 ) LPos=( -512.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3998.02, 84.09, 10562.46 ) LPos=( -560.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3996.63, 84.08, 10564.98 ) LPos=( -557.94, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3993.84, 81.19, 10570.00 ) LPos=( -552.19, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3991.05, 81.18, 10575.03 ) LPos=( -546.44, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3993.84, 78.32, 10569.99 ) LPos=( -552.19, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3993.84, 69.70, 10569.97 ) LPos=( -552.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3991.05, 69.68, 10575.00 ) LPos=( -546.44, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3983.06, 47.39, 10589.36 ) LPos=( -529.94, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3978.88, 58.87, 10596.94 ) LPos=( -521.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3983.06, 58.89, 10589.40 ) LPos=( -529.94, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3980.27, 61.75, 10594.44 ) LPos=( -524.19, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3988.27, 56.04, 10579.99 ) LPos=( -540.69, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3991.05, 61.81, 10574.97 ) LPos=( -546.44, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3992.45, 44.56, 10572.41 ) LPos=( -549.31, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3998.02, 61.84, 10562.40 ) LPos=( -560.81, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3998.02, 58.97, 10562.39 ) LPos=( -560.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3984.45, 28.02, 10586.79 ) LPos=( -532.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3984.45, 30.90, 10586.80 ) LPos=( -532.81, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3983.06, 13.64, 10589.26 ) LPos=( -529.94, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3983.06, 19.39, 10589.28 ) LPos=( -529.94, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3978.88, 13.62, 10596.81 ) LPos=( -521.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3978.88, 16.49, 10596.82 ) LPos=( -521.31, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3977.48, 33.73, 10599.38 ) LPos=( -518.44, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3989.66, 33.80, 10577.41 ) LPos=( -543.56, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3988.27, 33.79, 10579.92 ) LPos=( -540.69, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3996.63, 30.96, 10564.82 ) LPos=( -557.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3989.66, 30.92, 10577.40 ) LPos=( -543.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3992.45, 25.19, 10572.35 ) LPos=( -549.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3989.66, 25.17, 10577.38 ) LPos=( -543.56, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3988.27, 25.17, 10579.89 ) LPos=( -540.69, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3998.02, 22.34, 10562.28 ) LPos=( -560.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3991.05, 19.43, 10574.85 ) LPos=( -546.44, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3989.66, 19.42, 10577.36 ) LPos=( -543.56, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3998.02, 13.72, 10562.26 ) LPos=( -560.81, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:218,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3995.23, 13.70, 10567.29 ) LPos=( -555.06, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3977.48, -14.39, 10599.24 ) LPos=( -518.44, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3974.70, -11.53, 10604.28 ) LPos=( -512.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3974.70, -8.66, 10604.29 ) LPos=( -512.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3980.27, -8.63, 10594.23 ) LPos=( -524.19, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3981.66, -5.74, 10591.72 ) LPos=( -527.06, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3977.48, -2.89, 10599.28 ) LPos=( -518.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3980.27, -2.88, 10594.25 ) LPos=( -524.19, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3974.70, -0.03, 10604.31 ) LPos=( -512.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3976.09, 5.73, 10601.82 ) LPos=( -515.56, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3988.27, 0.04, 10579.82 ) LPos=( -540.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3988.26, -8.58, 10579.80 ) LPos=( -540.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3988.26, -11.46, 10579.79 ) LPos=( -540.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3993.84, -11.43, 10569.73 ) LPos=( -552.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3996.62, -14.29, 10564.69 ) LPos=( -557.94, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3983.05, -25.11, 10589.15 ) LPos=( -529.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.09, -22.27, 10601.73 ) LPos=( -515.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3974.69, -39.53, 10604.20 ) LPos=( -512.69, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3996.62, -22.16, 10564.67 ) LPos=( -557.94, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3993.84, -27.93, 10569.68 ) LPos=( -552.19, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3993.84, -30.80, 10569.67 ) LPos=( -552.19, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3996.62, -36.54, 10564.62 ) LPos=( -557.94, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3992.44, -39.44, 10572.16 ) LPos=( -549.31, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3991.05, -39.44, 10574.68 ) LPos=( -546.44, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3995.23, -42.30, 10567.12 ) LPos=( -555.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3988.26, -42.33, 10579.70 ) LPos=( -540.69, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3976.09, -67.52, 10601.60 ) LPos=( -515.56, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3974.69, -64.66, 10604.12 ) LPos=( -512.69, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3980.27, -64.63, 10594.06 ) LPos=( -524.19, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3981.66, -64.62, 10591.55 ) LPos=( -527.06, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3978.87, -61.76, 10596.59 ) LPos=( -521.31, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3980.27, -61.75, 10594.07 ) LPos=( -524.19, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3978.87, -58.88, 10596.60 ) LPos=( -521.31, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3977.48, -53.14, 10599.13 ) LPos=( -518.44, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3988.26, -55.96, 10579.66 ) LPos=( -540.69, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3989.66, -50.20, 10577.16 ) LPos=( -543.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3991.05, -61.69, 10574.61 ) LPos=( -546.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3995.23, -61.67, 10567.07 ) LPos=( -555.06, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3996.62, -61.66, 10564.55 ) LPos=( -557.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3998.02, -64.53, 10562.03 ) LPos=( -560.81, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3983.05, -95.49, 10588.94 ) LPos=( -529.94, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3980.27, -95.50, 10593.97 ) LPos=( -524.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3980.27, -92.63, 10593.98 ) LPos=( -524.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3977.48, -86.89, 10599.03 ) LPos=( -518.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3998.02, -83.91, 10561.97 ) LPos=( -560.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3988.26, -86.83, 10579.57 ) LPos=( -540.69, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3988.26, -89.71, 10579.56 ) LPos=( -540.69, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3993.84, -95.43, 10569.48 ) LPos=( -552.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3981.66, -120.62, 10591.39 ) LPos=( -527.06, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3977.48, -109.14, 10598.96 ) LPos=( -518.44, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3978.87, -109.13, 10596.45 ) LPos=( -521.31, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3988.26, -120.58, 10579.47 ) LPos=( -540.69, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3991.05, -106.19, 10574.48 ) LPos=( -546.44, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3992.44, -114.81, 10571.94 ) LPos=( -549.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3993.83, -123.43, 10569.40 ) LPos=( -552.19, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3984.44, -151.48, 10586.26 ) LPos=( -532.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3984.44, -137.10, 10586.31 ) LPos=( -532.81, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3980.26, -148.63, 10593.82 ) LPos=( -524.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3978.87, -154.38, 10596.32 ) LPos=( -521.31, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3977.48, -148.64, 10598.85 ) LPos=( -518.44, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3977.48, -142.89, 10598.86 ) LPos=( -518.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3989.65, -137.08, 10576.90 ) LPos=( -543.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3991.05, -139.94, 10574.38 ) LPos=( -546.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3989.65, -139.95, 10576.90 ) LPos=( -543.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3991.05, -142.82, 10574.37 ) LPos=( -546.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3981.66, -170.87, 10591.24 ) LPos=( -527.06, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3980.26, -162.25, 10593.78 ) LPos=( -524.19, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3981.66, -162.24, 10591.26 ) LPos=( -527.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3989.65, -162.20, 10576.83 ) LPos=( -543.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3991.05, -165.07, 10574.31 ) LPos=( -546.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3992.44, -173.69, 10571.77 ) LPos=( -549.31, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3995.23, -179.42, 10566.72 ) LPos=( -555.06, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3984.44, -204.60, 10586.11 ) LPos=( -532.81, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3983.05, -195.99, 10588.65 ) LPos=( -529.94, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3996.62, -190.16, 10564.17 ) LPos=( -557.94, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3991.05, -201.69, 10574.20 ) LPos=( -546.44, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3995.23, -204.55, 10566.65 ) LPos=( -555.06, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:219,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3996.62, -207.41, 10564.12 ) LPos=( -557.94, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3993.62, -221.24, 10569.49 ) LPos=( -551.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3996.53, -227.23, 10564.23 ) LPos=( -557.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3990.71, -233.26, 10574.71 ) LPos=( -545.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3996.53, -239.23, 10564.19 ) LPos=( -557.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3987.80, -239.27, 10579.94 ) LPos=( -539.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3976.17, -239.33, 10600.93 ) LPos=( -515.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3996.53, -251.23, 10564.16 ) LPos=( -557.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3984.90, -251.29, 10585.15 ) LPos=( -533.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3981.99, -251.30, 10590.40 ) LPos=( -527.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3979.08, -257.32, 10595.63 ) LPos=( -521.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.17, -257.33, 10600.88 ) LPos=( -515.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3996.53, -277.23, 10564.08 ) LPos=( -557.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3996.52, -295.23, 10564.03 ) LPos=( -557.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3990.71, -307.26, 10574.49 ) LPos=( -545.75, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3987.80, -319.27, 10579.70 ) LPos=( -539.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3976.17, -351.33, 10600.60 ) LPos=( -515.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3993.62, -363.24, 10569.08 ) LPos=( -551.75, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3987.80, -395.27, 10579.48 ) LPos=( -539.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3981.98, -401.30, 10589.96 ) LPos=( -527.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3987.80, -413.27, 10579.43 ) LPos=( -539.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3987.80, -419.27, 10579.41 ) LPos=( -539.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3981.98, -419.30, 10589.91 ) LPos=( -527.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:220,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.17, -425.33, 10600.39 ) LPos=( -515.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:221,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3990.70, -469.26, 10574.02 ) LPos=( -545.75, -469.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:221,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3993.61, -525.24, 10568.60 ) LPos=( -551.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:221,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3984.89, -543.29, 10584.29 ) LPos=( -533.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:221,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3981.98, -543.30, 10589.54 ) LPos=( -527.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:221,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3993.61, -569.24, 10568.47 ) LPos=( -551.75, -569.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3954.63, 612.55, 10642.36 ) LPos=( -471.25, 612.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3969.17, 594.63, 10616.06 ) LPos=( -501.25, 594.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3969.17, 582.63, 10616.03 ) LPos=( -501.25, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3966.26, 520.61, 10621.09 ) LPos=( -495.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.35, 520.59, 10626.34 ) LPos=( -489.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3960.45, 520.58, 10631.59 ) LPos=( -483.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3951.72, 520.53, 10647.34 ) LPos=( -465.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3960.45, 506.58, 10631.55 ) LPos=( -483.25, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3957.54, 494.56, 10636.76 ) LPos=( -477.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3960.45, 488.58, 10631.50 ) LPos=( -483.25, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3969.17, 482.63, 10615.73 ) LPos=( -501.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3963.35, 482.60, 10626.23 ) LPos=( -489.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3969.17, 438.63, 10615.61 ) LPos=( -501.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.63, 408.55, 10641.76 ) LPos=( -471.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3969.16, 332.63, 10615.29 ) LPos=( -501.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3960.44, 332.58, 10631.04 ) LPos=( -483.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3960.44, 314.58, 10630.99 ) LPos=( -483.25, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3963.35, 308.60, 10625.72 ) LPos=( -489.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3969.16, 296.63, 10615.19 ) LPos=( -501.25, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3966.25, 296.61, 10620.44 ) LPos=( -495.25, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3963.35, 270.60, 10625.61 ) LPos=( -489.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3966.25, 264.61, 10620.34 ) LPos=( -495.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3957.53, 264.57, 10636.09 ) LPos=( -477.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3960.44, 246.58, 10630.79 ) LPos=( -483.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3948.72, 212.33, 10651.84 ) LPos=( -459.06, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3955.68, 215.24, 10639.28 ) LPos=( -473.44, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3957.07, 215.25, 10636.76 ) LPos=( -476.31, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3955.68, 220.99, 10639.30 ) LPos=( -473.44, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3950.11, 223.84, 10649.36 ) LPos=( -461.94, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3955.68, 223.87, 10639.30 ) LPos=( -473.44, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3960.89, 223.90, 10629.90 ) LPos=( -484.19, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3960.89, 212.40, 10629.87 ) LPos=( -484.19, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3969.25, 212.44, 10614.78 ) LPos=( -501.44, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3957.07, 181.50, 10636.66 ) LPos=( -476.31, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3952.89, 184.35, 10644.22 ) LPos=( -467.69, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3951.50, 192.97, 10646.76 ) LPos=( -464.81, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3950.11, 190.09, 10649.26 ) LPos=( -461.94, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3950.11, 192.96, 10649.27 ) LPos=( -461.94, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3950.11, 195.84, 10649.28 ) LPos=( -461.94, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3948.71, 181.46, 10651.75 ) LPos=( -459.06, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3948.71, 184.33, 10651.76 ) LPos=( -459.06, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3948.71, 190.08, 10651.78 ) LPos=( -459.06, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3948.71, 192.96, 10651.79 ) LPos=( -459.06, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3948.71, 195.83, 10651.80 ) LPos=( -459.06, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3947.32, 187.20, 10654.29 ) LPos=( -456.19, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3947.32, 190.07, 10654.29 ) LPos=( -456.19, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3947.32, 192.95, 10654.30 ) LPos=( -456.19, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3947.32, 195.82, 10654.31 ) LPos=( -456.19, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3969.25, 187.31, 10614.70 ) LPos=( -501.44, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3966.46, 187.30, 10619.73 ) LPos=( -495.69, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3960.89, 187.27, 10629.79 ) LPos=( -484.19, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3970.64, 184.45, 10612.18 ) LPos=( -504.31, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3963.68, 184.41, 10624.76 ) LPos=( -489.94, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3960.89, 184.40, 10629.78 ) LPos=( -484.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3963.68, 181.54, 10624.75 ) LPos=( -489.94, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3962.28, 181.53, 10627.26 ) LPos=( -487.06, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3955.68, 156.37, 10639.11 ) LPos=( -473.44, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3948.71, 159.21, 10651.69 ) LPos=( -459.06, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3950.11, 164.96, 10649.19 ) LPos=( -461.94, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3947.32, 170.70, 10654.24 ) LPos=( -456.19, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3950.11, 170.71, 10649.21 ) LPos=( -461.94, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3955.68, 173.62, 10639.16 ) LPos=( -473.44, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3965.07, 159.29, 10622.17 ) LPos=( -492.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3966.46, 165.05, 10619.67 ) LPos=( -495.69, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3967.86, 153.56, 10617.12 ) LPos=( -498.56, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3970.64, 170.82, 10612.14 ) LPos=( -504.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3957.07, 139.88, 10636.54 ) LPos=( -476.31, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3955.68, 145.62, 10639.07 ) LPos=( -473.44, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3952.89, 145.60, 10644.10 ) LPos=( -467.69, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3965.07, 145.67, 10622.13 ) LPos=( -492.81, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3969.25, 134.19, 10614.55 ) LPos=( -501.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3957.07, 117.63, 10636.48 ) LPos=( -476.31, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3960.89, 117.65, 10629.59 ) LPos=( -484.19, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3960.89, 114.77, 10629.58 ) LPos=( -484.19, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3963.67, 100.41, 10624.51 ) LPos=( -489.94, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3965.07, 117.67, 10622.04 ) LPos=( -492.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3966.46, 111.93, 10619.51 ) LPos=( -495.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3966.46, 109.05, 10619.50 ) LPos=( -495.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3967.85, 106.18, 10616.98 ) LPos=( -498.56, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3969.25, 97.57, 10614.44 ) LPos=( -501.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3957.07, 78.13, 10636.36 ) LPos=( -476.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3957.07, 89.63, 10636.40 ) LPos=( -476.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3954.28, 83.86, 10641.41 ) LPos=( -470.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3954.28, 89.61, 10641.42 ) LPos=( -470.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3952.89, 83.85, 10643.92 ) LPos=( -467.69, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3950.10, 80.96, 10648.94 ) LPos=( -461.94, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3950.10, 89.59, 10648.97 ) LPos=( -461.94, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3960.89, 89.65, 10629.51 ) LPos=( -484.19, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3969.25, 83.94, 10614.40 ) LPos=( -501.44, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3963.67, 83.91, 10624.46 ) LPos=( -489.94, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3970.64, 81.07, 10611.88 ) LPos=( -504.31, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3965.07, 81.04, 10621.94 ) LPos=( -492.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3965.07, 69.54, 10621.90 ) LPos=( -492.81, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3951.50, 41.47, 10646.31 ) LPos=( -464.81, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3954.28, 44.36, 10641.29 ) LPos=( -470.56, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3957.07, 44.38, 10636.26 ) LPos=( -476.31, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3954.28, 50.11, 10641.31 ) LPos=( -470.56, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3952.89, 52.98, 10643.83 ) LPos=( -467.69, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.28, 61.61, 10641.34 ) LPos=( -470.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3960.89, 58.77, 10629.42 ) LPos=( -484.19, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3960.89, 41.52, 10629.37 ) LPos=( -484.19, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3962.28, 61.65, 10626.91 ) LPos=( -487.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3962.28, 58.78, 10626.90 ) LPos=( -487.06, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3962.28, 53.03, 10626.88 ) LPos=( -487.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3963.67, 50.16, 10624.36 ) LPos=( -489.94, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3966.46, 58.80, 10619.36 ) LPos=( -495.69, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3969.25, 58.82, 10614.33 ) LPos=( -501.44, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3957.07, 13.50, 10636.17 ) LPos=( -476.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3957.07, 22.13, 10636.20 ) LPos=( -476.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3954.28, 24.99, 10641.24 ) LPos=( -470.56, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3951.50, 19.22, 10646.25 ) LPos=( -464.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3950.10, 22.09, 10648.77 ) LPos=( -461.94, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3967.85, 33.68, 10616.77 ) LPos=( -498.56, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3962.28, 30.78, 10626.82 ) LPos=( -487.06, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3965.07, 27.92, 10621.78 ) LPos=( -492.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3970.64, 25.07, 10611.71 ) LPos=( -504.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3969.24, 22.19, 10614.22 ) LPos=( -501.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3963.67, 22.16, 10624.28 ) LPos=( -489.94, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3965.07, 16.42, 10621.75 ) LPos=( -492.81, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3952.89, -14.52, 10643.63 ) LPos=( -467.69, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3951.50, -11.65, 10646.16 ) LPos=( -464.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3952.89, -11.65, 10643.64 ) LPos=( -467.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3947.32, -8.80, 10653.71 ) LPos=( -456.19, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3951.50, -5.90, 10646.17 ) LPos=( -464.81, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3948.71, -3.04, 10651.21 ) LPos=( -459.06, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3950.10, -3.04, 10648.70 ) LPos=( -461.94, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3960.88, 5.65, 10629.26 ) LPos=( -484.19, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3960.88, -5.85, 10629.23 ) LPos=( -484.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3965.06, -8.71, 10621.67 ) LPos=( -492.81, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3966.46, 2.80, 10619.19 ) LPos=( -495.69, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3966.46, -2.95, 10619.18 ) LPos=( -495.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3966.46, -5.82, 10619.17 ) LPos=( -495.69, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3967.85, 2.81, 10616.68 ) LPos=( -498.56, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3967.85, -0.07, 10616.67 ) LPos=( -498.56, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3969.24, 2.82, 10614.16 ) LPos=( -501.44, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3969.24, -2.93, 10614.15 ) LPos=( -501.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3970.64, -5.80, 10611.62 ) LPos=( -504.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3957.07, -39.62, 10636.02 ) LPos=( -476.31, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3948.71, -28.17, 10651.14 ) LPos=( -459.06, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3969.24, -33.81, 10614.06 ) LPos=( -501.44, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3965.06, -42.46, 10621.57 ) LPos=( -492.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3951.49, -70.53, 10645.98 ) LPos=( -464.81, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3954.28, -70.51, 10640.95 ) LPos=( -470.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3954.28, -61.89, 10640.98 ) LPos=( -470.56, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3954.28, -59.01, 10640.99 ) LPos=( -470.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3957.07, -56.12, 10635.97 ) LPos=( -476.31, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.28, -50.39, 10641.01 ) LPos=( -470.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3965.06, -58.96, 10621.53 ) LPos=( -492.81, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3967.85, -67.57, 10616.47 ) LPos=( -498.56, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3954.28, -92.76, 10640.89 ) LPos=( -470.56, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3951.49, -98.53, 10645.90 ) LPos=( -464.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3947.31, -92.80, 10653.46 ) LPos=( -456.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3947.31, -89.92, 10653.47 ) LPos=( -456.19, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3947.31, -81.30, 10653.50 ) LPos=( -456.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3970.63, -98.43, 10611.35 ) LPos=( -504.31, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3957.06, -117.87, 10635.79 ) LPos=( -476.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3962.27, -123.60, 10626.37 ) LPos=( -487.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3965.06, -123.58, 10621.34 ) LPos=( -492.81, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3966.45, -112.07, 10618.86 ) LPos=( -495.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3951.49, -145.90, 10645.76 ) LPos=( -464.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3951.49, -143.03, 10645.77 ) LPos=( -464.81, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3950.10, -143.03, 10648.29 ) LPos=( -461.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3948.70, -143.04, 10650.80 ) LPos=( -459.06, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3947.31, -143.05, 10653.32 ) LPos=( -456.19, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3947.31, -140.17, 10653.32 ) LPos=( -456.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3947.31, -137.30, 10653.33 ) LPos=( -456.19, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3947.31, -134.42, 10653.34 ) LPos=( -456.19, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3962.27, -134.35, 10626.33 ) LPos=( -487.06, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3969.24, -137.18, 10613.75 ) LPos=( -501.44, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3960.88, -140.10, 10628.83 ) LPos=( -484.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3963.67, -142.96, 10623.79 ) LPos=( -489.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3970.63, -148.68, 10611.20 ) LPos=( -504.31, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3965.06, -148.71, 10621.26 ) LPos=( -492.81, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3966.45, -154.45, 10618.73 ) LPos=( -495.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3963.67, -154.46, 10623.76 ) LPos=( -489.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3957.06, -168.12, 10635.64 ) LPos=( -476.31, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3947.31, -162.42, 10653.26 ) LPos=( -456.19, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3960.88, -176.73, 10628.72 ) LPos=( -484.19, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3967.85, -165.19, 10616.18 ) LPos=( -498.56, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3969.24, -182.43, 10613.62 ) LPos=( -501.44, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3950.10, -190.41, 10648.15 ) LPos=( -461.94, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3948.70, -201.92, 10650.63 ) LPos=( -459.06, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3965.06, -193.21, 10621.13 ) LPos=( -492.81, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3967.85, -196.07, 10616.09 ) LPos=( -498.56, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3967.85, -198.94, 10616.09 ) LPos=( -498.56, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3954.61, -221.45, 10639.91 ) LPos=( -471.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3951.70, -221.46, 10645.16 ) LPos=( -465.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3954.61, -251.45, 10639.82 ) LPos=( -471.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3951.70, -251.46, 10645.07 ) LPos=( -465.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3969.15, -257.37, 10613.56 ) LPos=( -501.25, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3969.15, -263.37, 10613.55 ) LPos=( -501.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3957.51, -301.43, 10634.43 ) LPos=( -477.25, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3960.42, -333.42, 10629.08 ) LPos=( -483.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3969.14, -345.37, 10613.30 ) LPos=( -501.25, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3957.51, -357.43, 10634.26 ) LPos=( -477.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3966.23, -363.39, 10618.50 ) LPos=( -495.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3963.33, -363.40, 10623.75 ) LPos=( -489.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3966.23, -369.39, 10618.48 ) LPos=( -495.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3960.42, -369.42, 10628.98 ) LPos=( -483.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.60, -375.45, 10639.46 ) LPos=( -471.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3948.79, -375.48, 10649.96 ) LPos=( -459.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3969.14, -389.37, 10613.18 ) LPos=( -501.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3948.79, -389.48, 10649.91 ) LPos=( -459.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3963.33, -413.40, 10623.60 ) LPos=( -489.25, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3948.79, -413.48, 10649.84 ) LPos=( -459.25, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3969.14, -425.37, 10613.07 ) LPos=( -501.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3963.33, -425.40, 10623.57 ) LPos=( -489.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3957.51, -425.43, 10634.06 ) LPos=( -477.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.33, -431.40, 10623.55 ) LPos=( -489.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3963.32, -451.40, 10623.49 ) LPos=( -489.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3960.42, -451.42, 10628.74 ) LPos=( -483.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3963.32, -457.40, 10623.47 ) LPos=( -489.25, -457.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3957.51, -463.43, 10633.95 ) LPos=( -477.25, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3963.32, -481.40, 10623.40 ) LPos=( -489.25, -481.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.32, -487.40, 10623.38 ) LPos=( -489.25, -487.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3966.23, -501.39, 10618.10 ) LPos=( -495.25, -501.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3969.14, -507.37, 10612.83 ) LPos=( -501.25, -507.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.32, -543.40, 10623.22 ) LPos=( -489.25, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3963.32, -569.40, 10623.14 ) LPos=( -489.25, -569.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3957.51, -587.43, 10633.59 ) LPos=( -477.25, -587.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,00 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3924.35, 638.39, 10697.10 ) LPos=( -408.75, 638.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3930.16, 618.42, 10686.55 ) LPos=( -420.75, 618.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3938.88, 594.47, 10670.73 ) LPos=( -438.75, 594.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3921.44, 588.37, 10702.21 ) LPos=( -402.75, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3938.88, 576.47, 10670.68 ) LPos=( -438.75, 576.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3938.88, 556.47, 10670.62 ) LPos=( -438.75, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3941.79, 550.48, 10665.36 ) LPos=( -444.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3930.16, 550.42, 10686.35 ) LPos=( -420.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3941.79, 520.48, 10665.27 ) LPos=( -444.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3930.16, 506.42, 10686.22 ) LPos=( -420.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.25, 506.40, 10691.47 ) LPos=( -414.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3921.43, 494.37, 10701.93 ) LPos=( -402.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3938.88, 470.47, 10670.37 ) LPos=( -438.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3930.16, 470.42, 10686.12 ) LPos=( -420.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3933.06, 414.44, 10680.70 ) LPos=( -426.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3921.43, 414.37, 10701.70 ) LPos=( -402.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3941.78, 394.48, 10664.90 ) LPos=( -444.75, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3924.34, 394.39, 10696.39 ) LPos=( -408.75, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3933.06, 338.44, 10680.48 ) LPos=( -426.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.24, 338.41, 10690.98 ) LPos=( -414.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3938.88, 332.47, 10669.97 ) LPos=( -438.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3924.34, 332.39, 10696.21 ) LPos=( -408.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3927.24, 302.41, 10690.87 ) LPos=( -414.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3938.87, 296.47, 10669.86 ) LPos=( -438.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3933.06, 252.44, 10680.23 ) LPos=( -426.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3941.78, 246.48, 10664.46 ) LPos=( -444.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3930.15, 246.42, 10685.46 ) LPos=( -420.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3927.24, 246.41, 10690.71 ) LPos=( -414.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3938.87, 240.47, 10669.70 ) LPos=( -438.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3933.06, 240.44, 10680.19 ) LPos=( -426.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3927.24, 240.41, 10690.69 ) LPos=( -414.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3921.43, 240.38, 10701.19 ) LPos=( -402.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3924.12, 209.33, 10696.23 ) LPos=( -408.31, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3921.33, 212.19, 10701.27 ) LPos=( -402.56, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3926.91, 212.22, 10691.21 ) LPos=( -414.06, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3928.30, 212.22, 10688.69 ) LPos=( -416.94, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3924.12, 215.08, 10696.25 ) LPos=( -408.31, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3926.91, 215.09, 10691.22 ) LPos=( -414.06, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3921.34, 220.81, 10701.29 ) LPos=( -402.56, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3921.34, 226.56, 10701.31 ) LPos=( -402.56, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3921.34, 229.44, 10701.32 ) LPos=( -402.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3933.51, 212.25, 10679.29 ) LPos=( -427.69, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3934.90, 223.76, 10676.81 ) LPos=( -430.56, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3936.30, 209.39, 10674.25 ) LPos=( -433.44, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3937.69, 226.65, 10671.79 ) LPos=( -436.31, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3929.69, 181.36, 10686.09 ) LPos=( -419.81, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3928.30, 184.22, 10688.61 ) LPos=( -416.94, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3926.91, 192.84, 10691.15 ) LPos=( -414.06, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3925.51, 181.33, 10693.63 ) LPos=( -411.19, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3921.33, 187.06, 10701.19 ) LPos=( -402.56, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3919.94, 184.18, 10703.70 ) LPos=( -399.69, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3934.90, 192.88, 10676.72 ) LPos=( -430.56, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3936.30, 184.27, 10674.18 ) LPos=( -433.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3934.90, 184.26, 10676.69 ) LPos=( -430.56, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3919.94, 156.18, 10703.62 ) LPos=( -399.69, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3928.30, 164.85, 10688.55 ) LPos=( -416.94, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3929.69, 164.86, 10686.04 ) LPos=( -419.81, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3926.91, 167.72, 10691.08 ) LPos=( -414.06, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3924.12, 170.58, 10696.11 ) LPos=( -408.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3929.69, 173.48, 10686.06 ) LPos=( -419.81, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.69, 162.02, 10671.60 ) LPos=( -436.31, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3939.08, 159.16, 10669.07 ) LPos=( -439.19, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3943.26, 167.80, 10661.55 ) LPos=( -447.81, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3943.26, 159.18, 10661.53 ) LPos=( -447.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3928.30, 128.22, 10688.45 ) LPos=( -416.94, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3926.91, 128.22, 10690.96 ) LPos=( -414.06, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3925.51, 128.21, 10693.48 ) LPos=( -411.19, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3925.51, 131.08, 10693.48 ) LPos=( -411.19, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3924.12, 125.33, 10695.98 ) LPos=( -408.31, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3924.12, 133.95, 10696.01 ) LPos=( -408.31, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3922.73, 125.32, 10698.50 ) LPos=( -405.44, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3922.73, 142.57, 10698.55 ) LPos=( -405.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3937.69, 131.15, 10671.51 ) LPos=( -436.31, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3933.51, 131.13, 10679.05 ) LPos=( -427.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3924.12, 97.33, 10695.90 ) LPos=( -408.31, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3929.69, 97.36, 10685.84 ) LPos=( -419.81, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3922.72, 100.20, 10698.42 ) LPos=( -405.44, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3925.51, 103.08, 10693.40 ) LPos=( -411.19, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3926.90, 103.09, 10690.89 ) LPos=( -414.06, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3925.51, 108.83, 10693.42 ) LPos=( -411.19, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3926.90, 111.72, 10690.91 ) LPos=( -414.06, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3929.69, 117.48, 10685.90 ) LPos=( -419.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3933.51, 108.88, 10678.99 ) LPos=( -427.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3936.29, 103.14, 10673.94 ) LPos=( -433.44, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3936.29, 100.27, 10673.93 ) LPos=( -433.44, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3936.29, 97.39, 10673.92 ) LPos=( -433.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3937.69, 108.90, 10671.44 ) LPos=( -436.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3940.47, 114.66, 10666.43 ) LPos=( -442.06, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3943.26, 106.05, 10661.37 ) LPos=( -447.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3929.69, 80.86, 10685.79 ) LPos=( -419.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3928.30, 75.10, 10688.29 ) LPos=( -416.94, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3926.90, 75.09, 10690.80 ) LPos=( -414.06, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3925.51, 72.21, 10693.31 ) LPos=( -411.19, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3925.51, 89.46, 10693.36 ) LPos=( -411.19, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3921.33, 86.56, 10700.90 ) LPos=( -402.56, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3919.94, 72.18, 10703.37 ) LPos=( -399.69, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3919.94, 86.56, 10703.41 ) LPos=( -399.69, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3940.47, 89.54, 10666.35 ) LPos=( -442.06, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3943.26, 83.80, 10661.31 ) LPos=( -447.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3940.47, 80.91, 10666.33 ) LPos=( -442.06, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3933.51, 78.00, 10678.89 ) LPos=( -427.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3941.87, 72.30, 10663.79 ) LPos=( -444.94, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3941.87, 69.42, 10663.78 ) LPos=( -444.94, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3939.08, 69.41, 10668.81 ) LPos=( -439.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3924.12, 41.33, 10695.74 ) LPos=( -408.31, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3922.72, 49.95, 10698.28 ) LPos=( -405.44, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3925.51, 55.71, 10693.26 ) LPos=( -411.19, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3928.30, 55.72, 10688.23 ) LPos=( -416.94, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3924.12, 58.58, 10695.79 ) LPos=( -408.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3929.69, 58.61, 10685.73 ) LPos=( -419.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3922.72, 61.45, 10698.31 ) LPos=( -405.44, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3934.90, 58.63, 10676.32 ) LPos=( -430.56, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3936.29, 44.27, 10673.77 ) LPos=( -433.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3940.47, 50.04, 10666.24 ) LPos=( -442.06, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3941.87, 61.55, 10663.76 ) LPos=( -444.94, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3943.26, 50.05, 10661.21 ) LPos=( -447.81, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3929.69, 19.11, 10685.61 ) LPos=( -419.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3929.69, 30.61, 10685.64 ) LPos=( -419.81, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3928.30, 21.97, 10688.13 ) LPos=( -416.94, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3926.90, 21.97, 10690.65 ) LPos=( -414.06, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3925.51, 19.09, 10693.16 ) LPos=( -411.19, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3921.33, 30.56, 10700.73 ) LPos=( -402.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3937.69, 33.52, 10671.22 ) LPos=( -436.31, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3934.90, 27.76, 10676.23 ) LPos=( -430.56, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.68, 24.90, 10671.19 ) LPos=( -436.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3943.26, 19.18, 10661.12 ) LPos=( -447.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3933.50, 19.13, 10678.72 ) LPos=( -427.69, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3941.86, 16.30, 10663.62 ) LPos=( -444.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3940.47, 16.29, 10666.14 ) LPos=( -442.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3936.29, 16.27, 10673.68 ) LPos=( -433.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3941.86, 13.42, 10663.62 ) LPos=( -444.94, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3939.08, 13.41, 10668.65 ) LPos=( -439.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3919.94, -8.94, 10703.13 ) LPos=( -399.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3924.11, -8.92, 10695.59 ) LPos=( -408.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3926.90, -6.03, 10690.57 ) LPos=( -414.06, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3928.29, -3.15, 10688.06 ) LPos=( -416.94, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3919.94, -0.32, 10703.16 ) LPos=( -399.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3922.72, 5.45, 10698.14 ) LPos=( -405.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3925.51, 5.46, 10693.12 ) LPos=( -411.19, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3936.29, -3.11, 10673.63 ) LPos=( -433.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3937.68, -0.23, 10671.12 ) LPos=( -436.31, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3937.68, -3.10, 10671.11 ) LPos=( -436.31, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3943.26, -5.95, 10661.04 ) LPos=( -447.81, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3943.26, -11.70, 10661.03 ) LPos=( -447.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3929.69, -36.89, 10685.45 ) LPos=( -419.81, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3924.11, -22.55, 10695.55 ) LPos=( -408.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3922.72, -31.18, 10698.04 ) LPos=( -405.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3922.72, -28.30, 10698.05 ) LPos=( -405.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3922.72, -22.55, 10698.06 ) LPos=( -405.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3921.33, -39.81, 10700.53 ) LPos=( -402.56, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3919.93, -28.32, 10703.08 ) LPos=( -399.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3943.26, -22.45, 10661.00 ) LPos=( -447.81, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3939.08, -22.47, 10668.54 ) LPos=( -439.19, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3937.68, -22.48, 10671.06 ) LPos=( -436.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3934.90, -22.49, 10676.09 ) LPos=( -430.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3933.50, -28.25, 10678.58 ) LPos=( -427.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3922.72, -70.68, 10697.92 ) LPos=( -405.44, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3929.69, -70.64, 10685.35 ) LPos=( -419.81, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3919.93, -67.82, 10702.96 ) LPos=( -399.69, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3919.93, -64.94, 10702.97 ) LPos=( -399.69, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3928.29, -64.90, 10687.88 ) LPos=( -416.94, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3924.11, -62.05, 10695.43 ) LPos=( -408.31, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3926.90, -59.16, 10690.41 ) LPos=( -414.06, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3921.33, -56.31, 10700.48 ) LPos=( -402.56, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3926.90, -56.28, 10690.42 ) LPos=( -414.06, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3924.11, -53.42, 10695.46 ) LPos=( -408.31, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3933.50, -53.37, 10678.51 ) LPos=( -427.69, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3937.68, -64.85, 10670.93 ) LPos=( -436.31, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3939.08, -64.84, 10668.42 ) LPos=( -439.19, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3939.08, -70.59, 10668.40 ) LPos=( -439.19, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3928.29, -84.27, 10687.82 ) LPos=( -416.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3925.51, -84.29, 10692.85 ) LPos=( -411.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3925.51, -78.54, 10692.87 ) LPos=( -411.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3924.11, -92.92, 10695.34 ) LPos=( -408.31, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3924.11, -87.17, 10695.36 ) LPos=( -408.31, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3921.33, -84.31, 10700.40 ) LPos=( -402.56, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3919.93, -95.82, 10702.88 ) LPos=( -399.69, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3919.93, -92.94, 10702.89 ) LPos=( -399.69, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3939.08, -78.47, 10668.38 ) LPos=( -439.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3936.29, -81.36, 10673.40 ) LPos=( -433.44, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3933.50, -81.37, 10678.43 ) LPos=( -427.69, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3933.50, -84.25, 10678.42 ) LPos=( -427.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3939.07, -87.09, 10668.35 ) LPos=( -439.19, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3934.89, -95.74, 10675.87 ) LPos=( -430.56, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3939.07, -98.59, 10668.32 ) LPos=( -439.19, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3921.32, -126.69, 10700.27 ) LPos=( -402.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3922.72, -126.68, 10697.76 ) LPos=( -405.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3919.93, -118.07, 10702.81 ) LPos=( -399.69, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3929.68, -115.14, 10685.22 ) LPos=( -419.81, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3924.11, -106.55, 10695.30 ) LPos=( -408.31, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3934.89, -112.24, 10675.82 ) LPos=( -430.56, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3934.89, -123.74, 10675.79 ) LPos=( -430.56, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3936.29, -115.11, 10673.30 ) LPos=( -433.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3937.68, -112.23, 10670.79 ) LPos=( -436.31, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3929.68, -140.27, 10685.14 ) LPos=( -419.81, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3924.11, -146.05, 10695.19 ) LPos=( -408.31, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3924.11, -134.55, 10695.22 ) LPos=( -408.31, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3922.72, -140.30, 10697.72 ) LPos=( -405.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3919.93, -148.94, 10702.72 ) LPos=( -399.69, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3919.93, -143.19, 10702.74 ) LPos=( -399.69, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3919.93, -140.32, 10702.75 ) LPos=( -399.69, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3937.68, -140.22, 10670.71 ) LPos=( -436.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3943.25, -143.07, 10660.64 ) LPos=( -447.81, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.68, -143.10, 10670.70 ) LPos=( -436.31, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3943.25, -145.95, 10660.63 ) LPos=( -447.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3939.07, -145.97, 10668.18 ) LPos=( -439.19, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3937.68, -151.72, 10670.68 ) LPos=( -436.31, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3936.29, -151.73, 10673.19 ) LPos=( -433.44, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3934.89, -151.74, 10675.71 ) LPos=( -430.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3933.50, -154.62, 10678.21 ) LPos=( -427.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3928.29, -182.65, 10687.53 ) LPos=( -416.94, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3919.93, -176.94, 10702.64 ) LPos=( -399.69, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3929.68, -174.02, 10685.04 ) LPos=( -419.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3922.72, -171.18, 10697.63 ) LPos=( -405.44, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3924.11, -171.17, 10695.11 ) LPos=( -408.31, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3921.32, -168.31, 10700.15 ) LPos=( -402.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3929.68, -168.27, 10685.06 ) LPos=( -419.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3926.90, -165.41, 10690.10 ) LPos=( -414.06, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3933.50, -162.50, 10678.19 ) LPos=( -427.69, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3934.89, -165.36, 10675.67 ) LPos=( -430.56, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3936.29, -162.48, 10673.16 ) LPos=( -433.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.68, -173.97, 10670.61 ) LPos=( -436.31, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3943.25, -176.82, 10660.54 ) LPos=( -447.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3929.68, -207.77, 10684.94 ) LPos=( -419.81, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3926.90, -193.41, 10690.02 ) LPos=( -414.06, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3926.90, -190.53, 10690.03 ) LPos=( -414.06, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3924.11, -210.67, 10695.00 ) LPos=( -408.31, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3922.72, -190.55, 10697.57 ) LPos=( -405.44, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3921.32, -196.31, 10700.07 ) LPos=( -402.56, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3921.32, -190.56, 10700.08 ) LPos=( -402.56, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3919.93, -193.44, 10702.59 ) LPos=( -399.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3940.46, -190.46, 10665.53 ) LPos=( -442.06, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3943.25, -196.20, 10660.49 ) LPos=( -447.81, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3943.25, -199.07, 10660.48 ) LPos=( -447.81, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3939.07, -199.09, 10668.02 ) LPos=( -439.19, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3933.50, -207.75, 10678.06 ) LPos=( -427.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3933.50, -210.62, 10678.05 ) LPos=( -427.69, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3941.77, -221.52, 10663.09 ) LPos=( -444.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.23, -221.59, 10689.33 ) LPos=( -414.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3933.04, -227.56, 10678.82 ) LPos=( -426.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3924.32, -277.61, 10694.42 ) LPos=( -408.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3924.32, -283.61, 10694.40 ) LPos=( -408.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3941.76, -319.52, 10662.80 ) LPos=( -444.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3921.41, -319.62, 10699.54 ) LPos=( -402.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3935.95, -375.55, 10673.14 ) LPos=( -432.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3930.13, -375.58, 10683.63 ) LPos=( -420.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.22, -389.59, 10688.84 ) LPos=( -414.75, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3938.85, -401.53, 10667.81 ) LPos=( -438.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3938.85, -407.53, 10667.79 ) LPos=( -438.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3938.85, -413.53, 10667.78 ) LPos=( -438.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3935.95, -419.55, 10673.01 ) LPos=( -432.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3933.04, -419.56, 10678.25 ) LPos=( -426.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3941.76, -425.51, 10662.49 ) LPos=( -444.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3941.76, -463.51, 10662.38 ) LPos=( -444.75, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3930.13, -531.58, 10683.17 ) LPos=( -420.75, -531.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3930.12, -587.58, 10683.01 ) LPos=( -420.75, -587.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3927.22, -599.59, 10688.22 ) LPos=( -414.75, -599.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3927.22, -625.59, 10688.15 ) LPos=( -414.75, -625.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3924.31, -643.61, 10693.34 ) LPos=( -408.75, -643.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3905.69, 638.29, 10730.78 ) LPos=( -370.25, 638.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3908.60, 632.31, 10725.52 ) LPos=( -376.25, 632.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3911.50, 606.32, 10720.19 ) LPos=( -382.25, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3902.78, 550.28, 10735.77 ) LPos=( -364.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3908.59, 506.31, 10725.15 ) LPos=( -376.25, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3914.41, 482.34, 10714.58 ) LPos=( -388.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3908.59, 464.31, 10725.02 ) LPos=( -376.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3911.50, 444.32, 10719.72 ) LPos=( -382.25, 444.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3902.78, 438.28, 10735.44 ) LPos=( -364.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3902.77, 420.28, 10735.39 ) LPos=( -364.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3902.77, 414.28, 10735.37 ) LPos=( -364.25, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3905.68, 408.29, 10730.11 ) LPos=( -370.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3894.05, 394.23, 10751.06 ) LPos=( -346.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3914.40, 388.34, 10714.30 ) LPos=( -388.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3902.77, 388.28, 10735.30 ) LPos=( -364.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3896.96, 388.25, 10745.79 ) LPos=( -352.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3894.05, 388.23, 10751.04 ) LPos=( -346.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3896.96, 382.25, 10745.78 ) LPos=( -352.25, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3894.05, 376.23, 10751.01 ) LPos=( -346.25, 376.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3902.77, 364.28, 10735.23 ) LPos=( -364.25, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3908.59, 352.31, 10724.69 ) LPos=( -376.25, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3905.68, 338.29, 10729.90 ) LPos=( -370.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3902.77, 338.28, 10735.15 ) LPos=( -364.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3899.86, 338.26, 10740.40 ) LPos=( -358.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3914.40, 332.34, 10714.14 ) LPos=( -388.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3896.96, 332.25, 10745.63 ) LPos=( -352.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3911.49, 326.32, 10719.37 ) LPos=( -382.25, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3914.40, 308.34, 10714.07 ) LPos=( -388.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3914.40, 276.34, 10713.97 ) LPos=( -388.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3908.59, 276.31, 10724.47 ) LPos=( -376.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3896.95, 276.25, 10745.46 ) LPos=( -352.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3914.40, 270.34, 10713.96 ) LPos=( -388.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3905.68, 264.29, 10729.68 ) LPos=( -370.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3908.59, 258.31, 10724.42 ) LPos=( -376.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.86, 240.26, 10740.11 ) LPos=( -358.25, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3892.56, 214.91, 10753.21 ) LPos=( -343.19, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3899.53, 220.70, 10740.65 ) LPos=( -357.56, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3908.92, 215.00, 10723.69 ) LPos=( -376.94, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.31, 217.88, 10721.18 ) LPos=( -379.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3913.10, 226.52, 10716.18 ) LPos=( -385.56, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3902.31, 181.21, 10735.51 ) LPos=( -363.31, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3900.92, 192.70, 10738.06 ) LPos=( -360.44, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3899.53, 186.95, 10740.56 ) LPos=( -357.56, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3899.53, 189.82, 10740.56 ) LPos=( -357.56, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3899.53, 201.32, 10740.60 ) LPos=( -357.56, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3896.74, 186.93, 10745.59 ) LPos=( -351.81, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3914.49, 198.53, 10713.58 ) LPos=( -388.44, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.31, 192.75, 10721.11 ) LPos=( -379.81, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3906.13, 186.98, 10728.64 ) LPos=( -371.19, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3906.13, 184.11, 10728.63 ) LPos=( -371.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3911.70, 181.26, 10718.56 ) LPos=( -382.69, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3896.74, 153.18, 10745.49 ) LPos=( -351.81, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3900.92, 153.21, 10737.94 ) LPos=( -360.44, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3895.35, 156.05, 10748.01 ) LPos=( -348.94, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3899.53, 156.07, 10740.46 ) LPos=( -357.56, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3895.35, 161.80, 10748.03 ) LPos=( -348.94, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3892.56, 164.66, 10753.06 ) LPos=( -343.19, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.74, 164.68, 10745.52 ) LPos=( -351.81, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3892.56, 173.29, 10753.09 ) LPos=( -343.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3900.92, 173.33, 10738.00 ) LPos=( -360.44, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3906.13, 173.36, 10728.60 ) LPos=( -371.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3908.92, 159.00, 10723.53 ) LPos=( -376.94, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3910.31, 170.50, 10721.04 ) LPos=( -379.81, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3910.31, 164.75, 10721.03 ) LPos=( -379.81, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3910.31, 159.00, 10721.01 ) LPos=( -379.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3911.70, 167.64, 10718.52 ) LPos=( -382.69, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, 164.76, 10718.51 ) LPos=( -382.69, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3911.70, 159.01, 10718.50 ) LPos=( -382.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3911.70, 156.14, 10718.49 ) LPos=( -382.69, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.10, 164.77, 10716.00 ) LPos=( -385.56, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3913.10, 161.89, 10715.99 ) LPos=( -385.56, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3913.09, 159.02, 10715.98 ) LPos=( -385.56, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3913.09, 156.14, 10715.97 ) LPos=( -385.56, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3914.49, 167.65, 10713.49 ) LPos=( -388.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3902.31, 136.71, 10735.38 ) LPos=( -363.31, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3898.13, 128.07, 10742.90 ) LPos=( -354.69, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3898.13, 130.94, 10742.91 ) LPos=( -354.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3896.74, 142.43, 10745.45 ) LPos=( -351.81, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3892.56, 145.29, 10753.01 ) LPos=( -343.19, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3914.49, 145.40, 10713.43 ) LPos=( -388.44, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3913.09, 145.39, 10715.94 ) LPos=( -385.56, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3915.88, 139.66, 10710.89 ) LPos=( -391.31, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3915.88, 136.78, 10710.89 ) LPos=( -391.31, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3908.91, 136.75, 10723.46 ) LPos=( -376.94, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3911.70, 131.01, 10718.41 ) LPos=( -382.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3898.13, 97.19, 10742.81 ) LPos=( -354.69, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3893.95, 105.79, 10750.38 ) LPos=( -346.06, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3898.13, 108.69, 10742.84 ) LPos=( -354.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3902.31, 108.71, 10735.30 ) LPos=( -363.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3892.56, 111.54, 10752.91 ) LPos=( -343.19, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3900.92, 111.58, 10737.82 ) LPos=( -360.44, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3902.31, 111.59, 10735.30 ) LPos=( -363.31, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3900.92, 114.46, 10737.83 ) LPos=( -360.44, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3898.13, 117.32, 10742.87 ) LPos=( -354.69, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.52, 117.32, 10740.35 ) LPos=( -357.56, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3902.31, 117.34, 10735.32 ) LPos=( -363.31, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3906.13, 100.11, 10728.38 ) LPos=( -371.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3911.70, 111.64, 10718.36 ) LPos=( -382.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, 108.76, 10718.35 ) LPos=( -382.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.09, 108.77, 10715.83 ) LPos=( -385.56, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3914.49, 97.28, 10713.28 ) LPos=( -388.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3915.88, 108.78, 10710.80 ) LPos=( -391.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3902.31, 89.34, 10735.24 ) LPos=( -363.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3900.92, 72.08, 10737.70 ) LPos=( -360.44, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3898.13, 74.94, 10742.74 ) LPos=( -354.69, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3898.13, 80.69, 10742.76 ) LPos=( -354.69, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3898.13, 89.32, 10742.78 ) LPos=( -354.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3893.95, 69.17, 10750.27 ) LPos=( -346.06, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3914.49, 89.40, 10713.26 ) LPos=( -388.44, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3907.52, 89.37, 10725.84 ) LPos=( -374.06, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3907.52, 77.87, 10725.80 ) LPos=( -374.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3915.88, 75.03, 10710.70 ) LPos=( -391.31, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3914.49, 75.03, 10713.22 ) LPos=( -388.44, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3910.31, 75.00, 10720.76 ) LPos=( -379.81, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3911.70, 72.14, 10718.24 ) LPos=( -382.69, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3910.31, 69.25, 10720.75 ) LPos=( -379.81, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3906.13, 69.23, 10728.29 ) LPos=( -371.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3895.34, 41.18, 10747.67 ) LPos=( -348.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3902.31, 44.09, 10735.11 ) LPos=( -363.31, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3899.52, 46.95, 10740.14 ) LPos=( -357.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3902.31, 46.96, 10735.11 ) LPos=( -363.31, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3893.95, 49.79, 10750.21 ) LPos=( -346.06, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3902.31, 52.71, 10735.13 ) LPos=( -363.31, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3898.13, 55.57, 10742.68 ) LPos=( -354.69, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3900.92, 55.58, 10737.66 ) LPos=( -360.44, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3902.31, 55.59, 10735.14 ) LPos=( -363.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3895.34, 58.43, 10747.72 ) LPos=( -348.94, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3900.92, 58.46, 10737.66 ) LPos=( -360.44, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3902.31, 58.46, 10735.15 ) LPos=( -363.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3895.34, 61.30, 10747.73 ) LPos=( -348.94, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3898.13, 61.32, 10742.70 ) LPos=( -354.69, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3906.13, 49.86, 10728.23 ) LPos=( -371.19, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3907.52, 61.37, 10725.75 ) LPos=( -374.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3907.52, 52.74, 10725.73 ) LPos=( -374.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3910.31, 47.01, 10720.68 ) LPos=( -379.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3911.70, 58.51, 10718.20 ) LPos=( -382.69, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3911.70, 49.89, 10718.18 ) LPos=( -382.69, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3913.09, 61.39, 10715.69 ) LPos=( -385.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3913.09, 58.52, 10715.69 ) LPos=( -385.56, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3913.09, 47.02, 10715.65 ) LPos=( -385.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3914.49, 52.78, 10713.15 ) LPos=( -388.44, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3914.48, 49.90, 10713.15 ) LPos=( -388.44, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3915.88, 58.53, 10710.66 ) LPos=( -391.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3915.88, 49.91, 10710.63 ) LPos=( -391.31, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3902.31, 18.96, 10735.03 ) LPos=( -363.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3899.52, 13.20, 10740.05 ) LPos=( -357.56, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3896.74, 13.18, 10745.08 ) LPos=( -351.81, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3896.74, 24.68, 10745.11 ) LPos=( -351.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3896.74, 27.56, 10745.12 ) LPos=( -351.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3895.34, 16.05, 10747.60 ) LPos=( -348.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3895.34, 27.55, 10747.63 ) LPos=( -348.94, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3895.34, 30.43, 10747.64 ) LPos=( -348.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3893.95, 24.67, 10750.14 ) LPos=( -346.06, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3892.56, 13.16, 10752.62 ) LPos=( -343.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3915.88, 30.53, 10710.57 ) LPos=( -391.31, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3907.52, 30.49, 10725.66 ) LPos=( -374.06, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3906.12, 30.48, 10728.18 ) LPos=( -371.19, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.30, 24.76, 10720.62 ) LPos=( -379.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3915.88, 21.91, 10710.55 ) LPos=( -391.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3914.48, 21.90, 10713.06 ) LPos=( -388.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3910.30, 13.26, 10720.58 ) LPos=( -379.81, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3896.73, -14.82, 10744.99 ) LPos=( -351.81, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3899.52, -14.80, 10739.96 ) LPos=( -357.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3895.34, -11.95, 10747.52 ) LPos=( -348.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3896.73, -11.94, 10745.00 ) LPos=( -351.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3900.91, -11.92, 10737.46 ) LPos=( -360.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3892.55, -6.21, 10752.56 ) LPos=( -343.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3893.95, -6.21, 10750.05 ) LPos=( -346.06, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3892.55, -3.34, 10752.57 ) LPos=( -343.19, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3893.95, -3.33, 10750.06 ) LPos=( -346.06, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.73, -3.32, 10745.03 ) LPos=( -351.81, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3893.95, -0.46, 10750.06 ) LPos=( -346.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3898.13, -0.43, 10742.52 ) LPos=( -354.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3892.55, 2.41, 10752.59 ) LPos=( -343.19, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3906.12, -0.39, 10728.09 ) LPos=( -371.19, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3906.12, -6.14, 10728.07 ) LPos=( -371.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3908.91, -6.13, 10723.04 ) LPos=( -376.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3910.30, -14.74, 10720.50 ) LPos=( -379.81, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3911.70, 2.51, 10718.04 ) LPos=( -382.69, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, -3.24, 10718.02 ) LPos=( -382.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3911.70, -14.74, 10717.99 ) LPos=( -382.69, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3914.48, -8.97, 10712.97 ) LPos=( -388.44, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3915.88, -3.22, 10710.48 ) LPos=( -391.31, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3915.88, -6.09, 10710.47 ) LPos=( -391.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3915.88, -11.84, 10710.45 ) LPos=( -391.31, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3915.88, -14.72, 10710.44 ) LPos=( -391.31, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3899.52, -28.43, 10739.92 ) LPos=( -357.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3898.13, -37.06, 10742.41 ) LPos=( -354.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3898.13, -31.31, 10742.43 ) LPos=( -354.69, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3896.73, -39.94, 10744.92 ) LPos=( -351.81, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3896.73, -28.44, 10744.95 ) LPos=( -351.81, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3896.73, -25.57, 10744.96 ) LPos=( -351.81, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3895.34, -39.95, 10747.43 ) LPos=( -348.94, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3895.34, -37.07, 10747.44 ) LPos=( -348.94, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3892.55, -28.46, 10752.50 ) LPos=( -343.19, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3892.55, -22.71, 10752.51 ) LPos=( -343.19, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3915.88, -22.59, 10710.42 ) LPos=( -391.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3911.70, -25.49, 10717.95 ) LPos=( -382.69, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3914.48, -28.35, 10712.92 ) LPos=( -388.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3913.09, -28.35, 10715.43 ) LPos=( -385.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3906.12, -28.39, 10728.01 ) LPos=( -371.19, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.30, -31.24, 10720.45 ) LPos=( -379.81, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3908.91, -34.13, 10722.96 ) LPos=( -376.94, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3907.52, -34.13, 10725.47 ) LPos=( -374.06, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3906.12, -34.14, 10727.99 ) LPos=( -371.19, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3908.91, -37.00, 10722.95 ) LPos=( -376.94, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3907.52, -39.88, 10725.46 ) LPos=( -374.06, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3906.12, -39.89, 10727.97 ) LPos=( -371.19, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3914.48, -42.72, 10712.87 ) LPos=( -388.44, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3907.52, -42.76, 10725.45 ) LPos=( -374.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3899.52, -70.80, 10739.80 ) LPos=( -357.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3893.95, -67.96, 10749.87 ) LPos=( -346.06, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3895.34, -62.20, 10747.37 ) LPos=( -348.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3896.73, -62.19, 10744.85 ) LPos=( -351.81, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3895.34, -59.32, 10747.38 ) LPos=( -348.94, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.73, -59.32, 10744.86 ) LPos=( -351.81, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3900.91, -59.29, 10737.32 ) LPos=( -360.44, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3899.52, -56.43, 10739.84 ) LPos=( -357.56, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3892.55, -53.59, 10752.42 ) LPos=( -343.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3899.52, -53.55, 10739.85 ) LPos=( -357.56, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3896.73, -50.69, 10744.89 ) LPos=( -351.81, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3900.91, -50.67, 10737.34 ) LPos=( -360.44, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3907.52, -65.01, 10725.38 ) LPos=( -374.06, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3910.30, -56.37, 10720.38 ) LPos=( -379.81, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, -59.24, 10717.86 ) LPos=( -382.69, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3911.69, -70.74, 10717.82 ) LPos=( -382.69, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.09, -59.23, 10715.34 ) LPos=( -385.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3913.09, -70.73, 10715.31 ) LPos=( -385.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3914.48, -53.47, 10712.84 ) LPos=( -388.44, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3914.48, -56.35, 10712.83 ) LPos=( -388.44, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3914.48, -59.22, 10712.83 ) LPos=( -388.44, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3915.88, -50.59, 10710.34 ) LPos=( -391.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3915.87, -67.84, 10710.29 ) LPos=( -391.31, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3900.91, -95.92, 10737.21 ) LPos=( -360.44, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3899.52, -90.18, 10739.74 ) LPos=( -357.56, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3896.73, -95.94, 10744.75 ) LPos=( -351.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3895.34, -93.07, 10747.28 ) LPos=( -348.94, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3893.95, -95.96, 10749.78 ) LPos=( -346.06, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3893.95, -93.08, 10749.79 ) LPos=( -346.06, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3892.55, -95.96, 10752.30 ) LPos=( -343.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3914.48, -78.60, 10712.77 ) LPos=( -388.44, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3913.09, -81.48, 10715.28 ) LPos=( -385.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3908.91, -81.50, 10722.82 ) LPos=( -376.94, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3911.69, -84.36, 10717.78 ) LPos=( -382.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3907.51, -87.26, 10725.32 ) LPos=( -374.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3915.87, -92.96, 10710.21 ) LPos=( -391.31, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3914.48, -92.97, 10712.73 ) LPos=( -388.44, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3913.09, -95.85, 10715.23 ) LPos=( -385.56, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3908.91, -98.75, 10722.77 ) LPos=( -376.94, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3907.51, -98.76, 10725.28 ) LPos=( -374.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3893.94, -115.33, 10749.73 ) LPos=( -346.06, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.73, -115.32, 10744.70 ) LPos=( -351.81, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3895.34, -112.45, 10747.22 ) LPos=( -348.94, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3898.12, -112.43, 10742.19 ) LPos=( -354.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3899.52, -112.43, 10739.68 ) LPos=( -357.56, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3895.34, -106.70, 10747.24 ) LPos=( -348.94, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3906.12, -112.39, 10727.76 ) LPos=( -371.19, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3906.12, -115.27, 10727.75 ) LPos=( -371.19, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3907.51, -118.13, 10725.23 ) LPos=( -374.06, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3908.91, -115.25, 10722.72 ) LPos=( -376.94, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3910.30, -120.99, 10720.19 ) LPos=( -379.81, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3911.69, -106.61, 10717.72 ) LPos=( -382.69, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3911.69, -112.36, 10717.70 ) LPos=( -382.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3896.73, -134.69, 10744.64 ) LPos=( -351.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3895.34, -154.82, 10747.10 ) LPos=( -348.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3893.94, -146.21, 10749.64 ) LPos=( -346.06, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3914.48, -140.35, 10712.59 ) LPos=( -388.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3911.69, -143.24, 10717.61 ) LPos=( -382.69, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3911.69, -148.99, 10717.59 ) LPos=( -382.69, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3907.51, -149.01, 10725.14 ) LPos=( -374.06, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3913.09, -151.85, 10715.07 ) LPos=( -385.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3913.09, -154.73, 10715.06 ) LPos=( -385.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3911.69, -154.74, 10717.57 ) LPos=( -382.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3895.34, -182.82, 10747.01 ) LPos=( -348.94, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3893.94, -177.08, 10749.55 ) LPos=( -346.06, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3896.73, -174.19, 10744.53 ) LPos=( -351.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3898.12, -165.56, 10742.04 ) LPos=( -354.69, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3900.91, -165.54, 10737.01 ) LPos=( -360.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3893.94, -162.71, 10749.59 ) LPos=( -346.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3896.73, -162.69, 10744.56 ) LPos=( -351.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.52, -162.68, 10739.53 ) LPos=( -357.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3900.91, -162.67, 10737.01 ) LPos=( -360.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3906.12, -171.27, 10727.59 ) LPos=( -371.19, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3908.91, -174.13, 10722.55 ) LPos=( -376.94, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3910.30, -165.49, 10720.06 ) LPos=( -379.81, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3910.30, -168.37, 10720.05 ) LPos=( -379.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3910.30, -171.24, 10720.04 ) LPos=( -379.81, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3913.09, -168.35, 10715.02 ) LPos=( -385.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.09, -171.23, 10715.01 ) LPos=( -385.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3913.08, -174.10, 10715.00 ) LPos=( -385.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3913.08, -176.98, 10714.99 ) LPos=( -385.56, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3914.48, -179.85, 10712.47 ) LPos=( -388.44, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3915.87, -165.46, 10710.00 ) LPos=( -391.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3902.30, -196.41, 10734.40 ) LPos=( -363.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3902.30, -190.66, 10734.42 ) LPos=( -363.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3899.51, -205.05, 10739.40 ) LPos=( -357.56, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3892.55, -207.96, 10751.97 ) LPos=( -343.19, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3914.48, -199.22, 10712.41 ) LPos=( -388.44, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3913.08, -199.23, 10714.93 ) LPos=( -385.56, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3914.48, -202.10, 10712.41 ) LPos=( -388.44, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3914.48, -204.97, 10712.40 ) LPos=( -388.44, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3913.08, -204.98, 10714.91 ) LPos=( -385.56, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3914.39, -221.66, 10712.51 ) LPos=( -388.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3911.48, -221.68, 10717.76 ) LPos=( -382.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3894.03, -221.77, 10749.25 ) LPos=( -346.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3911.48, -239.67, 10717.71 ) LPos=( -382.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3911.48, -257.67, 10717.66 ) LPos=( -382.25, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3911.48, -289.67, 10717.56 ) LPos=( -382.25, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3914.38, -313.66, 10712.24 ) LPos=( -388.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3908.57, -313.69, 10722.74 ) LPos=( -376.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3902.75, -313.72, 10733.24 ) LPos=( -364.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3896.94, -313.75, 10743.73 ) LPos=( -352.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3902.75, -319.72, 10733.22 ) LPos=( -364.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3908.57, -339.69, 10722.66 ) LPos=( -376.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3899.84, -339.74, 10738.41 ) LPos=( -358.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3902.75, -345.72, 10733.14 ) LPos=( -364.25, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3899.84, -357.74, 10738.36 ) LPos=( -358.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3914.38, -363.66, 10712.10 ) LPos=( -388.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3911.47, -363.67, 10717.34 ) LPos=( -382.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3905.66, -369.71, 10727.82 ) LPos=( -370.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3902.75, -395.72, 10733.00 ) LPos=( -364.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3911.47, -475.67, 10717.02 ) LPos=( -382.25, -475.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3902.75, -519.72, 10732.63 ) LPos=( -364.25, -519.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.84, -543.73, 10737.81 ) LPos=( -358.25, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3887.03, 662.19, 10764.53 ) LPos=( -331.75, 662.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3884.12, 606.18, 10769.61 ) LPos=( -325.75, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.21, 594.16, 10774.83 ) LPos=( -319.75, 594.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3881.21, 582.16, 10774.79 ) LPos=( -319.75, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3869.58, 538.10, 10795.66 ) LPos=( -295.75, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3869.58, 532.10, 10795.64 ) LPos=( -295.75, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3869.58, 526.10, 10795.62 ) LPos=( -295.75, 526.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3869.58, 520.10, 10795.60 ) LPos=( -295.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3866.67, 520.09, 10800.85 ) LPos=( -289.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3869.58, 500.10, 10795.54 ) LPos=( -295.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3869.58, 494.10, 10795.53 ) LPos=( -295.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3875.40, 450.13, 10784.90 ) LPos=( -307.75, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3878.30, 438.15, 10779.62 ) LPos=( -313.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3887.02, 420.19, 10763.82 ) LPos=( -331.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3866.67, 420.09, 10800.56 ) LPos=( -289.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3869.58, 408.10, 10795.27 ) LPos=( -295.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3884.12, 394.18, 10768.99 ) LPos=( -325.75, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3887.02, 352.19, 10763.62 ) LPos=( -331.75, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3887.02, 326.19, 10763.54 ) LPos=( -331.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3881.21, 326.16, 10774.04 ) LPos=( -319.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3887.02, 320.19, 10763.53 ) LPos=( -331.75, 320.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3881.21, 320.16, 10774.02 ) LPos=( -319.75, 320.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3887.02, 314.19, 10763.51 ) LPos=( -331.75, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3869.58, 302.10, 10794.96 ) LPos=( -295.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3881.21, 296.16, 10773.95 ) LPos=( -319.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.48, 296.12, 10789.70 ) LPos=( -301.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.30, 282.15, 10779.16 ) LPos=( -313.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3869.57, 282.10, 10794.90 ) LPos=( -295.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3866.67, 282.09, 10800.15 ) LPos=( -289.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3884.11, 276.18, 10768.64 ) LPos=( -325.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3866.67, 276.09, 10800.14 ) LPos=( -289.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3878.30, 264.15, 10779.11 ) LPos=( -313.75, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.20, 258.16, 10773.84 ) LPos=( -319.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3881.20, 252.16, 10773.82 ) LPos=( -319.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3884.11, 246.18, 10768.56 ) LPos=( -325.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3872.48, 246.12, 10789.55 ) LPos=( -301.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3866.67, 246.09, 10800.05 ) LPos=( -289.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3884.11, 240.18, 10768.54 ) LPos=( -325.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3878.30, 240.15, 10779.04 ) LPos=( -313.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3867.97, 209.03, 10797.59 ) LPos=( -292.44, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3866.57, 211.90, 10800.11 ) LPos=( -289.56, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, 214.77, 10800.12 ) LPos=( -289.56, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3885.72, 209.12, 10765.55 ) LPos=( -329.06, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3874.93, 201.19, 10784.99 ) LPos=( -306.81, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3873.54, 186.81, 10787.46 ) LPos=( -303.94, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 198.31, 10787.50 ) LPos=( -303.94, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3867.97, 183.91, 10797.51 ) LPos=( -292.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3867.97, 186.78, 10797.52 ) LPos=( -292.44, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3880.14, 189.72, 10775.55 ) LPos=( -317.56, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.32, 181.12, 10767.98 ) LPos=( -326.19, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3881.54, 181.10, 10773.01 ) LPos=( -320.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3873.54, 153.06, 10787.36 ) LPos=( -303.94, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3874.93, 153.07, 10784.85 ) LPos=( -306.81, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 155.94, 10787.37 ) LPos=( -303.94, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3874.93, 155.94, 10784.86 ) LPos=( -306.81, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3865.18, 158.77, 10802.47 ) LPos=( -286.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3867.97, 158.78, 10797.44 ) LPos=( -292.44, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3869.36, 158.79, 10794.93 ) LPos=( -295.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3865.18, 161.64, 10802.48 ) LPos=( -286.69, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3874.93, 161.69, 10784.87 ) LPos=( -306.81, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3873.54, 167.44, 10787.41 ) LPos=( -303.94, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3870.75, 173.17, 10792.45 ) LPos=( -298.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.15, 173.18, 10789.94 ) LPos=( -301.06, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.14, 158.85, 10775.46 ) LPos=( -317.56, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3882.93, 167.49, 10770.46 ) LPos=( -323.31, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.93, 158.86, 10770.43 ) LPos=( -323.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3882.93, 155.99, 10770.42 ) LPos=( -323.31, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3882.93, 153.11, 10770.42 ) LPos=( -323.31, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3885.71, 167.50, 10765.43 ) LPos=( -329.06, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3885.71, 161.75, 10765.41 ) LPos=( -329.06, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3874.93, 145.19, 10784.83 ) LPos=( -306.81, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3873.54, 139.44, 10787.32 ) LPos=( -303.94, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 142.31, 10787.33 ) LPos=( -303.94, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3872.15, 145.18, 10789.86 ) LPos=( -301.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.36, 133.66, 10794.85 ) LPos=( -295.31, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3869.36, 139.41, 10794.87 ) LPos=( -295.31, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.97, 142.28, 10797.39 ) LPos=( -292.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3866.57, 125.02, 10799.86 ) LPos=( -289.56, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3881.53, 142.35, 10772.90 ) LPos=( -320.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3885.71, 139.50, 10765.35 ) LPos=( -329.06, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3881.53, 133.73, 10772.87 ) LPos=( -320.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3884.32, 130.87, 10767.84 ) LPos=( -326.19, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3881.53, 130.85, 10772.87 ) LPos=( -320.44, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3880.14, 130.85, 10775.38 ) LPos=( -317.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3878.75, 130.84, 10777.90 ) LPos=( -314.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3882.93, 127.99, 10770.34 ) LPos=( -323.31, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3881.53, 127.98, 10772.86 ) LPos=( -320.44, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3880.14, 127.97, 10775.37 ) LPos=( -317.56, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3887.11, 125.13, 10762.79 ) LPos=( -331.94, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.32, 125.12, 10767.82 ) LPos=( -326.19, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3882.93, 125.11, 10770.33 ) LPos=( -323.31, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3870.75, 97.05, 10792.23 ) LPos=( -298.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3873.54, 97.06, 10787.20 ) LPos=( -303.94, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, 102.77, 10799.79 ) LPos=( -289.56, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3869.36, 102.79, 10794.76 ) LPos=( -295.31, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3870.75, 102.80, 10792.25 ) LPos=( -298.19, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3873.54, 102.81, 10787.22 ) LPos=( -303.94, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3867.96, 105.66, 10797.28 ) LPos=( -292.44, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3865.18, 108.52, 10802.32 ) LPos=( -286.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3872.14, 108.55, 10789.75 ) LPos=( -301.06, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3866.57, 111.40, 10799.82 ) LPos=( -289.56, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3878.75, 111.46, 10777.84 ) LPos=( -314.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3880.14, 114.35, 10775.33 ) LPos=( -317.56, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.14, 102.85, 10775.30 ) LPos=( -317.56, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3882.93, 114.36, 10770.30 ) LPos=( -323.31, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3882.93, 97.11, 10770.25 ) LPos=( -323.31, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3884.32, 117.24, 10767.80 ) LPos=( -326.19, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3884.32, 105.74, 10767.76 ) LPos=( -326.19, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3884.32, 97.12, 10767.74 ) LPos=( -326.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3885.71, 114.38, 10765.27 ) LPos=( -329.06, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3887.11, 117.26, 10762.77 ) LPos=( -331.94, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3888.50, 108.64, 10760.23 ) LPos=( -334.81, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3874.93, 71.94, 10784.61 ) LPos=( -306.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3874.93, 80.57, 10784.64 ) LPos=( -306.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3874.93, 83.44, 10784.64 ) LPos=( -306.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3870.75, 69.05, 10792.15 ) LPos=( -298.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3867.96, 83.41, 10797.22 ) LPos=( -292.44, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.96, 86.28, 10797.23 ) LPos=( -292.44, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3865.18, 83.39, 10802.25 ) LPos=( -286.69, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3882.93, 89.24, 10770.23 ) LPos=( -323.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3880.14, 89.22, 10775.26 ) LPos=( -317.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3878.75, 89.21, 10777.77 ) LPos=( -314.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3888.50, 86.39, 10760.16 ) LPos=( -334.81, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3888.50, 83.52, 10760.15 ) LPos=( -334.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3888.50, 80.64, 10760.14 ) LPos=( -334.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3885.71, 77.75, 10765.16 ) LPos=( -329.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3882.93, 77.74, 10770.19 ) LPos=( -323.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3887.11, 72.01, 10762.63 ) LPos=( -331.94, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.32, 71.99, 10767.66 ) LPos=( -326.19, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3887.11, 69.13, 10762.62 ) LPos=( -331.94, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3869.36, 41.04, 10794.58 ) LPos=( -295.31, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 43.94, 10787.04 ) LPos=( -303.94, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, 46.77, 10799.63 ) LPos=( -289.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3865.18, 52.52, 10802.16 ) LPos=( -286.69, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3866.57, 55.40, 10799.65 ) LPos=( -289.56, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3874.93, 55.44, 10784.56 ) LPos=( -306.81, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3870.75, 58.30, 10792.12 ) LPos=( -298.19, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3878.75, 58.34, 10777.68 ) LPos=( -314.69, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3880.14, 43.97, 10775.13 ) LPos=( -317.56, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3880.14, 41.10, 10775.12 ) LPos=( -317.56, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3881.53, 46.85, 10772.62 ) LPos=( -320.44, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3884.32, 58.37, 10767.62 ) LPos=( -326.19, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3884.32, 55.49, 10767.61 ) LPos=( -326.19, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3884.32, 41.12, 10767.57 ) LPos=( -326.19, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3885.71, 61.25, 10765.12 ) LPos=( -329.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3885.71, 44.00, 10765.07 ) LPos=( -329.06, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3887.10, 55.51, 10762.58 ) LPos=( -331.94, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3887.10, 46.88, 10762.56 ) LPos=( -331.94, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3888.50, 58.39, 10760.08 ) LPos=( -334.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3872.14, 15.93, 10789.48 ) LPos=( -301.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3865.18, 30.27, 10802.09 ) LPos=( -286.69, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3887.10, 33.26, 10762.52 ) LPos=( -331.94, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3885.71, 33.25, 10765.03 ) LPos=( -329.06, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3884.32, 27.49, 10767.53 ) LPos=( -326.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3884.32, 21.74, 10767.52 ) LPos=( -326.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3887.10, 16.01, 10762.47 ) LPos=( -331.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3885.71, 16.00, 10764.98 ) LPos=( -329.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.32, 13.12, 10767.49 ) LPos=( -326.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3882.92, 13.11, 10770.00 ) LPos=( -323.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3869.35, -14.96, 10794.42 ) LPos=( -295.31, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3870.75, -14.95, 10791.90 ) LPos=( -298.19, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3867.96, -12.09, 10796.94 ) LPos=( -292.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3870.75, -12.08, 10791.91 ) LPos=( -298.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3872.14, -12.07, 10789.39 ) LPos=( -301.06, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3874.93, -12.06, 10784.36 ) LPos=( -306.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3865.17, -9.23, 10801.98 ) LPos=( -286.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, -9.23, 10799.46 ) LPos=( -289.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3869.35, -9.21, 10794.43 ) LPos=( -295.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3870.75, -9.20, 10791.92 ) LPos=( -298.19, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3867.96, -6.34, 10796.96 ) LPos=( -292.44, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.35, -3.46, 10794.45 ) LPos=( -295.31, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3870.75, -3.45, 10791.93 ) LPos=( -298.19, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3865.17, -0.61, 10802.00 ) LPos=( -286.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3866.57, -0.60, 10799.49 ) LPos=( -289.56, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3867.96, -0.59, 10796.97 ) LPos=( -292.44, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3872.14, -0.57, 10789.43 ) LPos=( -301.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3873.53, -0.56, 10786.91 ) LPos=( -303.94, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3867.96, 2.28, 10796.98 ) LPos=( -292.44, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3869.35, 2.29, 10794.47 ) LPos=( -295.31, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3873.53, 2.31, 10786.92 ) LPos=( -303.94, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3866.57, 5.15, 10799.50 ) LPos=( -289.56, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3867.96, 5.16, 10796.99 ) LPos=( -292.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3869.35, 5.16, 10794.47 ) LPos=( -295.31, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3870.75, 5.17, 10791.96 ) LPos=( -298.19, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.14, 5.18, 10789.44 ) LPos=( -301.06, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3873.53, 5.19, 10786.93 ) LPos=( -303.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3878.74, -12.04, 10777.48 ) LPos=( -314.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.14, -9.15, 10774.97 ) LPos=( -317.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3882.92, -6.26, 10769.95 ) LPos=( -323.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.92, -9.14, 10769.94 ) LPos=( -323.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3874.93, -42.93, 10784.27 ) LPos=( -306.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3873.53, -40.06, 10786.80 ) LPos=( -303.94, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3873.53, -22.81, 10786.85 ) LPos=( -303.94, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3872.14, -34.32, 10789.33 ) LPos=( -301.06, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3870.75, -31.45, 10791.85 ) LPos=( -298.19, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.35, -34.34, 10794.36 ) LPos=( -295.31, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.96, -25.72, 10796.90 ) LPos=( -292.44, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3867.96, -22.84, 10796.91 ) LPos=( -292.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3866.57, -34.35, 10799.39 ) LPos=( -289.56, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3865.17, -31.48, 10801.91 ) LPos=( -286.69, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3881.53, -22.77, 10772.41 ) LPos=( -320.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3885.71, -25.62, 10764.86 ) LPos=( -329.06, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3878.74, -25.66, 10777.44 ) LPos=( -314.69, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3887.10, -28.49, 10762.34 ) LPos=( -331.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3882.92, -31.39, 10769.87 ) LPos=( -323.31, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3881.53, -31.40, 10772.39 ) LPos=( -320.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3878.74, -31.41, 10777.42 ) LPos=( -314.69, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3888.50, -34.23, 10759.81 ) LPos=( -334.81, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3887.10, -34.24, 10762.32 ) LPos=( -331.94, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3884.32, -34.26, 10767.35 ) LPos=( -326.19, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3881.53, -37.15, 10772.37 ) LPos=( -320.44, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3888.50, -39.98, 10759.79 ) LPos=( -334.81, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.32, -40.01, 10767.33 ) LPos=( -326.19, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3881.53, -40.02, 10772.36 ) LPos=( -320.44, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3882.92, -42.89, 10769.84 ) LPos=( -323.31, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3880.14, -42.90, 10774.87 ) LPos=( -317.56, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3866.57, -70.97, 10799.28 ) LPos=( -289.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3865.17, -62.36, 10801.82 ) LPos=( -286.69, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3874.93, -59.43, 10784.23 ) LPos=( -306.81, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3870.75, -53.70, 10791.79 ) LPos=( -298.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3874.93, -53.68, 10784.24 ) LPos=( -306.81, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3866.57, -50.85, 10799.34 ) LPos=( -289.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.14, -50.82, 10789.28 ) LPos=( -301.06, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.74, -59.41, 10777.34 ) LPos=( -314.69, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3880.14, -50.78, 10774.85 ) LPos=( -317.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.13, -65.15, 10774.80 ) LPos=( -317.56, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3880.13, -70.90, 10774.79 ) LPos=( -317.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3881.53, -50.77, 10772.33 ) LPos=( -320.44, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3882.92, -50.76, 10769.82 ) LPos=( -323.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.92, -65.14, 10769.78 ) LPos=( -323.31, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3887.10, -50.74, 10762.27 ) LPos=( -331.94, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3887.10, -59.37, 10762.25 ) LPos=( -331.94, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3888.49, -56.48, 10759.74 ) LPos=( -334.81, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3874.92, -90.31, 10784.13 ) LPos=( -306.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3874.92, -84.56, 10784.15 ) LPos=( -306.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3873.53, -93.19, 10786.64 ) LPos=( -303.94, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3870.74, -84.58, 10791.70 ) LPos=( -298.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3870.75, -78.83, 10791.71 ) LPos=( -298.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3869.35, -87.46, 10794.20 ) LPos=( -295.31, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3867.96, -87.47, 10796.72 ) LPos=( -292.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3866.56, -98.97, 10799.20 ) LPos=( -289.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3865.17, -84.61, 10801.76 ) LPos=( -286.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3865.17, -78.86, 10801.77 ) LPos=( -286.69, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3880.13, -78.78, 10774.76 ) LPos=( -317.56, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3882.92, -81.64, 10769.73 ) LPos=( -323.31, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3887.10, -84.49, 10762.17 ) LPos=( -331.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3878.74, -84.54, 10777.26 ) LPos=( -314.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3887.10, -90.24, 10762.16 ) LPos=( -331.94, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3882.92, -90.26, 10769.70 ) LPos=( -323.31, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3881.53, -90.27, 10772.22 ) LPos=( -320.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3878.74, -90.29, 10777.25 ) LPos=( -314.69, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3885.71, -93.12, 10764.66 ) LPos=( -329.06, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.31, -96.01, 10767.17 ) LPos=( -326.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3882.92, -96.01, 10769.68 ) LPos=( -323.31, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3878.74, -96.04, 10777.23 ) LPos=( -314.69, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.31, -98.88, 10767.16 ) LPos=( -326.19, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3880.13, -98.90, 10774.71 ) LPos=( -317.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3865.17, -124.11, 10801.64 ) LPos=( -286.69, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3873.53, -121.19, 10786.56 ) LPos=( -303.94, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3867.96, -115.47, 10796.63 ) LPos=( -292.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3869.35, -112.58, 10794.13 ) LPos=( -295.31, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3878.74, -112.54, 10777.18 ) LPos=( -314.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3881.53, -109.65, 10772.16 ) LPos=( -320.44, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3881.53, -118.27, 10772.13 ) LPos=( -320.44, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3882.92, -118.26, 10769.62 ) LPos=( -323.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3884.31, -106.76, 10767.14 ) LPos=( -326.19, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3884.31, -109.63, 10767.13 ) LPos=( -326.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3888.49, -106.73, 10759.59 ) LPos=( -334.81, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3888.49, -121.11, 10759.55 ) LPos=( -334.81, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3872.14, -149.20, 10788.99 ) LPos=( -301.06, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3870.74, -146.33, 10791.51 ) LPos=( -298.19, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3869.35, -149.21, 10794.02 ) LPos=( -295.31, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3867.96, -154.97, 10796.52 ) LPos=( -292.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3866.56, -154.97, 10799.03 ) LPos=( -289.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3866.56, -146.35, 10799.06 ) LPos=( -289.56, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3865.17, -134.86, 10801.61 ) LPos=( -286.69, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3878.74, -134.79, 10777.12 ) LPos=( -314.69, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3882.92, -140.51, 10769.55 ) LPos=( -323.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3880.13, -140.53, 10774.58 ) LPos=( -317.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3887.10, -149.12, 10761.98 ) LPos=( -331.94, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3884.31, -149.13, 10767.01 ) LPos=( -326.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3878.74, -152.04, 10777.06 ) LPos=( -314.69, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3866.56, -180.10, 10798.96 ) LPos=( -289.56, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3872.14, -180.07, 10788.90 ) LPos=( -301.06, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3874.92, -180.06, 10783.87 ) LPos=( -306.81, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3872.14, -177.19, 10788.91 ) LPos=( -301.06, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3866.56, -174.35, 10798.98 ) LPos=( -289.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3873.53, -174.31, 10786.40 ) LPos=( -303.94, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.35, -171.46, 10793.96 ) LPos=( -295.31, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3873.53, -171.44, 10786.41 ) LPos=( -303.94, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3874.92, -168.56, 10783.90 ) LPos=( -306.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3873.53, -165.69, 10786.43 ) LPos=( -303.94, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3873.53, -162.81, 10786.44 ) LPos=( -303.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.74, -171.41, 10777.01 ) LPos=( -314.69, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3878.74, -177.16, 10776.99 ) LPos=( -314.69, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3880.13, -168.53, 10774.50 ) LPos=( -317.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3880.13, -180.03, 10774.47 ) LPos=( -317.56, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3881.52, -171.40, 10771.98 ) LPos=( -320.44, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3882.92, -165.64, 10769.48 ) LPos=( -323.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.92, -177.14, 10769.45 ) LPos=( -323.31, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3885.70, -165.62, 10764.45 ) LPos=( -329.06, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3888.49, -165.61, 10759.42 ) LPos=( -334.81, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3873.53, -210.94, 10786.30 ) LPos=( -303.94, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3873.53, -205.19, 10786.31 ) LPos=( -303.94, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3870.74, -205.20, 10791.34 ) LPos=( -298.19, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3869.35, -208.08, 10793.85 ) LPos=( -295.31, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3869.35, -190.83, 10793.90 ) LPos=( -295.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.96, -193.72, 10796.41 ) LPos=( -292.44, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3865.17, -193.73, 10801.43 ) LPos=( -286.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.31, -208.01, 10766.84 ) LPos=( -326.19, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3878.74, -208.04, 10776.90 ) LPos=( -314.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3880.13, -210.90, 10774.38 ) LPos=( -317.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3884.10, -221.82, 10767.18 ) LPos=( -325.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3881.19, -221.83, 10772.43 ) LPos=( -319.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.28, -221.85, 10777.68 ) LPos=( -313.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3875.37, -221.87, 10782.93 ) LPos=( -307.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3872.47, -221.88, 10788.18 ) LPos=( -301.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3869.56, -221.90, 10793.43 ) LPos=( -295.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3866.65, -221.91, 10798.67 ) LPos=( -289.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3887.01, -227.80, 10761.92 ) LPos=( -331.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3884.10, -227.82, 10767.17 ) LPos=( -325.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3881.19, -227.83, 10772.41 ) LPos=( -319.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3887.01, -233.80, 10761.90 ) LPos=( -331.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3878.28, -233.85, 10777.64 ) LPos=( -313.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3875.37, -233.87, 10782.89 ) LPos=( -307.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3872.47, -233.88, 10788.14 ) LPos=( -301.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3881.19, -239.83, 10772.38 ) LPos=( -319.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3875.37, -239.87, 10782.88 ) LPos=( -307.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3878.28, -245.85, 10777.61 ) LPos=( -313.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3881.19, -251.83, 10772.34 ) LPos=( -319.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3881.19, -257.83, 10772.33 ) LPos=( -319.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3875.37, -263.87, 10782.81 ) LPos=( -307.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3884.10, -277.82, 10767.02 ) LPos=( -325.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3884.10, -283.82, 10767.00 ) LPos=( -325.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3884.10, -289.82, 10766.98 ) LPos=( -325.75, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3875.37, -295.86, 10782.71 ) LPos=( -307.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3869.56, -295.90, 10793.21 ) LPos=( -295.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3872.46, -301.88, 10787.94 ) LPos=( -301.75, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3869.56, -301.90, 10793.19 ) LPos=( -295.75, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3866.65, -301.91, 10798.44 ) LPos=( -289.75, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3869.56, -313.90, 10793.16 ) LPos=( -295.75, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3884.09, -319.82, 10766.90 ) LPos=( -325.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3869.56, -333.90, 10793.10 ) LPos=( -295.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3887.00, -339.80, 10761.59 ) LPos=( -331.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3878.28, -357.85, 10777.28 ) LPos=( -313.75, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3869.56, -363.90, 10793.01 ) LPos=( -295.75, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.28, -389.85, 10777.19 ) LPos=( -313.75, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.18, -413.83, 10771.87 ) LPos=( -319.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.18, -525.83, 10771.54 ) LPos=( -319.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3866.64, -525.91, 10797.78 ) LPos=( -289.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3887.00, -531.80, 10761.03 ) LPos=( -331.75, -531.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3872.46, -537.88, 10787.25 ) LPos=( -301.75, -537.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3848.02, 611.99, 10834.80 ) LPos=( -251.25, 612.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3856.74, 606.03, 10819.04 ) LPos=( -269.25, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3850.93, 606.00, 10829.53 ) LPos=( -257.25, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3842.20, 587.96, 10845.22 ) LPos=( -239.25, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3845.11, 581.97, 10839.96 ) LPos=( -245.25, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3839.30, 581.94, 10850.46 ) LPos=( -233.25, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3845.11, 531.97, 10839.81 ) LPos=( -245.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3845.11, 437.97, 10839.54 ) LPos=( -245.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3850.92, 432.00, 10829.02 ) LPos=( -257.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3845.11, 431.97, 10839.52 ) LPos=( -245.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3845.11, 419.97, 10839.48 ) LPos=( -245.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.83, 364.02, 10823.57 ) LPos=( -263.25, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3859.64, 308.05, 10812.91 ) LPos=( -275.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3853.82, 276.02, 10823.32 ) LPos=( -263.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3850.92, 276.00, 10828.56 ) LPos=( -257.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3842.19, 257.96, 10844.26 ) LPos=( -239.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3845.10, 251.97, 10838.99 ) LPos=( -245.25, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3842.19, 245.96, 10844.22 ) LPos=( -239.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3840.59, 208.89, 10847.01 ) LPos=( -235.94, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3841.98, 208.89, 10844.49 ) LPos=( -238.81, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3844.77, 208.91, 10839.46 ) LPos=( -244.56, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3837.80, 211.75, 10852.05 ) LPos=( -230.19, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3840.59, 211.76, 10847.02 ) LPos=( -235.94, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3843.37, 211.78, 10841.99 ) LPos=( -241.69, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3837.80, 214.62, 10852.06 ) LPos=( -230.19, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3840.59, 214.64, 10847.03 ) LPos=( -235.94, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3841.98, 214.64, 10844.51 ) LPos=( -238.81, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3843.37, 214.65, 10842.00 ) LPos=( -241.69, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.77, 214.66, 10839.48 ) LPos=( -244.56, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3839.19, 217.50, 10849.55 ) LPos=( -233.06, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3841.98, 217.52, 10844.52 ) LPos=( -238.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3843.37, 217.53, 10842.01 ) LPos=( -241.69, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3847.55, 217.55, 10834.46 ) LPos=( -250.31, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3841.98, 220.39, 10844.53 ) LPos=( -238.81, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3843.37, 220.40, 10842.01 ) LPos=( -241.69, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3840.59, 223.26, 10847.05 ) LPos=( -235.94, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3843.37, 223.28, 10842.02 ) LPos=( -241.69, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3846.16, 223.29, 10836.99 ) LPos=( -247.44, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3847.55, 223.30, 10834.48 ) LPos=( -250.31, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3837.80, 226.12, 10852.09 ) LPos=( -230.19, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3844.77, 226.16, 10839.52 ) LPos=( -244.56, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3844.77, 229.03, 10839.52 ) LPos=( -244.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3851.37, 220.44, 10827.58 ) LPos=( -258.19, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3851.37, 217.57, 10827.57 ) LPos=( -258.19, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3854.16, 208.96, 10822.52 ) LPos=( -263.94, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3855.55, 214.72, 10820.02 ) LPos=( -266.81, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3858.34, 217.61, 10815.00 ) LPos=( -272.56, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3858.34, 211.86, 10814.98 ) LPos=( -272.56, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3859.73, 220.49, 10812.49 ) LPos=( -275.44, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3846.16, 201.04, 10836.93 ) LPos=( -247.44, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3844.77, 192.41, 10839.42 ) LPos=( -244.56, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.77, 195.28, 10839.42 ) LPos=( -244.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3841.98, 186.64, 10844.43 ) LPos=( -238.81, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3841.98, 201.02, 10844.47 ) LPos=( -238.81, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3839.19, 186.63, 10849.46 ) LPos=( -233.06, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3861.12, 201.12, 10809.92 ) LPos=( -278.31, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3859.73, 201.11, 10812.43 ) LPos=( -275.44, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3854.16, 201.08, 10822.49 ) LPos=( -263.94, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3861.12, 195.37, 10809.90 ) LPos=( -278.31, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.12, 186.75, 10809.88 ) LPos=( -278.31, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3859.73, 186.74, 10812.39 ) LPos=( -275.44, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3859.73, 180.99, 10812.38 ) LPos=( -275.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3856.94, 180.97, 10817.41 ) LPos=( -269.69, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3840.59, 164.39, 10846.88 ) LPos=( -235.94, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3855.55, 161.59, 10819.86 ) LPos=( -266.81, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3855.55, 158.72, 10819.85 ) LPos=( -266.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3856.94, 173.10, 10817.38 ) LPos=( -269.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3858.33, 173.11, 10814.87 ) LPos=( -272.56, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3861.12, 158.75, 10809.80 ) LPos=( -278.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3861.12, 155.87, 10809.79 ) LPos=( -278.31, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3861.12, 153.00, 10809.78 ) LPos=( -278.31, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3844.76, 130.66, 10839.24 ) LPos=( -244.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3844.76, 133.53, 10839.24 ) LPos=( -244.56, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3840.58, 142.14, 10846.81 ) LPos=( -235.94, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3839.19, 145.01, 10849.34 ) LPos=( -233.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3837.80, 142.12, 10851.84 ) LPos=( -230.19, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3861.12, 145.12, 10809.76 ) LPos=( -278.31, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3852.76, 145.08, 10824.84 ) LPos=( -261.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3852.76, 142.20, 10824.84 ) LPos=( -261.06, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3855.55, 136.47, 10819.79 ) LPos=( -266.81, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3858.33, 130.73, 10814.74 ) LPos=( -272.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3837.80, 99.75, 10851.72 ) LPos=( -230.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3837.80, 105.50, 10851.74 ) LPos=( -230.19, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3839.19, 114.13, 10849.25 ) LPos=( -233.06, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3859.73, 117.11, 10812.19 ) LPos=( -275.44, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3859.73, 111.36, 10812.17 ) LPos=( -275.44, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3847.55, 77.55, 10834.05 ) LPos=( -250.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3846.16, 71.79, 10836.55 ) LPos=( -247.44, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3846.16, 74.67, 10836.56 ) LPos=( -247.44, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3843.37, 89.03, 10841.63 ) LPos=( -241.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3841.98, 71.77, 10844.09 ) LPos=( -238.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3841.98, 80.39, 10844.12 ) LPos=( -238.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3841.98, 86.14, 10844.13 ) LPos=( -238.81, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3841.98, 89.02, 10844.14 ) LPos=( -238.81, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3839.19, 71.76, 10849.12 ) LPos=( -233.06, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3839.19, 80.38, 10849.15 ) LPos=( -233.06, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3837.80, 77.50, 10851.65 ) LPos=( -230.19, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3837.80, 83.25, 10851.67 ) LPos=( -230.19, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3858.33, 89.11, 10814.62 ) LPos=( -272.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3861.12, 83.37, 10809.57 ) LPos=( -278.31, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3854.15, 80.46, 10822.14 ) LPos=( -263.94, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3859.72, 77.61, 10812.07 ) LPos=( -275.44, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3855.55, 77.59, 10819.62 ) LPos=( -266.81, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3852.76, 77.58, 10824.65 ) LPos=( -261.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3846.16, 52.42, 10836.49 ) LPos=( -247.44, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3839.19, 58.13, 10849.08 ) LPos=( -233.06, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3856.94, 61.10, 10817.05 ) LPos=( -269.69, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3856.94, 43.85, 10817.00 ) LPos=( -269.69, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3859.72, 52.49, 10812.00 ) LPos=( -275.44, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3859.72, 43.86, 10811.97 ) LPos=( -275.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3861.12, 61.12, 10809.51 ) LPos=( -278.31, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3846.15, 24.42, 10836.41 ) LPos=( -247.44, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.76, 27.28, 10838.93 ) LPos=( -244.56, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3841.97, 18.65, 10843.94 ) LPos=( -238.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3841.97, 33.02, 10843.98 ) LPos=( -238.81, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3837.79, 12.87, 10851.46 ) LPos=( -230.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3855.54, 27.34, 10819.47 ) LPos=( -266.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3854.15, 24.46, 10821.98 ) LPos=( -263.94, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3852.76, 24.45, 10824.49 ) LPos=( -261.06, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3861.12, 21.62, 10809.39 ) LPos=( -278.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3855.54, 21.59, 10819.45 ) LPos=( -266.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3851.36, 21.57, 10827.00 ) LPos=( -258.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.12, 18.75, 10809.38 ) LPos=( -278.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3852.76, 18.70, 10824.47 ) LPos=( -261.06, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3861.12, 15.87, 10809.38 ) LPos=( -278.31, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, 15.86, 10811.89 ) LPos=( -275.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3854.15, 15.83, 10821.95 ) LPos=( -263.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3851.36, 15.82, 10826.98 ) LPos=( -258.19, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3846.15, -12.21, 10836.30 ) LPos=( -247.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3840.58, -9.36, 10846.37 ) LPos=( -235.94, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3841.97, -9.35, 10843.85 ) LPos=( -238.81, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3844.76, -3.59, 10838.84 ) LPos=( -244.56, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3844.76, -0.71, 10838.85 ) LPos=( -244.56, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3840.58, 5.01, 10846.41 ) LPos=( -235.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3847.55, 5.05, 10833.84 ) LPos=( -250.31, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3851.36, -0.68, 10826.93 ) LPos=( -258.19, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3851.36, -12.18, 10826.90 ) LPos=( -258.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3854.15, 5.08, 10821.92 ) LPos=( -263.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3854.15, 2.21, 10821.91 ) LPos=( -263.94, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3854.15, -6.42, 10821.88 ) LPos=( -263.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3854.15, -12.17, 10821.87 ) LPos=( -263.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3856.94, 5.10, 10816.89 ) LPos=( -269.69, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3856.94, -3.53, 10816.86 ) LPos=( -269.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3858.33, -12.14, 10814.32 ) LPos=( -272.56, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3859.72, 5.11, 10811.86 ) LPos=( -275.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3859.72, -9.26, 10811.82 ) LPos=( -275.44, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3859.72, -15.01, 10811.80 ) LPos=( -275.44, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3861.12, -6.38, 10809.31 ) LPos=( -278.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3861.12, -12.13, 10809.29 ) LPos=( -278.31, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3861.12, -15.00, 10809.29 ) LPos=( -278.31, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3841.97, -31.60, 10843.79 ) LPos=( -238.81, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3861.12, -22.88, 10809.26 ) LPos=( -278.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3859.72, -22.89, 10811.78 ) LPos=( -275.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3858.33, -22.89, 10814.29 ) LPos=( -272.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3859.72, -25.76, 10811.77 ) LPos=( -275.44, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3858.33, -25.77, 10814.28 ) LPos=( -272.56, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3854.15, -25.79, 10821.83 ) LPos=( -263.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3859.72, -28.64, 10811.76 ) LPos=( -275.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3858.33, -28.64, 10814.28 ) LPos=( -272.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3856.94, -28.65, 10816.79 ) LPos=( -269.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3854.15, -28.67, 10821.82 ) LPos=( -263.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3861.11, -31.50, 10809.24 ) LPos=( -278.31, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3851.36, -31.56, 10826.84 ) LPos=( -258.19, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3851.36, -34.43, 10826.83 ) LPos=( -258.19, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.11, -37.25, 10809.22 ) LPos=( -278.31, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3856.94, -37.28, 10816.76 ) LPos=( -269.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3852.76, -40.17, 10824.30 ) LPos=( -261.06, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3859.72, -43.01, 10811.72 ) LPos=( -275.44, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3856.93, -43.03, 10816.75 ) LPos=( -269.69, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3852.76, -43.05, 10824.29 ) LPos=( -261.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3851.36, -43.06, 10826.81 ) LPos=( -258.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3840.58, -71.11, 10846.19 ) LPos=( -235.94, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3843.36, -71.10, 10841.16 ) LPos=( -241.69, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3847.54, -71.08, 10833.61 ) LPos=( -250.31, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3844.76, -68.21, 10838.65 ) LPos=( -244.56, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3846.15, -68.21, 10836.14 ) LPos=( -247.44, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3846.15, -65.33, 10836.15 ) LPos=( -247.44, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3844.76, -62.46, 10838.67 ) LPos=( -244.56, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3847.55, -50.95, 10833.67 ) LPos=( -250.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3851.36, -53.80, 10826.78 ) LPos=( -258.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3851.36, -56.68, 10826.77 ) LPos=( -258.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3851.36, -62.43, 10826.75 ) LPos=( -258.19, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3852.75, -50.92, 10824.27 ) LPos=( -261.06, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3852.75, -56.67, 10824.25 ) LPos=( -261.06, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3852.75, -62.42, 10824.24 ) LPos=( -261.06, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3852.75, -71.05, 10824.21 ) LPos=( -261.06, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3855.54, -68.16, 10819.19 ) LPos=( -266.81, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3856.93, -68.15, 10816.67 ) LPos=( -269.69, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3858.33, -50.89, 10814.21 ) LPos=( -272.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3858.33, -59.52, 10814.18 ) LPos=( -272.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3847.54, -81.82, 10833.58 ) LPos=( -250.31, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3846.15, -96.21, 10836.05 ) LPos=( -247.44, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3846.15, -81.83, 10836.10 ) LPos=( -247.44, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3846.15, -78.96, 10836.11 ) LPos=( -247.44, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.76, -84.71, 10838.60 ) LPos=( -244.56, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3841.97, -90.48, 10843.62 ) LPos=( -238.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3855.54, -78.91, 10819.16 ) LPos=( -266.81, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3851.36, -78.93, 10826.70 ) LPos=( -258.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3854.15, -81.79, 10821.66 ) LPos=( -263.94, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3851.36, -81.80, 10826.69 ) LPos=( -258.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3851.36, -84.68, 10826.68 ) LPos=( -258.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3852.75, -87.55, 10824.16 ) LPos=( -261.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3858.33, -90.39, 10814.09 ) LPos=( -272.56, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3854.15, -90.42, 10821.64 ) LPos=( -263.94, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3859.72, -93.26, 10811.57 ) LPos=( -275.44, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3855.54, -99.03, 10819.10 ) LPos=( -266.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3852.75, -99.05, 10824.13 ) LPos=( -261.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3847.54, -127.07, 10833.45 ) LPos=( -250.31, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3843.36, -115.60, 10841.03 ) LPos=( -241.69, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3847.54, -115.57, 10833.48 ) LPos=( -250.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3839.18, -112.74, 10848.58 ) LPos=( -233.06, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3851.36, -127.05, 10826.56 ) LPos=( -258.19, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3856.93, -115.53, 10816.54 ) LPos=( -269.69, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3858.33, -121.27, 10814.00 ) LPos=( -272.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3858.33, -124.14, 10813.99 ) LPos=( -272.56, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3858.33, -127.02, 10813.99 ) LPos=( -272.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3861.11, -112.63, 10809.00 ) LPos=( -278.31, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3844.76, -146.46, 10838.42 ) LPos=( -244.56, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3844.76, -137.84, 10838.45 ) LPos=( -244.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3843.36, -137.85, 10840.96 ) LPos=( -241.69, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3841.97, -155.10, 10843.43 ) LPos=( -238.81, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3841.97, -152.23, 10843.43 ) LPos=( -238.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3840.58, -140.74, 10845.98 ) LPos=( -235.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3840.58, -137.86, 10845.99 ) LPos=( -235.94, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3837.79, -146.50, 10851.00 ) LPos=( -230.19, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3837.79, -140.75, 10851.01 ) LPos=( -230.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3852.75, -134.92, 10824.02 ) LPos=( -261.06, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3861.11, -140.63, 10808.92 ) LPos=( -278.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3859.72, -140.64, 10811.43 ) LPos=( -275.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3858.33, -140.64, 10813.95 ) LPos=( -272.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3855.54, -140.66, 10818.98 ) LPos=( -266.81, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3851.36, -140.68, 10826.52 ) LPos=( -258.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3859.72, -143.51, 10811.42 ) LPos=( -275.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3858.33, -143.52, 10813.94 ) LPos=( -272.56, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3851.36, -143.55, 10826.51 ) LPos=( -258.19, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3858.32, -146.39, 10813.93 ) LPos=( -272.56, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, -152.14, 10811.40 ) LPos=( -275.44, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3861.11, -155.00, 10808.87 ) LPos=( -278.31, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3859.72, -155.01, 10811.39 ) LPos=( -275.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3858.32, -155.02, 10813.90 ) LPos=( -272.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3856.93, -155.03, 10816.42 ) LPos=( -269.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3844.76, -171.59, 10838.35 ) LPos=( -244.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3843.36, -168.72, 10840.87 ) LPos=( -241.69, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3847.54, -165.82, 10833.34 ) LPos=( -250.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3851.36, -171.55, 10826.43 ) LPos=( -258.19, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3851.36, -174.43, 10826.42 ) LPos=( -258.19, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3852.75, -162.92, 10823.94 ) LPos=( -261.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3854.14, -177.29, 10821.38 ) LPos=( -263.94, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3855.54, -174.41, 10818.88 ) LPos=( -266.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3856.93, -180.15, 10816.35 ) LPos=( -269.69, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3858.32, -162.89, 10813.88 ) LPos=( -272.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3858.32, -171.52, 10813.86 ) LPos=( -272.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3858.32, -174.39, 10813.85 ) LPos=( -272.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3858.32, -183.02, 10813.82 ) LPos=( -272.56, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3859.72, -162.89, 10811.37 ) LPos=( -275.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, -165.76, 10811.36 ) LPos=( -275.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3859.72, -168.64, 10811.35 ) LPos=( -275.44, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3859.72, -174.39, 10811.33 ) LPos=( -275.44, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3859.72, -177.26, 10811.32 ) LPos=( -275.44, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3841.97, -205.35, 10843.28 ) LPos=( -238.81, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3839.18, -199.62, 10848.33 ) LPos=( -233.06, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3859.72, -190.89, 10811.28 ) LPos=( -275.44, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3855.54, -190.91, 10818.83 ) LPos=( -266.81, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3858.32, -193.77, 10813.79 ) LPos=( -272.56, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3856.93, -193.78, 10816.31 ) LPos=( -269.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3858.32, -196.64, 10813.78 ) LPos=( -272.56, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3856.93, -196.65, 10816.30 ) LPos=( -269.69, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3855.54, -196.66, 10818.81 ) LPos=( -266.81, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3854.14, -196.66, 10821.33 ) LPos=( -263.94, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3856.93, -199.52, 10816.29 ) LPos=( -269.69, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3861.11, -202.38, 10808.74 ) LPos=( -278.31, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3856.93, -202.40, 10816.28 ) LPos=( -269.69, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.11, -205.25, 10808.73 ) LPos=( -278.31, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3854.14, -205.29, 10821.30 ) LPos=( -263.94, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3861.11, -208.13, 10808.72 ) LPos=( -278.31, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, -208.14, 10811.23 ) LPos=( -275.44, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3861.11, -211.00, 10808.71 ) LPos=( -278.31, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3858.32, -211.02, 10813.74 ) LPos=( -272.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3855.54, -211.03, 10818.77 ) LPos=( -266.81, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3856.72, -221.96, 10816.61 ) LPos=( -269.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3859.62, -227.95, 10811.34 ) LPos=( -275.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3856.72, -227.96, 10816.59 ) LPos=( -269.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3853.81, -227.98, 10821.84 ) LPos=( -263.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3850.90, -227.99, 10827.08 ) LPos=( -257.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3842.18, -228.04, 10842.83 ) LPos=( -239.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3859.62, -233.95, 10811.32 ) LPos=( -275.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3856.72, -233.96, 10816.57 ) LPos=( -269.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3850.90, -233.99, 10827.07 ) LPos=( -257.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3839.27, -234.06, 10848.06 ) LPos=( -233.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3859.62, -239.95, 10811.30 ) LPos=( -275.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3856.72, -239.96, 10816.55 ) LPos=( -269.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3853.81, -239.98, 10821.80 ) LPos=( -263.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3859.62, -245.95, 10811.29 ) LPos=( -275.25, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3859.62, -251.95, 10811.27 ) LPos=( -275.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.81, -251.98, 10821.77 ) LPos=( -263.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3842.18, -252.04, 10842.76 ) LPos=( -239.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3845.09, -264.02, 10837.48 ) LPos=( -245.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3839.27, -278.06, 10847.93 ) LPos=( -233.25, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3859.62, -295.95, 10811.14 ) LPos=( -275.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3842.18, -296.04, 10842.63 ) LPos=( -239.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.81, -307.98, 10821.60 ) LPos=( -263.25, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3850.90, -307.99, 10826.85 ) LPos=( -257.25, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3853.81, -319.98, 10821.57 ) LPos=( -263.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3845.08, -320.02, 10837.31 ) LPos=( -245.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3842.18, -320.04, 10842.56 ) LPos=( -239.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3853.81, -333.98, 10821.52 ) LPos=( -263.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3839.27, -340.05, 10847.75 ) LPos=( -233.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3847.99, -346.01, 10831.99 ) LPos=( -251.25, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3845.08, -352.02, 10837.22 ) LPos=( -245.25, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3845.08, -358.02, 10837.20 ) LPos=( -245.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3859.62, -363.95, 10810.94 ) LPos=( -275.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3850.90, -363.99, 10826.69 ) LPos=( -257.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3842.17, -364.04, 10842.43 ) LPos=( -239.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3839.27, -364.05, 10847.68 ) LPos=( -233.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3856.71, -369.96, 10816.17 ) LPos=( -269.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3842.17, -390.04, 10842.35 ) LPos=( -239.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3839.27, -390.05, 10847.60 ) LPos=( -233.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3853.80, -395.98, 10821.34 ) LPos=( -263.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3847.99, -402.01, 10831.82 ) LPos=( -251.25, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3845.08, -432.02, 10836.98 ) LPos=( -245.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3847.99, -502.01, 10831.53 ) LPos=( -251.25, -501.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3839.26, -520.05, 10847.22 ) LPos=( -233.25, -519.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3839.26, -538.05, 10847.17 ) LPos=( -233.25, -537.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.80, -587.98, 10820.78 ) LPos=( -263.25, -587.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3859.61, -625.95, 10810.17 ) LPos=( -275.25, -625.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3850.89, -655.99, 10825.83 ) LPos=( -257.25, -655.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3820.64, 661.84, 10884.37 ) LPos=( -194.75, 662.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3826.45, 587.87, 10873.65 ) LPos=( -206.75, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3823.55, 581.86, 10878.88 ) LPos=( -200.75, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3829.36, 575.89, 10868.37 ) LPos=( -212.75, 576.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3829.36, 549.89, 10868.29 ) LPos=( -212.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3820.64, 549.84, 10884.04 ) LPos=( -194.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3817.73, 537.83, 10889.25 ) LPos=( -188.75, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3826.45, 531.87, 10873.49 ) LPos=( -206.75, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3817.73, 525.83, 10889.22 ) LPos=( -188.75, 526.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3814.82, 525.81, 10894.46 ) LPos=( -182.75, 526.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3832.27, 519.90, 10862.96 ) LPos=( -218.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3829.36, 519.89, 10868.21 ) LPos=( -212.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3826.45, 519.87, 10873.45 ) LPos=( -206.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3823.54, 519.86, 10878.70 ) LPos=( -200.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3814.82, 519.81, 10894.45 ) LPos=( -182.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3811.91, 519.80, 10899.70 ) LPos=( -176.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3826.45, 505.87, 10873.41 ) LPos=( -206.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.64, 505.84, 10883.91 ) LPos=( -194.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3817.73, 505.83, 10889.16 ) LPos=( -188.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3823.54, 499.86, 10878.64 ) LPos=( -200.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3814.82, 499.81, 10894.39 ) LPos=( -182.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3823.54, 493.86, 10878.63 ) LPos=( -200.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3820.64, 493.84, 10883.87 ) LPos=( -194.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3817.73, 493.83, 10889.12 ) LPos=( -188.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3814.82, 493.81, 10894.37 ) LPos=( -182.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3811.91, 493.80, 10899.62 ) LPos=( -176.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3817.73, 487.83, 10889.10 ) LPos=( -188.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3811.91, 487.80, 10899.60 ) LPos=( -176.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.82, 481.81, 10894.34 ) LPos=( -182.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3811.91, 481.80, 10899.58 ) LPos=( -176.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3817.73, 437.83, 10888.96 ) LPos=( -188.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3829.36, 431.89, 10867.95 ) LPos=( -212.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3826.45, 425.87, 10873.18 ) LPos=( -206.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3820.63, 407.84, 10883.62 ) LPos=( -194.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3817.72, 387.83, 10888.81 ) LPos=( -188.75, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.82, 369.81, 10894.01 ) LPos=( -182.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.54, 363.86, 10878.24 ) LPos=( -200.75, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3823.54, 357.86, 10878.23 ) LPos=( -200.75, 358.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3820.63, 351.84, 10883.46 ) LPos=( -194.75, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3832.26, 337.91, 10862.42 ) LPos=( -218.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3817.72, 301.83, 10888.56 ) LPos=( -188.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.81, 281.81, 10893.75 ) LPos=( -182.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3832.26, 257.91, 10862.19 ) LPos=( -218.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3829.35, 257.89, 10867.44 ) LPos=( -212.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.81, 257.81, 10893.68 ) LPos=( -182.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.54, 251.86, 10877.92 ) LPos=( -200.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3820.63, 251.84, 10883.16 ) LPos=( -194.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3832.26, 245.91, 10862.15 ) LPos=( -218.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3829.35, 245.89, 10867.40 ) LPos=( -212.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3832.26, 239.91, 10862.13 ) LPos=( -218.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3826.44, 239.87, 10872.63 ) LPos=( -206.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3810.42, 214.48, 10901.48 ) LPos=( -173.69, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3817.39, 214.51, 10888.90 ) LPos=( -188.06, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3813.21, 220.24, 10896.47 ) LPos=( -179.44, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3814.60, 220.25, 10893.95 ) LPos=( -182.31, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3815.99, 223.13, 10891.44 ) LPos=( -185.19, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3820.17, 226.03, 10883.91 ) LPos=( -193.81, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3825.38, 228.93, 10874.51 ) LPos=( -204.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3825.38, 223.18, 10874.50 ) LPos=( -204.56, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3825.38, 220.31, 10874.49 ) LPos=( -204.56, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3826.78, 226.06, 10871.99 ) LPos=( -207.44, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3826.78, 208.81, 10871.94 ) LPos=( -207.44, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3829.56, 223.20, 10866.95 ) LPos=( -213.19, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3830.96, 226.09, 10864.45 ) LPos=( -216.06, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3830.96, 214.59, 10864.41 ) LPos=( -216.06, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3832.35, 220.34, 10861.91 ) LPos=( -218.94, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3833.74, 223.23, 10859.41 ) LPos=( -221.81, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3833.74, 220.35, 10859.40 ) LPos=( -221.81, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3833.74, 214.60, 10859.38 ) LPos=( -221.81, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3817.39, 180.76, 10888.80 ) LPos=( -188.06, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3817.39, 189.39, 10888.83 ) LPos=( -188.06, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3814.60, 189.38, 10893.86 ) LPos=( -182.31, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3813.21, 180.74, 10896.35 ) LPos=( -179.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3813.21, 195.12, 10896.39 ) LPos=( -179.44, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3813.21, 197.99, 10896.40 ) LPos=( -179.44, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3813.21, 200.87, 10896.41 ) LPos=( -179.44, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3810.42, 200.85, 10901.44 ) LPos=( -173.69, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3830.95, 200.96, 10864.37 ) LPos=( -216.06, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.74, 183.73, 10859.29 ) LPos=( -221.81, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3832.35, 183.72, 10861.81 ) LPos=( -218.94, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3828.17, 183.70, 10869.35 ) LPos=( -210.31, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3826.77, 183.69, 10871.87 ) LPos=( -207.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3820.17, 155.65, 10883.70 ) LPos=( -193.81, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3813.20, 158.49, 10896.28 ) LPos=( -179.44, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3814.60, 158.50, 10893.77 ) LPos=( -182.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3811.81, 161.36, 10898.81 ) LPos=( -176.56, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3814.60, 161.38, 10893.78 ) LPos=( -182.31, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3815.99, 161.38, 10891.26 ) LPos=( -185.19, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3811.81, 167.11, 10898.82 ) LPos=( -176.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3813.21, 167.12, 10896.31 ) LPos=( -179.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3817.38, 167.14, 10888.76 ) LPos=( -188.06, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3815.99, 170.01, 10891.29 ) LPos=( -185.19, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3810.42, 172.85, 10901.36 ) LPos=( -173.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3823.99, 161.42, 10876.83 ) LPos=( -201.69, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3825.38, 167.18, 10874.33 ) LPos=( -204.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3828.17, 164.32, 10869.29 ) LPos=( -210.31, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3830.95, 170.09, 10864.28 ) LPos=( -216.06, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3833.74, 167.23, 10859.24 ) LPos=( -221.81, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3833.74, 158.60, 10859.22 ) LPos=( -221.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3820.17, 133.40, 10883.64 ) LPos=( -193.81, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.17, 136.28, 10883.64 ) LPos=( -193.81, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3817.38, 142.02, 10888.69 ) LPos=( -188.06, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3815.99, 124.76, 10891.16 ) LPos=( -185.19, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3814.60, 127.63, 10893.68 ) LPos=( -182.31, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3814.60, 130.50, 10893.69 ) LPos=( -182.31, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.60, 142.00, 10893.72 ) LPos=( -182.31, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3813.20, 133.37, 10896.21 ) LPos=( -179.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3813.20, 141.99, 10896.24 ) LPos=( -179.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3811.81, 141.99, 10898.75 ) LPos=( -176.56, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3830.95, 130.59, 10864.16 ) LPos=( -216.06, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.74, 127.73, 10859.13 ) LPos=( -221.81, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3830.95, 124.84, 10864.15 ) LPos=( -216.06, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3828.17, 124.82, 10869.18 ) LPos=( -210.31, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3815.99, 96.76, 10891.07 ) LPos=( -185.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3820.17, 99.66, 10883.54 ) LPos=( -193.81, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3814.60, 102.50, 10893.60 ) LPos=( -182.31, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3810.42, 108.23, 10901.17 ) LPos=( -173.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3815.99, 108.26, 10891.11 ) LPos=( -185.19, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3810.42, 111.10, 10901.17 ) LPos=( -173.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3815.99, 114.01, 10891.12 ) LPos=( -185.19, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.99, 96.80, 10876.64 ) LPos=( -201.69, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3829.56, 111.20, 10866.62 ) LPos=( -213.19, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3832.35, 96.84, 10861.55 ) LPos=( -218.94, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3833.74, 114.10, 10859.09 ) LPos=( -221.81, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3833.74, 108.35, 10859.07 ) LPos=( -221.81, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3833.74, 105.48, 10859.06 ) LPos=( -221.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3818.78, 77.40, 10885.99 ) LPos=( -190.94, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3815.99, 68.76, 10890.99 ) LPos=( -185.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3811.81, 83.11, 10898.58 ) LPos=( -176.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3811.81, 88.86, 10898.59 ) LPos=( -176.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3825.38, 83.18, 10874.09 ) LPos=( -204.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3825.38, 80.31, 10874.08 ) LPos=( -204.56, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3828.16, 77.45, 10869.04 ) LPos=( -210.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3823.99, 77.43, 10876.58 ) LPos=( -201.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3830.95, 74.59, 10864.00 ) LPos=( -216.06, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.74, 71.73, 10858.96 ) LPos=( -221.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3826.77, 68.81, 10871.53 ) LPos=( -207.44, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3817.38, 40.77, 10888.39 ) LPos=( -188.06, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3814.59, 46.50, 10893.44 ) LPos=( -182.31, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3811.81, 60.86, 10898.51 ) LPos=( -176.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3823.98, 43.68, 10876.48 ) LPos=( -201.69, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.98, 40.80, 10876.48 ) LPos=( -201.69, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3825.38, 55.18, 10874.00 ) LPos=( -204.56, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3825.38, 46.56, 10873.98 ) LPos=( -204.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3825.38, 40.81, 10873.96 ) LPos=( -204.56, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3828.16, 49.45, 10868.96 ) LPos=( -210.31, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3829.56, 55.20, 10866.46 ) LPos=( -213.19, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3832.34, 40.84, 10861.39 ) LPos=( -218.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3833.74, 49.48, 10858.90 ) LPos=( -221.81, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3833.74, 46.60, 10858.89 ) LPos=( -221.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3813.20, 12.74, 10895.86 ) LPos=( -179.44, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3810.41, 27.10, 10900.93 ) LPos=( -173.69, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3832.34, 30.09, 10861.36 ) LPos=( -218.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.38, 30.06, 10873.93 ) LPos=( -204.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3825.38, 18.56, 10873.90 ) LPos=( -204.56, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3810.41, -3.77, 10900.84 ) LPos=( -173.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3817.38, -0.86, 10888.27 ) LPos=( -188.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3813.20, 4.87, 10895.83 ) LPos=( -179.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3823.98, -9.45, 10876.33 ) LPos=( -201.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3825.38, 4.93, 10873.86 ) LPos=( -204.56, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3825.38, 2.06, 10873.85 ) LPos=( -204.56, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3825.38, -9.44, 10873.81 ) LPos=( -204.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.38, -12.32, 10873.81 ) LPos=( -204.56, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3825.38, -15.19, 10873.80 ) LPos=( -204.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3826.77, -3.68, 10871.32 ) LPos=( -207.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3826.77, -6.56, 10871.31 ) LPos=( -207.44, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3826.77, -12.31, 10871.29 ) LPos=( -207.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3829.56, -12.30, 10866.26 ) LPos=( -213.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3829.56, -15.17, 10866.25 ) LPos=( -213.19, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3830.95, -9.41, 10863.75 ) LPos=( -216.06, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3830.95, -15.16, 10863.74 ) LPos=( -216.06, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3832.34, -12.28, 10861.23 ) LPos=( -218.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3832.34, -15.16, 10861.22 ) LPos=( -218.94, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3818.77, -31.73, 10885.67 ) LPos=( -190.94, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3818.77, -25.98, 10885.68 ) LPos=( -190.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3828.16, -23.05, 10868.74 ) LPos=( -210.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.98, -23.07, 10876.29 ) LPos=( -201.69, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3832.34, -28.78, 10861.18 ) LPos=( -218.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3832.34, -31.66, 10861.17 ) LPos=( -218.94, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3833.73, -34.52, 10858.65 ) LPos=( -221.81, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3825.37, -59.69, 10873.67 ) LPos=( -204.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3826.77, -65.43, 10871.13 ) LPos=( -207.44, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3828.16, -71.18, 10868.60 ) LPos=( -210.31, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3833.73, -68.27, 10858.55 ) LPos=( -221.81, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3820.16, -99.22, 10882.95 ) LPos=( -193.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3817.38, -81.98, 10888.03 ) LPos=( -188.06, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3830.95, -79.04, 10863.55 ) LPos=( -216.06, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.98, -79.07, 10876.12 ) LPos=( -201.69, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3829.55, -81.92, 10866.06 ) LPos=( -213.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.37, -81.94, 10873.60 ) LPos=( -204.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3833.73, -84.77, 10858.50 ) LPos=( -221.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3828.16, -84.80, 10868.56 ) LPos=( -210.31, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3823.98, -87.70, 10876.10 ) LPos=( -201.69, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3828.16, -90.55, 10868.55 ) LPos=( -210.31, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3823.98, -90.57, 10876.09 ) LPos=( -201.69, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.73, -96.27, 10858.47 ) LPos=( -221.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3830.95, -99.16, 10863.49 ) LPos=( -216.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3818.77, -121.48, 10885.40 ) LPos=( -190.94, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3814.59, -118.62, 10892.96 ) LPos=( -182.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3817.38, -118.61, 10887.93 ) LPos=( -188.06, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3811.80, -112.89, 10898.00 ) LPos=( -176.56, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3823.98, -109.95, 10876.03 ) LPos=( -201.69, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3823.98, -112.82, 10876.02 ) LPos=( -201.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3825.37, -121.44, 10873.48 ) LPos=( -204.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.37, -124.32, 10873.48 ) LPos=( -204.56, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3826.77, -107.06, 10871.01 ) LPos=( -207.44, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3826.77, -112.81, 10871.00 ) LPos=( -207.44, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3826.77, -124.31, 10870.96 ) LPos=( -207.44, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3826.77, -127.18, 10870.95 ) LPos=( -207.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3829.55, -109.92, 10865.97 ) LPos=( -213.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3829.55, -115.67, 10865.96 ) LPos=( -213.19, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3829.55, -124.29, 10865.93 ) LPos=( -213.19, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3830.95, -121.41, 10863.43 ) LPos=( -216.06, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3830.95, -124.29, 10863.42 ) LPos=( -216.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3820.16, -135.09, 10882.85 ) LPos=( -193.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3818.77, -140.85, 10885.35 ) LPos=( -190.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3815.98, -149.49, 10890.35 ) LPos=( -185.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3814.59, -143.75, 10892.88 ) LPos=( -182.31, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3811.80, -152.39, 10897.89 ) LPos=( -176.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3811.80, -135.14, 10897.94 ) LPos=( -176.56, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3828.16, -137.93, 10868.41 ) LPos=( -210.31, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3826.77, -137.93, 10870.92 ) LPos=( -207.44, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3830.94, -140.79, 10863.37 ) LPos=( -216.06, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3828.16, -140.80, 10868.40 ) LPos=( -210.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3826.76, -140.81, 10870.91 ) LPos=( -207.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3833.73, -143.65, 10858.33 ) LPos=( -221.81, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3828.16, -146.55, 10868.38 ) LPos=( -210.31, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3826.76, -146.56, 10870.90 ) LPos=( -207.44, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3830.94, -149.41, 10863.34 ) LPos=( -216.06, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3825.37, -152.32, 10873.39 ) LPos=( -204.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3823.98, -152.32, 10875.91 ) LPos=( -201.69, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3829.55, -155.17, 10865.84 ) LPos=( -213.19, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3826.76, -155.18, 10870.87 ) LPos=( -207.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3811.80, -183.26, 10897.80 ) LPos=( -176.56, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3813.19, -183.26, 10895.28 ) LPos=( -179.44, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3810.41, -180.40, 10900.32 ) LPos=( -173.69, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3811.80, -180.39, 10897.80 ) LPos=( -176.56, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3813.19, -180.38, 10895.29 ) LPos=( -179.44, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3818.77, -180.35, 10885.23 ) LPos=( -190.94, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3811.80, -171.76, 10897.83 ) LPos=( -176.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3810.41, -168.90, 10900.35 ) LPos=( -173.69, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3811.80, -168.89, 10897.84 ) LPos=( -176.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3813.20, -168.88, 10895.32 ) LPos=( -179.44, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3820.16, -168.84, 10882.75 ) LPos=( -193.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3810.41, -166.02, 10900.36 ) LPos=( -173.69, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3813.20, -166.01, 10895.33 ) LPos=( -179.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3814.59, -166.00, 10892.82 ) LPos=( -182.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3811.80, -163.14, 10897.85 ) LPos=( -176.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3813.20, -163.13, 10895.34 ) LPos=( -179.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3818.77, -163.10, 10885.28 ) LPos=( -190.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3814.59, -191.12, 10892.74 ) LPos=( -182.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3813.19, -194.01, 10895.25 ) LPos=( -179.44, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3813.19, -191.13, 10895.26 ) LPos=( -179.44, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3810.41, -202.65, 10900.25 ) LPos=( -173.69, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3830.94, -199.66, 10863.20 ) LPos=( -216.06, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3825.37, -211.19, 10873.22 ) LPos=( -204.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.61, -222.15, 10881.77 ) LPos=( -194.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.80, -222.18, 10892.27 ) LPos=( -182.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3811.89, -222.20, 10897.52 ) LPos=( -176.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3826.43, -228.12, 10871.26 ) LPos=( -206.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3823.52, -228.14, 10876.51 ) LPos=( -200.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3814.80, -228.18, 10892.25 ) LPos=( -182.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3829.34, -234.11, 10865.99 ) LPos=( -212.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3811.89, -234.20, 10897.48 ) LPos=( -176.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3817.71, -240.17, 10886.97 ) LPos=( -188.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.80, -246.18, 10892.20 ) LPos=( -182.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.52, -252.14, 10876.44 ) LPos=( -200.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3814.80, -252.18, 10892.18 ) LPos=( -182.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3832.24, -284.09, 10860.60 ) LPos=( -218.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3811.89, -284.20, 10897.34 ) LPos=( -176.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3811.89, -308.20, 10897.27 ) LPos=( -176.75, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3820.61, -314.15, 10881.50 ) LPos=( -194.75, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.80, -334.18, 10891.94 ) LPos=( -182.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3811.89, -340.20, 10897.17 ) LPos=( -176.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3811.89, -352.20, 10897.14 ) LPos=( -176.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.52, -364.14, 10876.11 ) LPos=( -200.75, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3832.24, -370.09, 10860.34 ) LPos=( -218.75, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3826.42, -376.12, 10870.82 ) LPos=( -206.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3823.52, -376.14, 10876.07 ) LPos=( -200.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3814.79, -376.18, 10891.82 ) LPos=( -182.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.79, -390.18, 10891.78 ) LPos=( -182.75, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3826.42, -396.12, 10870.77 ) LPos=( -206.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3820.61, -396.15, 10881.26 ) LPos=( -194.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3811.89, -396.20, 10897.01 ) LPos=( -176.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3829.33, -402.11, 10865.50 ) LPos=( -212.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3826.42, -402.12, 10870.75 ) LPos=( -206.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3823.52, -402.14, 10876.00 ) LPos=( -200.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3823.52, -408.14, 10875.98 ) LPos=( -200.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3817.70, -414.17, 10886.46 ) LPos=( -188.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3811.89, -414.20, 10896.95 ) LPos=( -176.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3814.79, -420.18, 10891.69 ) LPos=( -182.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3811.89, -420.20, 10896.94 ) LPos=( -176.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:257,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.60, -558.15, 10880.79 ) LPos=( -194.75, -557.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:257,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3829.32, -650.11, 10864.77 ) LPos=( -212.75, -649.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3787.44, 555.67, 10943.97 ) LPos=( -126.25, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3787.44, 549.67, 10943.96 ) LPos=( -126.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3784.53, 549.65, 10949.21 ) LPos=( -120.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3787.44, 543.67, 10943.94 ) LPos=( -126.25, 544.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3787.44, 537.67, 10943.92 ) LPos=( -126.25, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 537.65, 10949.17 ) LPos=( -120.25, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3787.44, 531.67, 10943.90 ) LPos=( -126.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3784.53, 531.65, 10949.15 ) LPos=( -120.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3804.89, 499.76, 10912.32 ) LPos=( -162.25, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3801.98, 499.74, 10917.57 ) LPos=( -156.25, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3801.98, 493.74, 10917.55 ) LPos=( -156.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3799.07, 487.73, 10922.78 ) LPos=( -150.25, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3793.25, 481.70, 10933.26 ) LPos=( -138.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3787.44, 481.67, 10943.76 ) LPos=( -126.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 481.65, 10949.01 ) LPos=( -120.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3796.16, 443.71, 10927.90 ) LPos=( -144.25, 444.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3801.98, 437.75, 10917.39 ) LPos=( -156.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3790.35, 431.68, 10938.36 ) LPos=( -132.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3801.98, 425.75, 10917.35 ) LPos=( -156.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 425.65, 10948.84 ) LPos=( -120.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3799.07, 419.73, 10922.58 ) LPos=( -150.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3796.16, 419.71, 10927.83 ) LPos=( -144.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3799.07, 407.73, 10922.55 ) LPos=( -150.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3796.16, 407.71, 10927.80 ) LPos=( -144.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3793.25, 407.70, 10933.04 ) LPos=( -138.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3790.34, 393.68, 10938.25 ) LPos=( -132.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3787.44, 393.67, 10943.50 ) LPos=( -126.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3790.34, 387.68, 10938.23 ) LPos=( -132.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3787.44, 387.67, 10943.48 ) LPos=( -126.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3787.44, 381.67, 10943.46 ) LPos=( -126.25, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3784.53, 375.65, 10948.69 ) LPos=( -120.25, 376.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3799.07, 369.73, 10922.44 ) LPos=( -150.25, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3796.16, 357.71, 10927.65 ) LPos=( -144.25, 358.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.44, 351.67, 10943.38 ) LPos=( -126.25, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3787.44, 337.67, 10943.33 ) LPos=( -126.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3790.34, 325.68, 10938.05 ) LPos=( -132.25, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3804.88, 313.76, 10911.77 ) LPos=( -162.25, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 313.65, 10948.51 ) LPos=( -120.25, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3801.97, 307.75, 10917.01 ) LPos=( -156.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3793.25, 301.70, 10932.73 ) LPos=( -138.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3790.34, 301.68, 10937.98 ) LPos=( -132.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3787.43, 301.67, 10943.23 ) LPos=( -126.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3784.53, 275.65, 10948.40 ) LPos=( -120.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3804.88, 269.76, 10911.65 ) LPos=( -162.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3796.16, 257.72, 10927.35 ) LPos=( -144.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3799.06, 245.73, 10922.07 ) LPos=( -150.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3787.43, 245.67, 10943.06 ) LPos=( -126.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3790.34, 239.68, 10937.80 ) LPos=( -132.25, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3792.79, 211.51, 10933.29 ) LPos=( -137.31, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3792.79, 223.01, 10933.32 ) LPos=( -137.31, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3785.83, 228.72, 10945.91 ) LPos=( -122.94, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3791.40, 192.13, 10935.75 ) LPos=( -134.44, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3790.01, 195.00, 10938.27 ) LPos=( -131.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3784.43, 186.34, 10948.30 ) LPos=( -120.06, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3799.39, 197.92, 10921.33 ) LPos=( -150.94, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3796.61, 195.03, 10926.35 ) LPos=( -145.19, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3798.00, 192.16, 10923.83 ) LPos=( -148.06, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3806.36, 189.33, 10908.73 ) LPos=( -165.31, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3803.57, 189.32, 10913.76 ) LPos=( -159.56, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3799.39, 186.42, 10921.30 ) LPos=( -150.94, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3783.04, 152.58, 10950.72 ) LPos=( -117.19, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3787.22, 155.48, 10943.18 ) LPos=( -125.81, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3799.39, 158.42, 10921.21 ) LPos=( -150.94, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3802.18, 161.31, 10916.19 ) LPos=( -156.69, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3804.97, 167.07, 10911.18 ) LPos=( -162.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3806.36, 169.96, 10908.67 ) LPos=( -165.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3784.43, 127.47, 10948.13 ) LPos=( -120.06, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3806.36, 130.46, 10908.56 ) LPos=( -165.31, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3804.97, 124.70, 10911.06 ) LPos=( -162.44, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3798.00, 124.66, 10923.63 ) LPos=( -148.06, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3785.82, 96.60, 10945.52 ) LPos=( -122.94, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3791.40, 102.38, 10935.48 ) LPos=( -134.44, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3798.00, 116.79, 10923.61 ) LPos=( -148.06, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3798.00, 111.04, 10923.59 ) LPos=( -148.06, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3802.18, 105.31, 10916.03 ) LPos=( -156.69, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3804.97, 116.82, 10911.03 ) LPos=( -162.44, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3806.36, 111.08, 10908.50 ) LPos=( -165.31, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3788.61, 85.86, 10940.46 ) LPos=( -128.69, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3804.96, 88.82, 10910.95 ) LPos=( -162.44, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3799.39, 88.80, 10921.01 ) LPos=( -150.94, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3803.57, 85.94, 10913.46 ) LPos=( -159.56, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3800.78, 77.30, 10918.46 ) LPos=( -153.81, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3802.18, 74.44, 10915.94 ) LPos=( -156.69, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3802.18, 68.69, 10915.92 ) LPos=( -156.69, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3791.39, 43.50, 10935.31 ) LPos=( -134.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3798.00, 52.16, 10923.42 ) LPos=( -148.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3799.39, 57.92, 10920.92 ) LPos=( -150.94, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3799.39, 52.17, 10920.90 ) LPos=( -150.94, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3800.78, 46.43, 10918.37 ) LPos=( -153.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3806.36, 55.08, 10908.34 ) LPos=( -165.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3783.03, 24.08, 10950.34 ) LPos=( -117.19, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3783.03, 26.96, 10950.35 ) LPos=( -117.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3803.57, 32.82, 10913.30 ) LPos=( -159.56, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3802.18, 27.06, 10915.80 ) LPos=( -156.69, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3798.00, 27.04, 10923.34 ) LPos=( -148.06, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3800.78, 24.18, 10918.30 ) LPos=( -153.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3796.60, 24.16, 10925.85 ) LPos=( -145.19, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3784.43, -9.66, 10947.73 ) LPos=( -120.06, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3785.82, -3.90, 10945.23 ) LPos=( -122.94, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3787.21, -1.02, 10942.72 ) LPos=( -125.81, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3791.39, 4.75, 10935.20 ) LPos=( -134.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3796.60, 1.91, 10925.78 ) LPos=( -145.19, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3798.00, 1.91, 10923.27 ) LPos=( -148.06, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3800.78, -9.57, 10918.21 ) LPos=( -153.81, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3803.57, -6.68, 10913.18 ) LPos=( -159.56, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3806.35, -12.42, 10908.14 ) LPos=( -165.31, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3790.00, -29.00, 10937.61 ) LPos=( -131.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3788.61, -34.76, 10940.11 ) LPos=( -128.69, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3787.21, -43.39, 10942.60 ) LPos=( -125.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3787.21, -29.02, 10942.64 ) LPos=( -125.81, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3785.82, -29.03, 10945.16 ) LPos=( -122.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3796.60, -26.09, 10925.70 ) LPos=( -145.19, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3806.35, -34.67, 10908.07 ) LPos=( -165.31, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3802.17, -37.56, 10915.61 ) LPos=( -156.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3802.17, -40.44, 10915.60 ) LPos=( -156.69, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3785.82, -71.40, 10945.03 ) LPos=( -122.94, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3788.60, -68.51, 10940.01 ) LPos=( -128.69, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3787.21, -62.77, 10942.54 ) LPos=( -125.81, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3791.39, -62.75, 10935.00 ) LPos=( -134.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3788.60, -57.01, 10940.04 ) LPos=( -128.69, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3790.00, -57.00, 10937.53 ) LPos=( -131.56, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3785.82, -51.28, 10945.09 ) LPos=( -122.94, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3803.57, -65.56, 10913.01 ) LPos=( -159.56, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3792.78, -96.49, 10932.38 ) LPos=( -137.31, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3792.78, -79.24, 10932.43 ) LPos=( -137.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3791.39, -93.62, 10934.91 ) LPos=( -134.44, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3791.39, -90.75, 10934.92 ) LPos=( -134.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3790.00, -87.88, 10937.44 ) LPos=( -131.56, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3788.60, -87.89, 10939.95 ) LPos=( -128.69, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3788.60, -79.26, 10939.98 ) LPos=( -128.69, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3806.35, -79.17, 10907.94 ) LPos=( -165.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3797.99, -82.09, 10923.02 ) LPos=( -148.06, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3797.99, -84.96, 10923.01 ) LPos=( -148.06, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3799.39, -87.83, 10920.49 ) LPos=( -150.94, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3797.99, -87.84, 10923.01 ) LPos=( -148.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3800.78, -93.57, 10917.96 ) LPos=( -153.81, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3800.78, -96.45, 10917.95 ) LPos=( -153.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3800.78, -99.32, 10917.94 ) LPos=( -153.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3784.42, -110.16, 10947.43 ) LPos=( -120.06, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3783.03, -107.29, 10949.96 ) LPos=( -117.19, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3797.99, -121.59, 10922.91 ) LPos=( -148.06, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3800.78, -107.20, 10917.92 ) LPos=( -153.81, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3791.39, -146.75, 10934.75 ) LPos=( -134.44, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3785.82, -152.52, 10944.79 ) LPos=( -122.94, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3799.38, -143.83, 10920.33 ) LPos=( -150.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3799.38, -146.70, 10920.32 ) LPos=( -150.94, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3796.60, -152.47, 10925.33 ) LPos=( -145.19, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3785.81, -183.40, 10944.70 ) LPos=( -122.94, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3788.60, -183.39, 10939.67 ) LPos=( -128.69, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3789.99, -183.38, 10937.16 ) LPos=( -131.56, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3787.21, -177.64, 10942.21 ) LPos=( -125.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3784.42, -171.91, 10947.25 ) LPos=( -120.06, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3785.81, -169.02, 10944.75 ) LPos=( -122.94, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3787.21, -169.02, 10942.23 ) LPos=( -125.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3783.03, -166.16, 10949.78 ) LPos=( -117.19, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3787.21, -163.27, 10942.25 ) LPos=( -125.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3789.99, -163.25, 10937.22 ) LPos=( -131.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3796.60, -171.84, 10925.27 ) LPos=( -145.19, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3800.78, -163.20, 10917.75 ) LPos=( -153.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3800.78, -174.70, 10917.72 ) LPos=( -153.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3802.17, -174.69, 10915.21 ) LPos=( -156.69, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3803.56, -166.06, 10912.72 ) LPos=( -159.56, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3803.56, -171.81, 10912.70 ) LPos=( -159.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3803.56, -174.68, 10912.69 ) LPos=( -159.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3806.35, -177.54, 10907.65 ) LPos=( -165.31, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3792.78, -211.36, 10932.05 ) LPos=( -137.31, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3792.78, -196.99, 10932.09 ) LPos=( -137.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3791.39, -205.62, 10934.58 ) LPos=( -134.44, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3791.39, -199.87, 10934.60 ) LPos=( -134.44, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3789.99, -202.75, 10937.10 ) LPos=( -131.56, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3788.60, -194.13, 10939.64 ) LPos=( -128.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3787.21, -199.89, 10942.14 ) LPos=( -125.81, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3787.21, -197.02, 10942.15 ) LPos=( -125.81, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3785.81, -208.52, 10944.63 ) LPos=( -122.94, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3785.81, -205.65, 10944.64 ) LPos=( -122.94, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3785.81, -197.02, 10944.66 ) LPos=( -122.94, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3784.42, -208.53, 10947.14 ) LPos=( -120.06, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3784.42, -197.03, 10947.18 ) LPos=( -120.06, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3803.56, -194.06, 10912.63 ) LPos=( -159.56, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3796.60, -194.09, 10925.21 ) LPos=( -145.19, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3799.38, -202.70, 10920.15 ) LPos=( -150.94, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3802.17, -205.56, 10915.12 ) LPos=( -156.69, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3804.96, -208.42, 10910.08 ) LPos=( -162.44, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3802.17, -208.44, 10915.11 ) LPos=( -156.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3796.60, -208.47, 10925.17 ) LPos=( -145.19, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3804.96, -211.30, 10910.07 ) LPos=( -162.44, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3803.56, -211.31, 10912.58 ) LPos=( -159.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3797.99, -211.34, 10922.64 ) LPos=( -148.06, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3799.05, -222.27, 10920.70 ) LPos=( -150.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3793.23, -222.30, 10931.19 ) LPos=( -138.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3787.42, -222.33, 10941.69 ) LPos=( -126.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3804.86, -228.24, 10910.18 ) LPos=( -162.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3796.14, -228.28, 10925.93 ) LPos=( -144.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3793.23, -228.30, 10931.18 ) LPos=( -138.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3796.14, -234.28, 10925.91 ) LPos=( -144.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.51, -246.34, 10946.87 ) LPos=( -120.25, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3801.96, -264.25, 10915.33 ) LPos=( -156.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3790.32, -278.31, 10936.28 ) LPos=( -132.25, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3784.51, -290.34, 10946.74 ) LPos=( -120.25, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3793.23, -296.30, 10930.98 ) LPos=( -138.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3799.05, -302.27, 10920.46 ) LPos=( -150.25, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.42, -320.33, 10941.40 ) LPos=( -126.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3784.51, -320.34, 10946.65 ) LPos=( -120.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3799.05, -334.27, 10920.37 ) LPos=( -150.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3787.41, -358.33, 10941.29 ) LPos=( -126.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3799.04, -370.27, 10920.26 ) LPos=( -150.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3793.23, -370.30, 10930.76 ) LPos=( -138.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3790.32, -370.31, 10936.01 ) LPos=( -132.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3784.51, -370.34, 10946.51 ) LPos=( -120.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.41, -376.33, 10941.24 ) LPos=( -126.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3784.51, -376.34, 10946.49 ) LPos=( -120.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3799.04, -396.27, 10920.19 ) LPos=( -150.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3804.86, -408.24, 10909.66 ) LPos=( -162.25, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3801.95, -420.25, 10914.87 ) LPos=( -156.25, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3804.86, -426.24, 10909.60 ) LPos=( -162.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3799.04, -426.27, 10920.10 ) LPos=( -150.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3796.14, -426.28, 10925.35 ) LPos=( -144.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3793.23, -426.30, 10930.60 ) LPos=( -138.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3799.04, -432.27, 10920.08 ) LPos=( -150.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3796.13, -432.28, 10925.33 ) LPos=( -144.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3793.23, -432.30, 10930.58 ) LPos=( -138.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3790.32, -432.31, 10935.83 ) LPos=( -132.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3784.50, -432.34, 10946.32 ) LPos=( -120.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3796.13, -452.28, 10925.27 ) LPos=( -144.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.41, -488.33, 10940.91 ) LPos=( -126.25, -487.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3793.22, -582.30, 10930.14 ) LPos=( -138.25, -581.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3801.95, -600.25, 10914.34 ) LPos=( -156.25, -599.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3804.85, -656.23, 10908.93 ) LPos=( -162.25, -655.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,00 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3777.51, 673.62, 10962.25 ) LPos=( -105.75, 674.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3760.06, 543.52, 10993.36 ) LPos=( -69.75, 544.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3771.69, 487.59, 10972.20 ) LPos=( -93.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3760.06, 481.52, 10993.18 ) LPos=( -69.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3777.50, 449.62, 10961.60 ) LPos=( -105.75, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3777.50, 437.62, 10961.56 ) LPos=( -105.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3771.69, 437.59, 10972.06 ) LPos=( -93.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3765.87, 437.55, 10982.55 ) LPos=( -81.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3777.50, 431.62, 10961.54 ) LPos=( -105.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3774.60, 431.60, 10966.79 ) LPos=( -99.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3771.69, 431.59, 10972.04 ) LPos=( -93.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3757.15, 431.51, 10998.28 ) LPos=( -63.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3777.50, 425.62, 10961.53 ) LPos=( -105.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3774.60, 425.60, 10966.77 ) LPos=( -99.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3771.69, 425.59, 10972.02 ) LPos=( -93.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3768.78, 425.57, 10977.27 ) LPos=( -87.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3762.97, 425.54, 10987.77 ) LPos=( -75.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3757.15, 425.51, 10998.26 ) LPos=( -63.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3777.50, 419.62, 10961.51 ) LPos=( -105.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3771.69, 419.59, 10972.00 ) LPos=( -93.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3762.96, 419.54, 10987.75 ) LPos=( -75.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3777.50, 413.62, 10961.49 ) LPos=( -105.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3774.60, 413.60, 10966.74 ) LPos=( -99.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3771.69, 413.59, 10971.99 ) LPos=( -93.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3768.78, 413.57, 10977.23 ) LPos=( -87.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3777.50, 407.62, 10961.47 ) LPos=( -105.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3774.60, 407.60, 10966.72 ) LPos=( -99.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3771.69, 407.59, 10971.97 ) LPos=( -93.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3777.50, 381.62, 10961.40 ) LPos=( -105.75, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3774.59, 369.60, 10966.61 ) LPos=( -99.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3768.78, 369.57, 10977.11 ) LPos=( -87.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3774.59, 363.60, 10966.59 ) LPos=( -99.75, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3757.15, 363.51, 10998.08 ) LPos=( -63.75, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.05, 337.52, 10992.76 ) LPos=( -69.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3771.68, 295.59, 10971.64 ) LPos=( -93.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3757.15, 295.51, 10997.88 ) LPos=( -63.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3774.80, 211.42, 10965.76 ) LPos=( -100.19, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3765.41, 191.99, 10982.65 ) LPos=( -80.81, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3758.44, 180.45, 10995.19 ) LPos=( -66.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3758.44, 152.45, 10995.11 ) LPos=( -66.44, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3776.19, 136.05, 10963.03 ) LPos=( -103.06, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.62, 99.39, 10972.98 ) LPos=( -91.56, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3776.19, 108.05, 10962.94 ) LPos=( -103.06, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3776.19, 99.42, 10962.92 ) LPos=( -103.06, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3774.80, 88.67, 10965.40 ) LPos=( -100.19, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3774.80, 68.54, 10965.34 ) LPos=( -100.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3764.01, 40.48, 10984.72 ) LPos=( -77.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3770.62, 60.64, 10972.86 ) LPos=( -91.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.62, 43.39, 10972.81 ) LPos=( -91.56, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3773.40, 54.91, 10967.82 ) LPos=( -97.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3764.01, 32.61, 10984.70 ) LPos=( -77.94, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3777.58, 29.81, 10960.20 ) LPos=( -105.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3774.80, 26.92, 10965.22 ) LPos=( -100.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3777.58, 12.56, 10960.15 ) LPos=( -105.94, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3764.01, -9.77, 10984.58 ) LPos=( -77.94, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3759.83, -6.91, 10992.13 ) LPos=( -69.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -6.89, 10984.58 ) LPos=( -77.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3769.22, -3.99, 10975.19 ) LPos=( -88.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3769.22, -9.74, 10975.17 ) LPos=( -88.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.61, -12.61, 10972.65 ) LPos=( -91.56, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3777.58, 4.68, 10960.13 ) LPos=( -105.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3777.58, -12.57, 10960.07 ) LPos=( -105.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3764.01, -34.89, 10984.50 ) LPos=( -77.94, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3761.22, -43.53, 10989.51 ) LPos=( -72.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3758.44, -34.92, 10994.56 ) LPos=( -66.44, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3757.04, -40.68, 10997.06 ) LPos=( -63.56, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3772.01, -23.35, 10970.10 ) LPos=( -94.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3770.61, -23.36, 10972.62 ) LPos=( -91.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.61, -26.23, 10972.61 ) LPos=( -91.56, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3770.61, -31.98, 10972.59 ) LPos=( -91.56, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3773.40, -37.72, 10967.55 ) LPos=( -97.31, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3772.01, -37.72, 10970.06 ) LPos=( -94.44, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3758.44, -71.54, 10994.45 ) LPos=( -66.44, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3759.83, -71.54, 10991.94 ) LPos=( -69.31, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3758.44, -68.67, 10994.46 ) LPos=( -66.44, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3758.44, -62.92, 10994.48 ) LPos=( -66.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -62.89, 10984.42 ) LPos=( -77.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3765.40, -62.88, 10981.91 ) LPos=( -80.81, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3755.65, -54.31, 10999.53 ) LPos=( -60.69, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3769.22, -59.99, 10975.02 ) LPos=( -88.69, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3772.01, -62.85, 10969.99 ) LPos=( -94.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3773.40, -54.22, 10967.50 ) LPos=( -97.31, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3774.79, -51.33, 10964.99 ) LPos=( -100.19, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3774.79, -54.21, 10964.98 ) LPos=( -100.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3774.79, -57.08, 10964.97 ) LPos=( -100.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3774.79, -59.96, 10964.97 ) LPos=( -100.19, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3776.19, -54.20, 10962.47 ) LPos=( -103.06, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3776.19, -59.95, 10962.45 ) LPos=( -103.06, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3776.19, -65.70, 10962.43 ) LPos=( -103.06, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3776.19, -68.58, 10962.43 ) LPos=( -103.06, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3776.19, -71.45, 10962.42 ) LPos=( -103.06, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3765.40, -96.63, 10981.81 ) LPos=( -80.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3764.01, -85.14, 10984.35 ) LPos=( -77.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3762.62, -99.52, 10986.83 ) LPos=( -75.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3762.62, -90.90, 10986.85 ) LPos=( -75.06, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3762.62, -88.02, 10986.86 ) LPos=( -75.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3762.62, -79.40, 10986.89 ) LPos=( -75.06, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3761.22, -88.03, 10989.38 ) LPos=( -72.19, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3761.22, -85.15, 10989.38 ) LPos=( -72.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3757.04, -88.05, 10996.92 ) LPos=( -63.56, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3757.04, -82.30, 10996.94 ) LPos=( -63.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3755.65, -99.56, 10999.40 ) LPos=( -60.69, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3755.65, -96.68, 10999.41 ) LPos=( -60.69, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3777.58, -79.32, 10959.88 ) LPos=( -105.94, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3769.22, -82.24, 10974.96 ) LPos=( -88.69, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3777.58, -85.07, 10959.86 ) LPos=( -105.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3772.01, -87.97, 10969.91 ) LPos=( -94.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3777.58, -90.82, 10959.85 ) LPos=( -105.94, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3774.79, -90.83, 10964.87 ) LPos=( -100.19, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3773.40, -99.47, 10967.36 ) LPos=( -97.31, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3765.40, -127.51, 10981.72 ) LPos=( -80.81, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3762.62, -124.65, 10986.75 ) LPos=( -75.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3757.04, -121.80, 10996.82 ) LPos=( -63.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3758.44, -121.79, 10994.31 ) LPos=( -66.44, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3759.83, -121.79, 10991.79 ) LPos=( -69.31, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3759.83, -118.91, 10991.80 ) LPos=( -69.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.62, -118.90, 10986.77 ) LPos=( -75.06, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -118.89, 10984.26 ) LPos=( -77.94, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3757.04, -116.05, 10996.84 ) LPos=( -63.56, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3764.01, -113.14, 10984.27 ) LPos=( -77.94, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3762.62, -110.27, 10986.80 ) LPos=( -75.06, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3755.65, -107.43, 10999.38 ) LPos=( -60.69, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3759.83, -107.41, 10991.83 ) LPos=( -69.31, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3764.01, -107.39, 10984.29 ) LPos=( -77.94, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3769.22, -124.61, 10974.84 ) LPos=( -88.69, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3772.00, -115.97, 10969.83 ) LPos=( -94.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3772.00, -118.85, 10969.82 ) LPos=( -94.44, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3772.00, -121.72, 10969.81 ) LPos=( -94.44, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3772.00, -124.60, 10969.81 ) LPos=( -94.44, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3772.00, -127.47, 10969.80 ) LPos=( -94.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3773.40, -110.22, 10967.33 ) LPos=( -97.31, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3773.40, -115.97, 10967.32 ) LPos=( -97.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3773.40, -124.59, 10967.29 ) LPos=( -97.31, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3776.18, -107.33, 10962.31 ) LPos=( -103.06, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3776.18, -115.95, 10962.29 ) LPos=( -103.06, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3777.58, -124.57, 10959.75 ) LPos=( -105.94, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3778.97, -118.81, 10957.25 ) LPos=( -108.81, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3765.40, -149.76, 10981.65 ) LPos=( -80.81, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3765.40, -146.88, 10981.66 ) LPos=( -80.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3765.40, -141.13, 10981.68 ) LPos=( -80.81, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3765.40, -138.26, 10981.68 ) LPos=( -80.81, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3765.40, -135.38, 10981.69 ) LPos=( -80.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3757.04, -141.18, 10996.76 ) LPos=( -63.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.61, -138.23, 10972.28 ) LPos=( -91.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3777.58, -141.07, 10959.70 ) LPos=( -105.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3774.79, -141.08, 10964.73 ) LPos=( -100.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3773.40, -141.09, 10967.24 ) LPos=( -97.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3778.97, -146.81, 10957.17 ) LPos=( -108.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3772.00, -149.72, 10969.73 ) LPos=( -94.44, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3777.58, -152.57, 10959.66 ) LPos=( -105.94, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.61, -174.90, 10986.61 ) LPos=( -75.06, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -174.89, 10984.09 ) LPos=( -77.94, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3764.01, -169.14, 10984.11 ) LPos=( -77.94, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3761.22, -166.28, 10989.15 ) LPos=( -72.19, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3758.43, -163.42, 10994.18 ) LPos=( -66.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3777.58, -163.32, 10959.63 ) LPos=( -105.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3777.58, -166.19, 10959.62 ) LPos=( -105.94, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3778.97, -166.19, 10957.11 ) LPos=( -108.81, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3778.97, -177.69, 10957.08 ) LPos=( -108.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3764.01, -200.01, 10984.02 ) LPos=( -77.94, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3762.61, -202.90, 10986.52 ) LPos=( -75.06, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3761.22, -205.78, 10989.03 ) LPos=( -72.19, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3759.83, -197.16, 10991.57 ) LPos=( -69.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3759.83, -194.29, 10991.58 ) LPos=( -69.31, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3755.65, -208.68, 10999.08 ) LPos=( -60.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3755.65, -200.06, 10999.11 ) LPos=( -60.69, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3773.40, -191.34, 10967.09 ) LPos=( -97.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3774.79, -197.08, 10964.56 ) LPos=( -100.19, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3776.18, -202.83, 10962.03 ) LPos=( -103.06, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3774.79, -202.83, 10964.55 ) LPos=( -100.19, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3772.00, -211.47, 10969.55 ) LPos=( -94.44, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3762.95, -222.46, 10985.86 ) LPos=( -75.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.04, -222.47, 10991.11 ) LPos=( -69.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3757.13, -222.49, 10996.36 ) LPos=( -63.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3757.13, -228.49, 10996.34 ) LPos=( -63.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3757.13, -234.49, 10996.33 ) LPos=( -63.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.95, -240.46, 10985.81 ) LPos=( -75.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3757.13, -246.49, 10996.29 ) LPos=( -63.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3760.04, -252.47, 10991.03 ) LPos=( -69.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3762.94, -258.46, 10985.76 ) LPos=( -75.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3768.76, -264.43, 10975.24 ) LPos=( -87.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3762.94, -264.46, 10985.74 ) LPos=( -75.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3762.94, -278.46, 10985.70 ) LPos=( -75.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.04, -278.47, 10990.95 ) LPos=( -69.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3768.76, -284.43, 10975.19 ) LPos=( -87.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3762.94, -284.46, 10985.68 ) LPos=( -75.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3774.57, -290.40, 10964.67 ) LPos=( -99.75, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3777.48, -296.38, 10959.41 ) LPos=( -105.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.94, -296.46, 10985.65 ) LPos=( -75.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.03, -334.47, 10990.78 ) LPos=( -69.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3771.66, -340.41, 10969.77 ) LPos=( -93.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3762.94, -340.46, 10985.52 ) LPos=( -75.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3771.66, -346.41, 10969.76 ) LPos=( -93.75, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3777.48, -352.38, 10959.24 ) LPos=( -105.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3774.57, -352.40, 10964.49 ) LPos=( -99.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3777.48, -396.38, 10959.11 ) LPos=( -105.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3774.57, -396.40, 10964.36 ) LPos=( -99.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3771.66, -396.41, 10969.61 ) LPos=( -93.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3771.66, -402.41, 10969.59 ) LPos=( -93.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3771.66, -408.41, 10969.57 ) LPos=( -93.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3768.76, -408.43, 10974.82 ) LPos=( -87.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3765.85, -408.44, 10980.07 ) LPos=( -81.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3768.76, -414.43, 10974.80 ) LPos=( -87.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3765.85, -414.44, 10980.05 ) LPos=( -81.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3768.75, -420.43, 10974.79 ) LPos=( -87.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3765.85, -420.44, 10980.04 ) LPos=( -81.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3762.94, -420.46, 10985.28 ) LPos=( -75.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3771.66, -426.41, 10969.52 ) LPos=( -93.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3760.03, -426.47, 10990.51 ) LPos=( -69.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3757.12, -446.49, 10995.70 ) LPos=( -63.75, -445.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3757.12, -452.49, 10995.69 ) LPos=( -63.75, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3760.03, -458.47, 10990.42 ) LPos=( -69.75, -457.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.94, -464.46, 10985.15 ) LPos=( -75.75, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3760.03, -464.47, 10990.40 ) LPos=( -69.75, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,00 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3735.59, 667.39, 11037.90 ) LPos=( -19.25, 668.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,00 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3735.59, 631.39, 11037.79 ) LPos=( -19.25, 632.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3747.22, 575.46, 11016.64 ) LPos=( -43.25, 576.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3744.31, 493.44, 11021.64 ) LPos=( -37.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3735.59, 475.40, 11037.34 ) LPos=( -19.25, 476.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3738.49, 469.41, 11032.07 ) LPos=( -25.25, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3750.12, 463.47, 11011.06 ) LPos=( -49.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3741.40, 449.43, 11026.76 ) LPos=( -31.25, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3750.12, 437.47, 11010.98 ) LPos=( -49.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3729.77, 425.36, 11047.69 ) LPos=( -7.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3741.40, 419.43, 11026.67 ) LPos=( -31.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3732.68, 419.38, 11042.42 ) LPos=( -13.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3747.21, 413.46, 11016.16 ) LPos=( -43.25, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3741.40, 407.43, 11026.64 ) LPos=( -31.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.77, 393.36, 11047.59 ) LPos=( -7.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3738.49, 281.41, 11031.52 ) LPos=( -25.25, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3750.21, 191.91, 11010.10 ) LPos=( -49.44, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3746.03, 183.26, 11017.62 ) LPos=( -40.81, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3741.85, 183.24, 11025.16 ) LPos=( -32.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3750.21, 180.41, 11010.06 ) LPos=( -49.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3751.60, 169.67, 11007.52 ) LPos=( -52.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3738.03, 99.22, 11031.80 ) LPos=( -24.31, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3746.02, 105.01, 11017.39 ) LPos=( -40.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3748.81, 99.28, 11012.34 ) LPos=( -46.56, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3738.03, 88.47, 11031.77 ) LPos=( -24.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3744.63, 40.38, 11019.71 ) LPos=( -37.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3751.60, 54.79, 11007.18 ) LPos=( -52.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3736.63, 20.97, 11034.09 ) LPos=( -21.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3741.84, 15.24, 11024.67 ) LPos=( -32.19, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3729.67, -12.82, 11046.56 ) LPos=( -7.06, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3748.81, -15.60, 11012.00 ) LPos=( -46.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3738.02, -37.90, 11031.40 ) LPos=( -24.31, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3736.63, -37.91, 11033.92 ) LPos=( -21.44, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3750.20, -32.09, 11009.44 ) LPos=( -49.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3751.59, -43.58, 11006.89 ) LPos=( -52.31, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3744.63, -43.62, 11019.47 ) LPos=( -37.94, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3743.23, -43.62, 11021.98 ) LPos=( -35.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3731.06, -63.06, 11043.90 ) LPos=( -9.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3735.24, -63.04, 11036.36 ) LPos=( -18.56, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3736.63, -88.16, 11033.77 ) LPos=( -21.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3735.24, -79.54, 11036.31 ) LPos=( -18.56, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3732.45, -85.31, 11041.32 ) LPos=( -12.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3729.66, -96.82, 11046.32 ) LPos=( -7.06, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3751.59, -79.46, 11006.79 ) LPos=( -52.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3746.02, -79.48, 11016.85 ) LPos=( -40.81, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3750.20, -85.21, 11009.28 ) LPos=( -49.44, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3746.02, -88.11, 11016.82 ) LPos=( -40.81, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3750.20, -90.96, 11009.27 ) LPos=( -49.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3741.84, -91.01, 11024.36 ) LPos=( -32.19, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3747.41, -93.85, 11014.29 ) LPos=( -43.69, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3748.80, -99.60, 11011.76 ) LPos=( -46.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3735.23, -127.67, 11036.17 ) LPos=( -18.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3736.63, -124.78, 11033.66 ) LPos=( -21.44, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3738.02, -124.78, 11031.15 ) LPos=( -24.31, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3733.84, -121.92, 11038.70 ) LPos=( -15.69, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3735.24, -121.92, 11036.18 ) LPos=( -18.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3738.02, -121.90, 11031.15 ) LPos=( -24.31, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3732.45, -119.06, 11041.22 ) LPos=( -12.81, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3733.84, -119.05, 11038.71 ) LPos=( -15.69, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3735.24, -119.04, 11036.19 ) LPos=( -18.56, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3738.02, -119.03, 11031.16 ) LPos=( -24.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3729.66, -116.20, 11046.26 ) LPos=( -7.06, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3738.02, -116.15, 11031.17 ) LPos=( -24.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3731.06, -110.44, 11043.76 ) LPos=( -9.94, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3741.84, -121.88, 11024.27 ) LPos=( -32.19, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3743.23, -124.75, 11021.74 ) LPos=( -35.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3743.23, -127.62, 11021.73 ) LPos=( -35.06, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3746.02, -110.36, 11016.76 ) LPos=( -40.81, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3750.20, -113.21, 11009.20 ) LPos=( -49.44, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3750.20, -116.09, 11009.19 ) LPos=( -49.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3750.20, -118.96, 11009.19 ) LPos=( -49.44, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3750.20, -121.84, 11009.18 ) LPos=( -49.44, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3750.20, -127.59, 11009.16 ) LPos=( -49.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3751.59, -118.96, 11006.67 ) LPos=( -52.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3735.23, -141.29, 11036.13 ) LPos=( -18.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3733.84, -141.30, 11038.64 ) LPos=( -15.69, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3732.45, -149.93, 11041.13 ) LPos=( -12.81, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3732.45, -135.56, 11041.17 ) LPos=( -12.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3731.05, -155.69, 11043.63 ) LPos=( -9.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3728.27, -149.95, 11048.68 ) LPos=( -4.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3747.41, -135.48, 11014.17 ) LPos=( -43.69, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3751.59, -138.33, 11006.61 ) LPos=( -52.31, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3748.80, -138.34, 11011.64 ) LPos=( -46.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3746.02, -138.36, 11016.67 ) LPos=( -40.81, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3744.62, -141.24, 11019.18 ) LPos=( -37.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3744.62, -149.87, 11019.15 ) LPos=( -37.94, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3746.02, -152.73, 11016.63 ) LPos=( -40.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3750.20, -155.59, 11009.08 ) LPos=( -49.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3744.62, -155.62, 11019.14 ) LPos=( -37.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3741.84, -155.63, 11024.17 ) LPos=( -32.19, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3733.84, -180.80, 11038.53 ) LPos=( -15.69, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3732.45, -177.93, 11041.05 ) LPos=( -12.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3746.02, -177.86, 11016.56 ) LPos=( -40.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3750.20, -163.46, 11009.05 ) LPos=( -49.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3747.41, -197.23, 11013.99 ) LPos=( -43.69, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3748.80, -200.09, 11011.46 ) LPos=( -46.56, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3741.84, -205.88, 11024.02 ) LPos=( -32.19, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3741.38, -222.57, 11024.79 ) LPos=( -31.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.75, -222.63, 11045.78 ) LPos=( -7.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3741.38, -228.57, 11024.77 ) LPos=( -31.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3738.47, -228.59, 11030.02 ) LPos=( -25.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3741.38, -234.57, 11024.76 ) LPos=( -31.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3735.56, -234.60, 11035.25 ) LPos=( -19.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3750.10, -258.52, 11008.94 ) LPos=( -49.25, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3738.47, -264.59, 11029.92 ) LPos=( -25.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.75, -278.63, 11045.62 ) LPos=( -7.25, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3732.66, -284.62, 11040.35 ) LPos=( -13.25, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3729.75, -284.63, 11045.60 ) LPos=( -7.25, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3732.66, -290.62, 11040.34 ) LPos=( -13.25, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3750.10, -296.52, 11008.83 ) LPos=( -49.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3738.47, -302.59, 11029.80 ) LPos=( -25.25, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3729.75, -320.63, 11045.50 ) LPos=( -7.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.75, -334.63, 11045.46 ) LPos=( -7.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3741.38, -340.57, 11024.44 ) LPos=( -31.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3732.65, -340.62, 11040.19 ) LPos=( -13.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3729.75, -352.63, 11045.40 ) LPos=( -7.25, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3735.56, -358.60, 11034.89 ) LPos=( -19.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3732.65, -358.62, 11040.14 ) LPos=( -13.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3738.47, -376.59, 11029.59 ) LPos=( -25.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3747.19, -390.54, 11013.80 ) LPos=( -43.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3747.19, -396.54, 11013.78 ) LPos=( -43.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3735.56, -432.60, 11034.67 ) LPos=( -19.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:275,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3732.65, -446.62, 11039.88 ) LPos=( -13.25, -445.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:275,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3741.37, -594.57, 11023.70 ) LPos=( -31.25, -593.79, -0.80 )
+ApplicationMgr       INFO Application Manager Stopped successfully
+EventLoopMgr         INFO Histograms converted successfully according to request.
+ToolSvc              INFO Removing all tools created by ToolSvc
+ApplicationMgr       INFO Application Manager Finalized successfully
+ApplicationMgr       INFO Application Manager Terminated successfully
diff --git a/Rich/RichDetectors/tests/refs/decode-and-spacepoints.ref.dd4hep b/Rich/RichDetectors/tests/refs/decode-and-spacepoints.ref.dd4hep
new file mode 100644
index 0000000000000000000000000000000000000000..33069e65c04ea516702668fab37f8ed5dd55e935
--- /dev/null
+++ b/Rich/RichDetectors/tests/refs/decode-and-spacepoints.ref.dd4hep
@@ -0,0 +1,13130 @@
+ApplicationMgr    SUCCESS
+====================================================================================================================================
+====================================================================================================================================
+ApplicationMgr       INFO Application Manager Configured successfully
+All                  INFO Member list: Gaudi::Hive::FetchDataFromFile/FetchDSTData, LHCb::UnpackRawEvent/UnpackODIN, createODIN/ODINFutureDecode, LHCb::Det::LbDD4hep::IOVProducer/ReserveIOVDD4hep, Rich::Future::RawBankDecoder/RichFutureDecode, Rich::Future::TestDecodeAndIDs/TestDecodeAndIDs
+RndmGenSvc.Engine    INFO Generator engine type:CLHEP::RanluxEngine
+RndmGenSvc.Engine    INFO Current Seed:1234567 Luxury:3
+RndmGenSvc           INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine>
+EventPersistenc...   INFO Added successfully Conversion service:RootCnvSvc
+ApplicationMgr       INFO Application Manager Initialized successfully
+ApplicationMgr       INFO Application Manager Started successfully
+EventSelector     SUCCESS Reading Event record 1. Record number within stream 1: 1
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1555.48, 1405.27 ) LPos=( 556.06, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 519.44, 1544.75, 1422.30 ) LPos=( 519.44, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 522.31, 1567.33, 1386.45 ) LPos=( 522.31, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 516.56, 1567.33, 1386.45 ) LPos=( 516.56, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 444.06, 1562.74, 1393.74 ) LPos=( 444.06, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 438.31, 1568.87, 1384.01 ) LPos=( 438.31, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 416.06, 1553.95, 1407.71 ) LPos=( 416.06, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 407.44, 1544.75, 1422.30 ) LPos=( 407.44, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 416.06, 1565.80, 1388.88 ) LPos=( 416.06, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 416.06, 1562.74, 1393.74 ) LPos=( 416.06, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 407.44, 1564.27, 1391.31 ) LPos=( 407.44, 605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 385.19, 1552.41, 1410.14 ) LPos=( 385.19, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 385.19, 1564.27, 1391.31 ) LPos=( 385.19, 605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 370.81, 1568.87, 1384.01 ) LPos=( 370.81, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 367.94, 1568.87, 1384.01 ) LPos=( 367.94, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 342.81, 1552.41, 1410.14 ) LPos=( 342.81, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 354.31, 1570.40, 1381.58 ) LPos=( 354.31, 617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 332.06, 1568.87, 1384.01 ) LPos=( 332.06, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 298.31, 1555.48, 1405.27 ) LPos=( 298.31, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 286.81, 1549.35, 1415.00 ) LPos=( 286.81, 577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 295.44, 1544.75, 1422.30 ) LPos=( 295.44, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 304.06, 1544.75, 1422.30 ) LPos=( 304.06, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 276.06, 1552.41, 1410.14 ) LPos=( 276.06, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 273.19, 1559.67, 1398.61 ) LPos=( 273.19, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, 1561.21, 1396.18 ) LPos=( 248.06, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 242.31, 1559.67, 1398.61 ) LPos=( 242.31, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, 1544.75, 1422.30 ) LPos=( 177.69, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 189.19, 1567.33, 1386.45 ) LPos=( 189.19, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 186.31, 1559.67, 1398.61 ) LPos=( 186.31, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 171.94, 1565.80, 1388.88 ) LPos=( 171.94, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 146.81, 1546.29, 1419.87 ) LPos=( 146.81, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1559.67, 1398.61 ) LPos=( 152.56, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, 1559.67, 1398.61 ) LPos=( 149.69, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, 1564.27, 1391.31 ) LPos=( 152.56, 605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, 1555.48, 1405.27 ) LPos=( 136.06, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 136.06, 1553.95, 1407.71 ) LPos=( 136.06, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, 1552.41, 1410.14 ) LPos=( 127.44, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 133.19, 1552.41, 1410.14 ) LPos=( 133.19, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1552.41, 1410.14 ) LPos=( 136.06, 583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, 1550.88, 1412.57 ) LPos=( 115.94, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1550.88, 1412.57 ) LPos=( 124.56, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 136.06, 1550.88, 1412.57 ) LPos=( 136.06, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1546.29, 1419.87 ) LPos=( 124.56, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1570.40, 1381.58 ) LPos=( 115.94, 617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1559.67, 1398.61 ) LPos=( 93.69, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1561.21, 1396.18 ) LPos=( 102.31, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, 1562.74, 1393.74 ) LPos=( 93.69, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, 1565.80, 1388.88 ) LPos=( 59.94, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, 1559.67, 1398.61 ) LPos=( 40.56, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 46.31, 1561.21, 1396.18 ) LPos=( 46.31, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1565.80, 1388.88 ) LPos=( 52.06, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1567.33, 1386.45 ) LPos=( 43.44, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1553.95, 1407.71 ) LPos=( 21.19, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:002,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1547.82, 1417.44 ) LPos=( 12.56, 574.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, 1562.74, 1393.74 ) LPos=( -3.94, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -43.44, 1555.48, 1405.27 ) LPos=( -43.44, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1546.29, 1419.87 ) LPos=( -31.94, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1562.74, 1393.74 ) LPos=( -34.81, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, 1550.88, 1412.57 ) LPos=( -68.56, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -62.81, 1555.48, 1405.27 ) LPos=( -62.81, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -59.94, 1555.48, 1405.27 ) LPos=( -59.94, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, 1559.67, 1398.61 ) LPos=( -74.31, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -59.94, 1561.21, 1396.18 ) LPos=( -59.94, 600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, 1568.87, 1384.01 ) LPos=( -62.81, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, 1570.40, 1381.58 ) LPos=( -65.69, 617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, 1555.48, 1405.27 ) LPos=( -115.94, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, 1559.67, 1398.61 ) LPos=( -133.19, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, 1567.33, 1386.45 ) LPos=( -130.31, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -149.69, 1568.87, 1384.01 ) LPos=( -149.69, 614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -152.56, 1567.33, 1386.45 ) LPos=( -152.56, 611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -174.81, 1565.80, 1388.88 ) LPos=( -174.81, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:003,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -217.19, 1555.48, 1405.27 ) LPos=( -217.19, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, 1544.75, 1422.30 ) LPos=( -227.94, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -227.94, 1546.29, 1419.87 ) LPos=( -227.94, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, 1555.48, 1405.27 ) LPos=( -258.81, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -267.44, 1553.95, 1407.71 ) LPos=( -267.44, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -270.31, 1546.29, 1419.87 ) LPos=( -270.31, 572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -276.06, 1565.80, 1388.88 ) LPos=( -276.06, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -304.06, 1553.95, 1407.71 ) LPos=( -304.06, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -283.94, 1559.67, 1398.61 ) LPos=( -283.94, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -339.94, 1547.82, 1417.44 ) LPos=( -339.94, 574.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -348.56, 1559.67, 1398.61 ) LPos=( -348.56, 597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -401.69, 1555.48, 1405.27 ) LPos=( -401.69, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -432.56, 1555.48, 1405.27 ) LPos=( -432.56, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -426.81, 1544.75, 1422.30 ) LPos=( -426.81, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:004,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -423.94, 1565.80, 1388.88 ) LPos=( -423.94, 608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -497.19, 1544.75, 1422.30 ) LPos=( -497.19, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -488.56, 1544.75, 1422.30 ) LPos=( -488.56, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -525.19, 1550.88, 1412.57 ) LPos=( -525.19, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -513.69, 1544.75, 1422.30 ) LPos=( -513.69, 569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -513.69, 1550.88, 1412.57 ) LPos=( -513.69, 580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -538.81, 1555.48, 1405.27 ) LPos=( -538.81, 589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -550.31, 1553.95, 1407.71 ) LPos=( -550.31, 586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:005,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -541.69, 1562.74, 1393.74 ) LPos=( -541.69, 602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 594.81, 1537.23, 1434.26 ) LPos=( 594.81, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 569.69, 1523.84, 1455.52 ) LPos=( 569.69, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 566.81, 1522.31, 1457.95 ) LPos=( 566.81, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 547.44, 1522.31, 1457.95 ) LPos=( 547.44, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 556.06, 1514.65, 1470.11 ) LPos=( 556.06, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1525.37, 1453.08 ) LPos=( 556.06, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:006,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 507.94, 1535.70, 1436.69 ) LPos=( 507.94, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 429.69, 1529.57, 1446.42 ) LPos=( 429.69, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 432.56, 1532.63, 1441.55 ) LPos=( 432.56, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 432.56, 1534.16, 1439.12 ) LPos=( 432.56, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 426.81, 1535.70, 1436.69 ) LPos=( 426.81, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 426.81, 1540.29, 1429.39 ) LPos=( 426.81, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 388.06, 1523.84, 1455.52 ) LPos=( 388.06, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 379.44, 1537.23, 1434.26 ) LPos=( 379.44, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 342.81, 1522.31, 1457.95 ) LPos=( 342.81, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 329.19, 1529.57, 1446.42 ) LPos=( 329.19, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 320.56, 1540.29, 1429.39 ) LPos=( 320.56, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 283.94, 1522.31, 1457.95 ) LPos=( 283.94, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 258.81, 1519.24, 1462.81 ) LPos=( 258.81, 521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 261.69, 1522.31, 1457.95 ) LPos=( 261.69, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 273.19, 1522.31, 1457.95 ) LPos=( 273.19, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:007,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1540.29, 1429.39 ) LPos=( 267.44, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 199.94, 1519.24, 1462.81 ) LPos=( 199.94, 521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 202.81, 1514.65, 1470.11 ) LPos=( 202.81, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 205.69, 1523.84, 1455.52 ) LPos=( 205.69, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 217.19, 1517.71, 1465.25 ) LPos=( 217.19, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 186.31, 1525.37, 1453.08 ) LPos=( 186.31, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, 1522.31, 1457.95 ) LPos=( 186.31, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 192.06, 1520.77, 1460.38 ) LPos=( 192.06, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 183.44, 1517.71, 1465.25 ) LPos=( 183.44, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 189.19, 1529.57, 1446.42 ) LPos=( 189.19, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, 1520.77, 1460.38 ) LPos=( 155.44, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1517.71, 1465.25 ) LPos=( 130.31, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 124.56, 1537.23, 1434.26 ) LPos=( 124.56, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, 1534.16, 1439.12 ) LPos=( 124.56, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 124.56, 1531.10, 1443.99 ) LPos=( 124.56, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 62.81, 1522.31, 1457.95 ) LPos=( 62.81, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1520.77, 1460.38 ) LPos=( 71.44, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 80.06, 1517.71, 1465.25 ) LPos=( 80.06, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, 1514.65, 1470.11 ) LPos=( 62.81, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:008,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 74.31, 1538.76, 1431.82 ) LPos=( 74.31, 557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -18.31, 1525.37, 1453.08 ) LPos=( -18.31, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, 1523.84, 1455.52 ) LPos=( -15.44, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1522.31, 1457.95 ) LPos=( -12.56, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1520.77, 1460.38 ) LPos=( -9.69, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, 1522.31, 1457.95 ) LPos=( -9.69, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1538.76, 1431.82 ) LPos=( -15.44, 557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1532.63, 1441.55 ) LPos=( -34.81, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, 1531.10, 1443.99 ) LPos=( -34.81, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1532.63, 1441.55 ) LPos=( -37.69, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, 1532.63, 1441.55 ) LPos=( -40.56, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, 1532.63, 1441.55 ) LPos=( -43.44, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1532.63, 1441.55 ) LPos=( -46.31, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, 1516.18, 1467.68 ) LPos=( -68.56, 515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, 1519.24, 1462.81 ) LPos=( -65.69, 521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -62.81, 1523.84, 1455.52 ) LPos=( -62.81, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1532.63, 1441.55 ) LPos=( -59.94, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1534.16, 1439.12 ) LPos=( -80.06, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1537.23, 1434.26 ) LPos=( -90.81, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1537.23, 1434.26 ) LPos=( -102.31, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1531.10, 1443.99 ) LPos=( -102.31, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, 1522.31, 1457.95 ) LPos=( -133.19, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1522.31, 1457.95 ) LPos=( -130.31, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1523.84, 1455.52 ) LPos=( -130.31, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, 1522.31, 1457.95 ) LPos=( -127.44, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1523.84, 1455.52 ) LPos=( -127.44, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, 1525.37, 1453.08 ) LPos=( -115.94, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, 1531.10, 1443.99 ) LPos=( -124.56, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, 1532.63, 1441.55 ) LPos=( -121.69, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -127.44, 1532.63, 1441.55 ) LPos=( -127.44, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1534.16, 1439.12 ) LPos=( -127.44, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -130.31, 1534.16, 1439.12 ) LPos=( -130.31, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, 1535.70, 1436.69 ) LPos=( -127.44, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, 1535.70, 1436.69 ) LPos=( -130.31, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1535.70, 1436.69 ) LPos=( -133.19, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -118.81, 1537.23, 1434.26 ) LPos=( -118.81, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -127.44, 1537.23, 1434.26 ) LPos=( -127.44, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -118.81, 1540.29, 1429.39 ) LPos=( -118.81, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, 1540.29, 1429.39 ) LPos=( -136.06, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -152.56, 1525.37, 1453.08 ) LPos=( -152.56, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, 1525.37, 1453.08 ) LPos=( -143.94, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -143.94, 1517.71, 1465.25 ) LPos=( -143.94, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -146.81, 1514.65, 1470.11 ) LPos=( -146.81, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -149.69, 1537.23, 1434.26 ) LPos=( -149.69, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:009,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -174.81, 1538.76, 1431.82 ) LPos=( -174.81, 557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -230.81, 1532.63, 1441.55 ) LPos=( -230.81, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -230.81, 1535.70, 1436.69 ) LPos=( -230.81, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, 1535.70, 1436.69 ) LPos=( -236.56, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -258.81, 1523.84, 1455.52 ) LPos=( -258.81, 529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -267.44, 1522.31, 1457.95 ) LPos=( -267.44, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -267.44, 1520.77, 1460.38 ) LPos=( -267.44, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1520.77, 1460.38 ) LPos=( -264.56, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -255.94, 1531.10, 1443.99 ) LPos=( -255.94, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -258.81, 1531.10, 1443.99 ) LPos=( -258.81, 543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -258.81, 1529.57, 1446.42 ) LPos=( -258.81, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -292.56, 1514.65, 1470.11 ) LPos=( -292.56, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -292.56, 1517.71, 1465.25 ) LPos=( -292.56, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -286.81, 1516.18, 1467.68 ) LPos=( -286.81, 515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -301.19, 1534.16, 1439.12 ) LPos=( -301.19, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -317.69, 1525.37, 1453.08 ) LPos=( -317.69, 532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -317.69, 1520.77, 1460.38 ) LPos=( -317.69, 524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -317.69, 1517.71, 1465.25 ) LPos=( -317.69, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -311.94, 1532.63, 1441.55 ) LPos=( -311.94, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, 1529.57, 1446.42 ) LPos=( -311.94, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -320.56, 1529.57, 1446.42 ) LPos=( -320.56, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -329.19, 1535.70, 1436.69 ) LPos=( -329.19, 552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -354.31, 1516.18, 1467.68 ) LPos=( -354.31, 515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -345.69, 1532.63, 1441.55 ) LPos=( -345.69, 546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -339.94, 1540.29, 1429.39 ) LPos=( -339.94, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -376.56, 1514.65, 1470.11 ) LPos=( -376.56, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -367.94, 1537.23, 1434.26 ) LPos=( -367.94, 555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -367.94, 1534.16, 1439.12 ) LPos=( -367.94, 549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -388.06, 1540.29, 1429.39 ) LPos=( -388.06, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -410.31, 1540.29, 1429.39 ) LPos=( -410.31, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:010,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -416.06, 1540.29, 1429.39 ) LPos=( -416.06, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -457.69, 1529.57, 1446.42 ) LPos=( -457.69, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -463.44, 1540.29, 1429.39 ) LPos=( -463.44, 560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -485.69, 1517.71, 1465.25 ) LPos=( -485.69, 518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -553.19, 1522.31, 1457.95 ) LPos=( -553.19, 527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -566.81, 1529.57, 1446.42 ) LPos=( -566.81, 540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:011,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -603.44, 1514.65, 1470.11 ) LPos=( -603.44, 512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 563.94, 1490.67, 1508.19 ) LPos=( 563.94, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 581.19, 1502.52, 1489.36 ) LPos=( 581.19, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1495.26, 1500.89 ) LPos=( 556.06, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 550.31, 1499.46, 1494.23 ) LPos=( 550.31, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 550.31, 1508.65, 1479.63 ) LPos=( 550.31, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 510.81, 1486.07, 1515.49 ) LPos=( 510.81, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 519.44, 1486.07, 1515.49 ) LPos=( 519.44, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 516.56, 1505.59, 1484.50 ) LPos=( 516.56, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 479.94, 1493.73, 1503.33 ) LPos=( 479.94, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 488.56, 1499.46, 1494.23 ) LPos=( 488.56, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 488.56, 1502.52, 1489.36 ) LPos=( 488.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 482.81, 1508.65, 1479.63 ) LPos=( 482.81, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 485.69, 1510.18, 1477.20 ) LPos=( 485.69, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 479.94, 1510.18, 1477.20 ) LPos=( 479.94, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:012,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 451.94, 1508.65, 1479.63 ) LPos=( 451.94, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 444.06, 1490.67, 1508.19 ) LPos=( 444.06, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 438.31, 1499.46, 1494.23 ) LPos=( 438.31, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 438.31, 1505.59, 1484.50 ) LPos=( 438.31, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 423.94, 1505.59, 1484.50 ) LPos=( 423.94, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 401.69, 1495.26, 1500.89 ) LPos=( 401.69, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 395.94, 1492.20, 1505.76 ) LPos=( 395.94, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 407.44, 1507.12, 1482.07 ) LPos=( 407.44, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 395.94, 1502.52, 1489.36 ) LPos=( 395.94, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 367.94, 1486.07, 1515.49 ) LPos=( 367.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 373.69, 1484.54, 1517.92 ) LPos=( 373.69, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 376.56, 1487.60, 1513.06 ) LPos=( 376.56, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 388.06, 1489.14, 1510.62 ) LPos=( 388.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 379.44, 1505.59, 1484.50 ) LPos=( 379.44, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 388.06, 1508.65, 1479.63 ) LPos=( 388.06, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 360.06, 1493.73, 1503.33 ) LPos=( 360.06, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 357.19, 1490.67, 1508.19 ) LPos=( 357.19, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, 1486.07, 1515.49 ) LPos=( 339.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 351.44, 1484.54, 1517.92 ) LPos=( 351.44, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 357.19, 1504.06, 1486.93 ) LPos=( 357.19, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 311.94, 1487.60, 1513.06 ) LPos=( 311.94, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 314.81, 1487.60, 1513.06 ) LPos=( 314.81, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 320.56, 1487.60, 1513.06 ) LPos=( 320.56, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 323.44, 1510.18, 1477.20 ) LPos=( 323.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 286.81, 1495.26, 1500.89 ) LPos=( 286.81, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 301.19, 1495.26, 1500.89 ) LPos=( 301.19, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 301.19, 1487.60, 1513.06 ) LPos=( 301.19, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 270.31, 1507.12, 1482.07 ) LPos=( 270.31, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1510.18, 1477.20 ) LPos=( 267.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 242.31, 1495.26, 1500.89 ) LPos=( 242.31, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 248.06, 1489.14, 1510.62 ) LPos=( 248.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:013,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 242.31, 1502.52, 1489.36 ) LPos=( 242.31, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 202.81, 1484.54, 1517.92 ) LPos=( 202.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 220.06, 1499.46, 1494.23 ) LPos=( 220.06, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 211.44, 1499.46, 1494.23 ) LPos=( 211.44, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, 1502.52, 1489.36 ) LPos=( 217.19, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 214.31, 1505.59, 1484.50 ) LPos=( 214.31, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 180.56, 1495.26, 1500.89 ) LPos=( 180.56, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 192.06, 1492.20, 1505.76 ) LPos=( 192.06, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 180.56, 1487.60, 1513.06 ) LPos=( 180.56, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, 1484.54, 1517.92 ) LPos=( 171.94, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, 1484.54, 1517.92 ) LPos=( 174.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, 1487.60, 1513.06 ) LPos=( 143.94, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, 1492.20, 1505.76 ) LPos=( 152.56, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 164.06, 1489.14, 1510.62 ) LPos=( 164.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 161.19, 1505.59, 1484.50 ) LPos=( 161.19, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 155.44, 1510.18, 1477.20 ) LPos=( 155.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 152.56, 1510.18, 1477.20 ) LPos=( 152.56, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1487.60, 1513.06 ) LPos=( 130.31, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, 1486.07, 1515.49 ) LPos=( 115.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1486.07, 1515.49 ) LPos=( 124.56, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 127.44, 1486.07, 1515.49 ) LPos=( 127.44, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 118.81, 1484.54, 1517.92 ) LPos=( 118.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1489.14, 1510.62 ) LPos=( 90.81, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 105.19, 1493.73, 1503.33 ) LPos=( 105.19, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1500.99, 1491.80 ) LPos=( 105.19, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 99.44, 1510.18, 1477.20 ) LPos=( 99.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1495.26, 1500.89 ) LPos=( 68.56, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, 1487.60, 1513.06 ) LPos=( 74.31, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, 1484.54, 1517.92 ) LPos=( 59.94, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 77.19, 1510.18, 1477.20 ) LPos=( 77.19, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 77.19, 1508.65, 1479.63 ) LPos=( 77.19, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, 1507.12, 1482.07 ) LPos=( 59.94, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 37.69, 1493.73, 1503.33 ) LPos=( 37.69, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, 1499.46, 1494.23 ) LPos=( 40.56, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 40.56, 1502.52, 1489.36 ) LPos=( 40.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1507.12, 1482.07 ) LPos=( 31.94, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 15.44, 1489.14, 1510.62 ) LPos=( 15.44, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, 1486.07, 1515.49 ) LPos=( 18.31, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 21.19, 1484.54, 1517.92 ) LPos=( 21.19, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1500.99, 1491.80 ) LPos=( 18.31, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1504.06, 1486.93 ) LPos=( 12.56, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 12.56, 1502.52, 1489.36 ) LPos=( 12.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1507.12, 1482.07 ) LPos=( 9.69, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, 1510.18, 1477.20 ) LPos=( 6.81, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1508.65, 1479.63 ) LPos=( 6.81, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, 1489.14, 1510.62 ) LPos=( -24.06, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, 1493.73, 1503.33 ) LPos=( -15.44, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1489.14, 1510.62 ) LPos=( -12.56, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -6.81, 1484.54, 1517.92 ) LPos=( -6.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3.94, 1486.07, 1515.49 ) LPos=( -3.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3.94, 1493.73, 1503.33 ) LPos=( -3.94, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, 1495.26, 1500.89 ) LPos=( -99.44, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1489.14, 1510.62 ) LPos=( -99.44, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1486.07, 1515.49 ) LPos=( -87.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -136.06, 1490.67, 1508.19 ) LPos=( -136.06, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1493.73, 1503.33 ) LPos=( -127.44, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -124.56, 1499.46, 1494.23 ) LPos=( -124.56, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, 1495.26, 1500.89 ) LPos=( -164.06, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -161.19, 1493.73, 1503.33 ) LPos=( -161.19, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -155.44, 1492.20, 1505.76 ) LPos=( -155.44, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -158.31, 1489.14, 1510.62 ) LPos=( -158.31, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, 1487.60, 1513.06 ) LPos=( -158.31, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, 1486.07, 1515.49 ) LPos=( -143.94, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -149.69, 1510.18, 1477.20 ) LPos=( -149.69, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, 1505.59, 1484.50 ) LPos=( -155.44, 495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -158.31, 1504.06, 1486.93 ) LPos=( -158.31, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -158.31, 1502.52, 1489.36 ) LPos=( -158.31, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, 1490.67, 1508.19 ) LPos=( -183.44, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -180.56, 1490.67, 1508.19 ) LPos=( -180.56, 467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, 1489.14, 1510.62 ) LPos=( -171.94, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -217.19, 1484.54, 1517.92 ) LPos=( -217.19, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -199.94, 1484.54, 1517.92 ) LPos=( -199.94, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -199.94, 1508.65, 1479.63 ) LPos=( -199.94, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, 1499.46, 1494.23 ) LPos=( -205.69, 484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -208.56, 1502.52, 1489.36 ) LPos=( -208.56, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -211.44, 1504.06, 1486.93 ) LPos=( -211.44, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -220.06, 1507.12, 1482.07 ) LPos=( -220.06, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -233.69, 1493.73, 1503.33 ) LPos=( -233.69, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -233.69, 1502.52, 1489.36 ) LPos=( -233.69, 489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -267.44, 1487.60, 1513.06 ) LPos=( -267.44, 461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -273.19, 1486.07, 1515.49 ) LPos=( -273.19, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -267.44, 1486.07, 1515.49 ) LPos=( -267.44, 459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -258.81, 1484.54, 1517.92 ) LPos=( -258.81, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -258.81, 1508.65, 1479.63 ) LPos=( -258.81, 501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -295.44, 1492.20, 1505.76 ) LPos=( -295.44, 470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -311.94, 1504.06, 1486.93 ) LPos=( -311.94, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -314.81, 1500.99, 1491.80 ) LPos=( -314.81, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -323.44, 1510.18, 1477.20 ) LPos=( -323.44, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -323.44, 1507.12, 1482.07 ) LPos=( -323.44, 498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -342.81, 1500.99, 1491.80 ) LPos=( -342.81, 487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -407.44, 1493.73, 1503.33 ) LPos=( -407.44, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -404.56, 1493.73, 1503.33 ) LPos=( -404.56, 473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:016,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -423.94, 1504.06, 1486.93 ) LPos=( -423.94, 492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -466.31, 1495.26, 1500.89 ) LPos=( -466.31, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -463.44, 1495.26, 1500.89 ) LPos=( -463.44, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -457.69, 1489.14, 1510.62 ) LPos=( -457.69, 464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -572.56, 1510.18, 1477.20 ) LPos=( -572.56, 504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -606.31, 1495.26, 1500.89 ) LPos=( -606.31, 476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:017,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -603.44, 1484.54, 1517.92 ) LPos=( -603.44, 456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 591.94, 1480.08, 1525.01 ) LPos=( 591.94, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 566.81, 1465.16, 1548.70 ) LPos=( 566.81, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 553.19, 1470.88, 1539.61 ) LPos=( 553.19, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 553.19, 1477.01, 1529.88 ) LPos=( 553.19, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 553.19, 1480.08, 1525.01 ) LPos=( 553.19, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 522.31, 1463.62, 1551.14 ) LPos=( 522.31, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 525.19, 1462.09, 1553.57 ) LPos=( 525.19, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 519.44, 1480.08, 1525.01 ) LPos=( 519.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 488.56, 1454.43, 1565.73 ) LPos=( 488.56, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 494.31, 1465.16, 1548.70 ) LPos=( 494.31, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:018,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 469.19, 1455.96, 1563.30 ) LPos=( 469.19, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 423.94, 1460.56, 1556.00 ) LPos=( 423.94, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 395.94, 1462.09, 1553.57 ) LPos=( 395.94, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 407.44, 1477.01, 1529.88 ) LPos=( 407.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 401.69, 1478.54, 1527.44 ) LPos=( 401.69, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 379.44, 1454.43, 1565.73 ) LPos=( 379.44, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, 1465.16, 1548.70 ) LPos=( 382.31, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 385.19, 1457.50, 1560.87 ) LPos=( 385.19, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 388.06, 1454.43, 1565.73 ) LPos=( 388.06, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 388.06, 1457.50, 1560.87 ) LPos=( 388.06, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 367.94, 1475.48, 1532.31 ) LPos=( 367.94, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 370.81, 1477.01, 1529.88 ) LPos=( 370.81, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 345.69, 1457.50, 1560.87 ) LPos=( 345.69, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 360.06, 1480.08, 1525.01 ) LPos=( 360.06, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, 1478.54, 1527.44 ) LPos=( 360.06, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, 1455.96, 1563.30 ) LPos=( 314.81, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, 1460.56, 1556.00 ) LPos=( 320.56, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 314.81, 1472.42, 1537.17 ) LPos=( 314.81, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 286.81, 1463.62, 1551.14 ) LPos=( 286.81, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 304.06, 1459.03, 1558.43 ) LPos=( 304.06, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 304.06, 1473.95, 1534.74 ) LPos=( 304.06, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 267.44, 1463.62, 1551.14 ) LPos=( 267.44, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 270.31, 1462.09, 1553.57 ) LPos=( 270.31, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1455.96, 1563.30 ) LPos=( 273.19, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 255.94, 1470.88, 1539.61 ) LPos=( 255.94, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 258.81, 1477.01, 1529.88 ) LPos=( 258.81, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 270.31, 1478.54, 1527.44 ) LPos=( 270.31, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1480.08, 1525.01 ) LPos=( 267.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 233.69, 1462.09, 1553.57 ) LPos=( 233.69, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:019,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, 1469.35, 1542.04 ) LPos=( 248.06, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 208.56, 1472.42, 1537.17 ) LPos=( 208.56, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, 1478.54, 1527.44 ) LPos=( 211.44, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 192.06, 1463.62, 1551.14 ) LPos=( 192.06, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 171.94, 1455.96, 1563.30 ) LPos=( 171.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 180.56, 1473.95, 1534.74 ) LPos=( 180.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 171.94, 1477.01, 1529.88 ) LPos=( 171.94, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, 1462.09, 1553.57 ) LPos=( 152.56, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 158.31, 1462.09, 1553.57 ) LPos=( 158.31, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 161.19, 1454.43, 1565.73 ) LPos=( 161.19, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 161.19, 1465.16, 1548.70 ) LPos=( 161.19, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 164.06, 1462.09, 1553.57 ) LPos=( 164.06, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 158.31, 1472.42, 1537.17 ) LPos=( 158.31, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, 1463.62, 1551.14 ) LPos=( 127.44, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1462.09, 1553.57 ) LPos=( 136.06, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1460.56, 1556.00 ) LPos=( 124.56, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 133.19, 1455.96, 1563.30 ) LPos=( 133.19, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 136.06, 1470.88, 1539.61 ) LPos=( 136.06, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, 1472.42, 1537.17 ) LPos=( 133.19, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 130.31, 1478.54, 1527.44 ) LPos=( 130.31, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 127.44, 1480.08, 1525.01 ) LPos=( 127.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, 1473.95, 1534.74 ) LPos=( 96.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1477.01, 1529.88 ) LPos=( 102.31, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1465.16, 1548.70 ) LPos=( 80.06, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1477.01, 1529.88 ) LPos=( 80.06, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 74.31, 1470.88, 1539.61 ) LPos=( 74.31, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1477.01, 1529.88 ) LPos=( 71.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 71.44, 1475.48, 1532.31 ) LPos=( 71.44, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 31.94, 1455.96, 1563.30 ) LPos=( 31.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1454.43, 1565.73 ) LPos=( 46.31, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1465.16, 1548.70 ) LPos=( 21.19, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, 1463.62, 1551.14 ) LPos=( 6.81, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, 1457.50, 1560.87 ) LPos=( 15.44, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, 1454.43, 1565.73 ) LPos=( 18.31, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, 1480.08, 1525.01 ) LPos=( 15.44, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1477.01, 1529.88 ) LPos=( 15.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 15.44, 1470.88, 1539.61 ) LPos=( 15.44, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1473.95, 1534.74 ) LPos=( 12.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 12.56, 1470.88, 1539.61 ) LPos=( 12.56, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1472.42, 1537.17 ) LPos=( 9.69, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, 1459.03, 1558.43 ) LPos=( -15.44, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1455.96, 1563.30 ) LPos=( -6.81, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -6.81, 1457.50, 1560.87 ) LPos=( -6.81, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3.94, 1459.03, 1558.43 ) LPos=( -3.94, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1472.42, 1537.17 ) LPos=( -15.44, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1473.95, 1534.74 ) LPos=( -24.06, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, 1460.56, 1556.00 ) LPos=( -43.44, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -49.19, 1459.03, 1558.43 ) LPos=( -49.19, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1455.96, 1563.30 ) LPos=( -31.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -49.19, 1454.43, 1565.73 ) LPos=( -49.19, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -80.06, 1460.56, 1556.00 ) LPos=( -80.06, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -74.31, 1463.62, 1551.14 ) LPos=( -74.31, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, 1455.96, 1563.30 ) LPos=( -68.56, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1459.03, 1558.43 ) LPos=( -68.56, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, 1465.16, 1548.70 ) LPos=( -99.44, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, 1475.48, 1532.31 ) LPos=( -93.69, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1455.96, 1563.30 ) LPos=( -130.31, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -152.56, 1465.16, 1548.70 ) LPos=( -152.56, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, 1463.62, 1551.14 ) LPos=( -149.69, 416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, 1455.96, 1563.30 ) LPos=( -143.94, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, 1470.88, 1539.61 ) LPos=( -152.56, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -161.19, 1480.08, 1525.01 ) LPos=( -161.19, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -161.19, 1477.01, 1529.88 ) LPos=( -161.19, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -192.06, 1460.56, 1556.00 ) LPos=( -192.06, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -171.94, 1469.35, 1542.04 ) LPos=( -171.94, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, 1469.35, 1542.04 ) LPos=( -192.06, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -183.44, 1477.01, 1529.88 ) LPos=( -183.44, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -208.56, 1462.09, 1553.57 ) LPos=( -208.56, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -202.81, 1480.08, 1525.01 ) LPos=( -202.81, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -220.06, 1473.95, 1534.74 ) LPos=( -220.06, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -245.19, 1459.03, 1558.43 ) LPos=( -245.19, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -242.31, 1457.50, 1560.87 ) LPos=( -242.31, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, 1459.03, 1558.43 ) LPos=( -227.94, 408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -248.06, 1469.35, 1542.04 ) LPos=( -248.06, 427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -227.94, 1472.42, 1537.17 ) LPos=( -227.94, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -236.56, 1472.42, 1537.17 ) LPos=( -236.56, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -245.19, 1472.42, 1537.17 ) LPos=( -245.19, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -227.94, 1473.95, 1534.74 ) LPos=( -227.94, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -230.81, 1473.95, 1534.74 ) LPos=( -230.81, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, 1475.48, 1532.31 ) LPos=( -227.94, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -230.81, 1475.48, 1532.31 ) LPos=( -230.81, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -233.69, 1475.48, 1532.31 ) LPos=( -233.69, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -239.44, 1475.48, 1532.31 ) LPos=( -239.44, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -227.94, 1477.01, 1529.88 ) LPos=( -227.94, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -230.81, 1477.01, 1529.88 ) LPos=( -230.81, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -227.94, 1478.54, 1527.44 ) LPos=( -227.94, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -233.69, 1478.54, 1527.44 ) LPos=( -233.69, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, 1478.54, 1527.44 ) LPos=( -236.56, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -242.31, 1480.08, 1525.01 ) LPos=( -242.31, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -255.94, 1457.50, 1560.87 ) LPos=( -255.94, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -255.94, 1470.88, 1539.61 ) LPos=( -255.94, 430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -258.81, 1475.48, 1532.31 ) LPos=( -258.81, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -258.81, 1473.95, 1534.74 ) LPos=( -258.81, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -258.81, 1472.42, 1537.17 ) LPos=( -258.81, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1473.95, 1534.74 ) LPos=( -264.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -267.44, 1473.95, 1534.74 ) LPos=( -267.44, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -270.31, 1480.08, 1525.01 ) LPos=( -270.31, 447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -286.81, 1462.09, 1553.57 ) LPos=( -286.81, 414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -283.94, 1460.56, 1556.00 ) LPos=( -283.94, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -289.69, 1475.48, 1532.31 ) LPos=( -289.69, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -326.31, 1477.01, 1529.88 ) LPos=( -326.31, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -329.19, 1475.48, 1532.31 ) LPos=( -329.19, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -339.94, 1457.50, 1560.87 ) LPos=( -339.94, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -348.56, 1472.42, 1537.17 ) LPos=( -348.56, 433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -379.44, 1465.16, 1548.70 ) LPos=( -379.44, 419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -376.56, 1477.01, 1529.88 ) LPos=( -376.56, 442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1473.95, 1534.74 ) LPos=( -376.56, 436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:022,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -404.56, 1455.96, 1563.30 ) LPos=( -404.56, 402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -556.06, 1460.56, 1556.00 ) LPos=( -556.06, 411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -584.06, 1454.43, 1565.73 ) LPos=( -584.06, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -584.06, 1457.50, 1560.87 ) LPos=( -584.06, 405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -569.69, 1454.43, 1565.73 ) LPos=( -569.69, 399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -575.44, 1475.48, 1532.31 ) LPos=( -575.44, 439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:023,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -569.69, 1478.54, 1527.44 ) LPos=( -569.69, 444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 612.06, 1427.39, 1608.68 ) LPos=( 612.06, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 600.56, 1442.31, 1584.98 ) LPos=( 600.56, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 569.69, 1440.78, 1587.42 ) LPos=( 569.69, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 494.31, 1433.52, 1598.95 ) LPos=( 494.31, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 482.81, 1449.97, 1572.82 ) LPos=( 482.81, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 466.31, 1435.05, 1596.51 ) LPos=( 466.31, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 463.44, 1425.86, 1611.11 ) LPos=( 463.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 460.56, 1424.32, 1613.54 ) LPos=( 460.56, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 426.81, 1427.39, 1608.68 ) LPos=( 426.81, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 404.56, 1427.39, 1608.68 ) LPos=( 404.56, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 416.06, 1424.32, 1613.54 ) LPos=( 416.06, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 398.81, 1446.90, 1577.69 ) LPos=( 398.81, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 376.56, 1427.39, 1608.68 ) LPos=( 376.56, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 379.44, 1433.52, 1598.95 ) LPos=( 379.44, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 382.31, 1431.98, 1601.38 ) LPos=( 382.31, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 382.31, 1433.52, 1598.95 ) LPos=( 382.31, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 385.19, 1435.05, 1596.51 ) LPos=( 385.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 388.06, 1428.92, 1606.24 ) LPos=( 388.06, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 388.06, 1439.24, 1589.85 ) LPos=( 388.06, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 367.94, 1439.24, 1589.85 ) LPos=( 367.94, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 388.06, 1440.78, 1587.42 ) LPos=( 388.06, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 388.06, 1443.84, 1582.55 ) LPos=( 388.06, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 388.06, 1446.90, 1577.69 ) LPos=( 388.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 388.06, 1448.44, 1575.25 ) LPos=( 388.06, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 382.31, 1449.97, 1572.82 ) LPos=( 382.31, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 354.31, 1448.44, 1575.25 ) LPos=( 354.31, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 339.94, 1446.90, 1577.69 ) LPos=( 339.94, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 317.69, 1435.05, 1596.51 ) LPos=( 317.69, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, 1443.84, 1582.55 ) LPos=( 320.56, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 295.44, 1425.86, 1611.11 ) LPos=( 295.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, 1424.32, 1613.54 ) LPos=( 283.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 289.69, 1424.32, 1613.54 ) LPos=( 289.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 304.06, 1448.44, 1575.25 ) LPos=( 304.06, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 292.56, 1449.97, 1572.82 ) LPos=( 292.56, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 258.81, 1425.86, 1611.11 ) LPos=( 258.81, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 267.44, 1425.86, 1611.11 ) LPos=( 267.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 270.31, 1425.86, 1611.11 ) LPos=( 270.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 233.69, 1425.86, 1611.11 ) LPos=( 233.69, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 248.06, 1425.86, 1611.11 ) LPos=( 248.06, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 242.31, 1424.32, 1613.54 ) LPos=( 242.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, 1448.44, 1575.25 ) LPos=( 245.19, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 242.31, 1443.84, 1582.55 ) LPos=( 242.31, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 242.31, 1440.78, 1587.42 ) LPos=( 242.31, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 239.44, 1449.97, 1572.82 ) LPos=( 239.44, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 236.56, 1442.31, 1584.98 ) LPos=( 236.56, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 208.56, 1424.32, 1613.54 ) LPos=( 208.56, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 211.44, 1425.86, 1611.11 ) LPos=( 211.44, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 189.19, 1428.92, 1606.24 ) LPos=( 189.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, 1424.32, 1613.54 ) LPos=( 171.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 189.19, 1424.32, 1613.54 ) LPos=( 189.19, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 143.94, 1430.45, 1603.81 ) LPos=( 143.94, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 158.31, 1425.86, 1611.11 ) LPos=( 158.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, 1428.92, 1606.24 ) LPos=( 158.31, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, 1424.32, 1613.54 ) LPos=( 164.06, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1435.05, 1596.51 ) LPos=( 124.56, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, 1435.05, 1596.51 ) LPos=( 127.44, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 133.19, 1435.05, 1596.51 ) LPos=( 133.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1430.45, 1603.81 ) LPos=( 127.44, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1428.92, 1606.24 ) LPos=( 124.56, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, 1425.86, 1611.11 ) LPos=( 130.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 118.81, 1424.32, 1613.54 ) LPos=( 118.81, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 136.06, 1445.37, 1580.12 ) LPos=( 136.06, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 133.19, 1439.24, 1589.85 ) LPos=( 133.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 118.81, 1440.78, 1587.42 ) LPos=( 118.81, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1445.37, 1580.12 ) LPos=( 115.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 93.69, 1424.32, 1613.54 ) LPos=( 93.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, 1427.39, 1608.68 ) LPos=( 93.69, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1427.39, 1608.68 ) LPos=( 102.31, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 108.06, 1430.45, 1603.81 ) LPos=( 108.06, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1439.24, 1589.85 ) LPos=( 105.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1440.78, 1587.42 ) LPos=( 105.19, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1440.78, 1587.42 ) LPos=( 90.81, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1440.78, 1587.42 ) LPos=( 87.94, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 102.31, 1443.84, 1582.55 ) LPos=( 102.31, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, 1443.84, 1582.55 ) LPos=( 93.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, 1448.44, 1575.25 ) LPos=( 102.31, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 59.94, 1433.52, 1598.95 ) LPos=( 59.94, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 62.81, 1431.98, 1601.38 ) LPos=( 62.81, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1427.39, 1608.68 ) LPos=( 59.94, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, 1424.32, 1613.54 ) LPos=( 65.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 74.31, 1449.97, 1572.82 ) LPos=( 74.31, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, 1439.24, 1589.85 ) LPos=( 68.56, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, 1440.78, 1587.42 ) LPos=( 62.81, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 34.81, 1424.32, 1613.54 ) LPos=( 34.81, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 34.81, 1425.86, 1611.11 ) LPos=( 34.81, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, 1425.86, 1611.11 ) LPos=( 37.69, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, 1425.86, 1611.11 ) LPos=( 40.56, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, 1431.98, 1601.38 ) LPos=( 40.56, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 46.31, 1425.86, 1611.11 ) LPos=( 46.31, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1428.92, 1606.24 ) LPos=( 49.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 49.19, 1433.52, 1598.95 ) LPos=( 49.19, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 52.06, 1428.92, 1606.24 ) LPos=( 52.06, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1439.24, 1589.85 ) LPos=( 49.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 40.56, 1440.78, 1587.42 ) LPos=( 40.56, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 37.69, 1443.84, 1582.55 ) LPos=( 37.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1445.37, 1580.12 ) LPos=( 43.44, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, 1445.37, 1580.12 ) LPos=( 31.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 49.19, 1446.90, 1577.69 ) LPos=( 49.19, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, 1435.05, 1596.51 ) LPos=( 6.81, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1433.52, 1598.95 ) LPos=( 15.44, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1433.52, 1598.95 ) LPos=( 21.19, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, 1431.98, 1601.38 ) LPos=( 6.81, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 6.81, 1424.32, 1613.54 ) LPos=( 6.81, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1448.44, 1575.25 ) LPos=( 24.06, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1445.37, 1580.12 ) LPos=( 21.19, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, 1446.90, 1577.69 ) LPos=( 18.31, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, 1445.37, 1580.12 ) LPos=( 18.31, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3.94, 1445.37, 1580.12 ) LPos=( 3.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, 1442.31, 1584.98 ) LPos=( 3.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -21.19, 1431.98, 1601.38 ) LPos=( -21.19, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1424.32, 1613.54 ) LPos=( -18.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, 1424.32, 1613.54 ) LPos=( -9.69, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1427.39, 1608.68 ) LPos=( -9.69, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, 1449.97, 1572.82 ) LPos=( -21.19, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1449.97, 1572.82 ) LPos=( -24.06, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, 1435.05, 1596.51 ) LPos=( -49.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, 1431.98, 1601.38 ) LPos=( -43.44, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -31.94, 1430.45, 1603.81 ) LPos=( -31.94, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, 1428.92, 1606.24 ) LPos=( -31.94, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, 1427.39, 1608.68 ) LPos=( -37.69, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -49.19, 1424.32, 1613.54 ) LPos=( -49.19, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, 1424.32, 1613.54 ) LPos=( -46.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1448.44, 1575.25 ) LPos=( -31.94, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -40.56, 1445.37, 1580.12 ) LPos=( -40.56, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, 1439.24, 1589.85 ) LPos=( -49.19, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, 1442.31, 1584.98 ) LPos=( -52.06, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1431.98, 1601.38 ) LPos=( -80.06, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -77.19, 1427.39, 1608.68 ) LPos=( -77.19, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -77.19, 1428.92, 1606.24 ) LPos=( -77.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1433.52, 1598.95 ) LPos=( -77.19, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, 1435.05, 1596.51 ) LPos=( -77.19, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, 1435.05, 1596.51 ) LPos=( -74.31, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, 1430.45, 1603.81 ) LPos=( -65.69, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, 1428.92, 1606.24 ) LPos=( -62.81, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -65.69, 1439.24, 1589.85 ) LPos=( -65.69, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, 1442.31, 1584.98 ) LPos=( -65.69, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1443.84, 1582.55 ) LPos=( -62.81, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, 1443.84, 1582.55 ) LPos=( -68.56, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1445.37, 1580.12 ) LPos=( -68.56, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, 1445.37, 1580.12 ) LPos=( -77.19, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -71.44, 1448.44, 1575.25 ) LPos=( -71.44, 388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, 1443.84, 1582.55 ) LPos=( -90.81, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, 1445.37, 1580.12 ) LPos=( -93.69, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, 1440.78, 1587.42 ) LPos=( -93.69, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, 1442.31, 1584.98 ) LPos=( -96.56, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1445.37, 1580.12 ) LPos=( -99.44, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, 1445.37, 1580.12 ) LPos=( -102.31, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -105.19, 1445.37, 1580.12 ) LPos=( -105.19, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, 1446.90, 1577.69 ) LPos=( -108.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1445.37, 1580.12 ) LPos=( -108.06, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1424.32, 1613.54 ) LPos=( -115.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -127.44, 1442.31, 1584.98 ) LPos=( -127.44, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, 1443.84, 1582.55 ) LPos=( -121.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -136.06, 1443.84, 1582.55 ) LPos=( -136.06, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -115.94, 1446.90, 1577.69 ) LPos=( -115.94, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -118.81, 1449.97, 1572.82 ) LPos=( -118.81, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1449.97, 1572.82 ) LPos=( -121.69, 391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, 1435.05, 1596.51 ) LPos=( -155.44, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -161.19, 1428.92, 1606.24 ) LPos=( -161.19, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -164.06, 1425.86, 1611.11 ) LPos=( -164.06, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -143.94, 1446.90, 1577.69 ) LPos=( -143.94, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -143.94, 1442.31, 1584.98 ) LPos=( -143.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, 1445.37, 1580.12 ) LPos=( -149.69, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -177.69, 1433.52, 1598.95 ) LPos=( -177.69, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -171.94, 1435.05, 1596.51 ) LPos=( -171.94, 363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, 1440.78, 1587.42 ) LPos=( -189.19, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -192.06, 1440.78, 1587.42 ) LPos=( -192.06, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:027,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -199.94, 1442.31, 1584.98 ) LPos=( -199.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -245.19, 1425.86, 1611.11 ) LPos=( -245.19, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -230.81, 1446.90, 1577.69 ) LPos=( -230.81, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -270.31, 1424.32, 1613.54 ) LPos=( -270.31, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -264.56, 1424.32, 1613.54 ) LPos=( -264.56, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -304.06, 1431.98, 1601.38 ) LPos=( -304.06, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -298.31, 1430.45, 1603.81 ) LPos=( -298.31, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1424.32, 1613.54 ) LPos=( -283.94, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -304.06, 1443.84, 1582.55 ) LPos=( -304.06, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -342.81, 1428.92, 1606.24 ) LPos=( -342.81, 351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -373.69, 1440.78, 1587.42 ) LPos=( -373.69, 374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -413.19, 1424.32, 1613.54 ) LPos=( -413.19, 343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -401.69, 1433.52, 1598.95 ) LPos=( -401.69, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -401.69, 1443.84, 1582.55 ) LPos=( -401.69, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -413.19, 1443.84, 1582.55 ) LPos=( -413.19, 379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -401.69, 1445.37, 1580.12 ) LPos=( -401.69, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -416.06, 1446.90, 1577.69 ) LPos=( -416.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -472.06, 1430.45, 1603.81 ) LPos=( -472.06, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -472.06, 1431.98, 1601.38 ) LPos=( -472.06, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -466.31, 1427.39, 1608.68 ) LPos=( -466.31, 348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -463.44, 1433.52, 1598.95 ) LPos=( -463.44, 360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -479.94, 1425.86, 1611.11 ) LPos=( -479.94, 346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -479.94, 1445.37, 1580.12 ) LPos=( -479.94, 382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -516.56, 1430.45, 1603.81 ) LPos=( -516.56, 354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -572.56, 1431.98, 1601.38 ) LPos=( -572.56, 357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -569.69, 1439.24, 1589.85 ) LPos=( -569.69, 371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -591.94, 1442.31, 1584.98 ) LPos=( -591.94, 376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -612.06, 1446.90, 1577.69 ) LPos=( -612.06, 385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 609.19, 1409.14, 1637.66 ) LPos=( 609.19, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 591.94, 1412.20, 1632.79 ) LPos=( 591.94, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 597.69, 1419.86, 1620.63 ) LPos=( 597.69, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 500.06, 1401.88, 1649.19 ) LPos=( 500.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 482.81, 1415.27, 1627.93 ) LPos=( 482.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 457.69, 1398.81, 1654.05 ) LPos=( 457.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 457.69, 1395.75, 1658.92 ) LPos=( 457.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 463.44, 1395.75, 1658.92 ) LPos=( 463.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:030,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 463.44, 1419.86, 1620.63 ) LPos=( 463.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 435.44, 1395.75, 1658.92 ) LPos=( 435.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 444.06, 1400.34, 1651.62 ) LPos=( 444.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 416.06, 1400.34, 1651.62 ) LPos=( 416.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 404.56, 1395.75, 1658.92 ) LPos=( 404.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 407.44, 1395.75, 1658.92 ) LPos=( 407.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 395.94, 1410.67, 1635.23 ) LPos=( 395.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 367.94, 1398.81, 1654.05 ) LPos=( 367.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 367.94, 1403.41, 1646.76 ) LPos=( 367.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 376.56, 1404.94, 1644.32 ) LPos=( 376.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 379.44, 1403.41, 1646.76 ) LPos=( 379.44, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 388.06, 1403.41, 1646.76 ) LPos=( 388.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 388.06, 1419.86, 1620.63 ) LPos=( 388.06, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 345.69, 1401.88, 1649.19 ) LPos=( 345.69, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, 1395.75, 1658.92 ) LPos=( 339.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 357.19, 1395.75, 1658.92 ) LPos=( 357.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 339.94, 1394.22, 1661.35 ) LPos=( 339.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 354.31, 1413.73, 1630.36 ) LPos=( 354.31, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 345.69, 1413.73, 1630.36 ) LPos=( 345.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 342.81, 1413.73, 1630.36 ) LPos=( 342.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 339.94, 1413.73, 1630.36 ) LPos=( 339.94, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 314.81, 1403.41, 1646.76 ) LPos=( 314.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 314.81, 1404.94, 1644.32 ) LPos=( 314.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 323.44, 1394.22, 1661.35 ) LPos=( 323.44, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 323.44, 1398.81, 1654.05 ) LPos=( 323.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 326.31, 1395.75, 1658.92 ) LPos=( 326.31, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 326.31, 1403.41, 1646.76 ) LPos=( 326.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 320.56, 1410.67, 1635.23 ) LPos=( 320.56, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, 1412.20, 1632.79 ) LPos=( 317.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 314.81, 1412.20, 1632.79 ) LPos=( 314.81, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 311.94, 1415.27, 1627.93 ) LPos=( 311.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 295.44, 1398.81, 1654.05 ) LPos=( 295.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 298.31, 1398.81, 1654.05 ) LPos=( 298.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, 1397.28, 1656.49 ) LPos=( 289.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 298.31, 1397.28, 1656.49 ) LPos=( 298.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 301.19, 1394.22, 1661.35 ) LPos=( 301.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 304.06, 1419.86, 1620.63 ) LPos=( 304.06, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 301.19, 1415.27, 1627.93 ) LPos=( 301.19, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 301.19, 1410.67, 1635.23 ) LPos=( 301.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 295.44, 1415.27, 1627.93 ) LPos=( 295.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 295.44, 1412.20, 1632.79 ) LPos=( 295.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 289.69, 1413.73, 1630.36 ) LPos=( 289.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 289.69, 1409.14, 1637.66 ) LPos=( 289.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 286.81, 1409.14, 1637.66 ) LPos=( 286.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 273.19, 1397.28, 1656.49 ) LPos=( 273.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 258.81, 1412.20, 1632.79 ) LPos=( 258.81, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1419.86, 1620.63 ) LPos=( 267.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 236.56, 1404.94, 1644.32 ) LPos=( 236.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 245.19, 1404.94, 1644.32 ) LPos=( 245.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 248.06, 1401.88, 1649.19 ) LPos=( 248.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 227.94, 1398.81, 1654.05 ) LPos=( 227.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 227.94, 1394.22, 1661.35 ) LPos=( 227.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 242.31, 1394.22, 1661.35 ) LPos=( 242.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, 1415.27, 1627.93 ) LPos=( 248.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 245.19, 1419.86, 1620.63 ) LPos=( 245.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 239.44, 1415.27, 1627.93 ) LPos=( 239.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 236.56, 1413.73, 1630.36 ) LPos=( 236.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 233.69, 1410.67, 1635.23 ) LPos=( 233.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 199.94, 1397.28, 1656.49 ) LPos=( 199.94, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 199.94, 1400.34, 1651.62 ) LPos=( 199.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1404.94, 1644.32 ) LPos=( 199.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 214.31, 1400.34, 1651.62 ) LPos=( 214.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 217.19, 1398.81, 1654.05 ) LPos=( 217.19, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 217.19, 1403.41, 1646.76 ) LPos=( 217.19, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 220.06, 1398.81, 1654.05 ) LPos=( 220.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 220.06, 1403.41, 1646.76 ) LPos=( 220.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 211.44, 1413.73, 1630.36 ) LPos=( 211.44, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 208.56, 1415.27, 1627.93 ) LPos=( 208.56, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 205.69, 1415.27, 1627.93 ) LPos=( 205.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 214.31, 1416.80, 1625.50 ) LPos=( 214.31, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, 1418.33, 1623.06 ) LPos=( 211.44, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 217.19, 1419.86, 1620.63 ) LPos=( 217.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, 1404.94, 1644.32 ) LPos=( 171.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 180.56, 1404.94, 1644.32 ) LPos=( 180.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, 1400.34, 1651.62 ) LPos=( 177.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 180.56, 1400.34, 1651.62 ) LPos=( 180.56, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1398.81, 1654.05 ) LPos=( 180.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 183.44, 1398.81, 1654.05 ) LPos=( 183.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 174.81, 1397.28, 1656.49 ) LPos=( 174.81, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1397.28, 1656.49 ) LPos=( 177.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 180.56, 1397.28, 1656.49 ) LPos=( 180.56, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 186.31, 1397.28, 1656.49 ) LPos=( 186.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 171.94, 1395.75, 1658.92 ) LPos=( 171.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, 1395.75, 1658.92 ) LPos=( 174.81, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, 1394.22, 1661.35 ) LPos=( 174.81, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, 1394.22, 1661.35 ) LPos=( 177.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 186.31, 1394.22, 1661.35 ) LPos=( 186.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 192.06, 1394.22, 1661.35 ) LPos=( 192.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 180.56, 1409.14, 1637.66 ) LPos=( 180.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 177.69, 1413.73, 1630.36 ) LPos=( 177.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 177.69, 1410.67, 1635.23 ) LPos=( 177.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 174.81, 1413.73, 1630.36 ) LPos=( 174.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 174.81, 1409.14, 1637.66 ) LPos=( 174.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, 1412.20, 1632.79 ) LPos=( 171.94, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, 1404.94, 1644.32 ) LPos=( 143.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 146.81, 1404.94, 1644.32 ) LPos=( 146.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 149.69, 1404.94, 1644.32 ) LPos=( 149.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, 1394.22, 1661.35 ) LPos=( 152.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 152.56, 1395.75, 1658.92 ) LPos=( 152.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, 1395.75, 1658.92 ) LPos=( 155.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, 1400.34, 1651.62 ) LPos=( 155.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 158.31, 1400.34, 1651.62 ) LPos=( 158.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 158.31, 1403.41, 1646.76 ) LPos=( 158.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1395.75, 1658.92 ) LPos=( 161.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 161.19, 1401.88, 1649.19 ) LPos=( 161.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 164.06, 1395.75, 1658.92 ) LPos=( 164.06, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 164.06, 1404.94, 1644.32 ) LPos=( 164.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 164.06, 1409.14, 1637.66 ) LPos=( 164.06, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1409.14, 1637.66 ) LPos=( 152.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, 1409.14, 1637.66 ) LPos=( 149.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, 1409.14, 1637.66 ) LPos=( 143.94, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 164.06, 1410.67, 1635.23 ) LPos=( 164.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 155.44, 1410.67, 1635.23 ) LPos=( 155.44, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1410.67, 1635.23 ) LPos=( 149.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 152.56, 1412.20, 1632.79 ) LPos=( 152.56, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, 1413.73, 1630.36 ) LPos=( 161.19, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1418.33, 1623.06 ) LPos=( 161.19, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 146.81, 1419.86, 1620.63 ) LPos=( 146.81, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, 1404.94, 1644.32 ) LPos=( 118.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 121.69, 1404.94, 1644.32 ) LPos=( 121.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1403.41, 1646.76 ) LPos=( 118.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, 1401.88, 1649.19 ) LPos=( 124.56, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1401.88, 1649.19 ) LPos=( 136.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, 1400.34, 1651.62 ) LPos=( 118.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1395.75, 1658.92 ) LPos=( 124.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1394.22, 1661.35 ) LPos=( 115.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 133.19, 1415.27, 1627.93 ) LPos=( 133.19, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 133.19, 1409.14, 1637.66 ) LPos=( 133.19, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 130.31, 1419.86, 1620.63 ) LPos=( 130.31, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 127.44, 1416.80, 1625.50 ) LPos=( 127.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, 1413.73, 1630.36 ) LPos=( 124.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, 1409.14, 1637.66 ) LPos=( 124.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 121.69, 1410.67, 1635.23 ) LPos=( 121.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 118.81, 1415.27, 1627.93 ) LPos=( 118.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1413.73, 1630.36 ) LPos=( 118.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1415.27, 1627.93 ) LPos=( 115.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, 1410.67, 1635.23 ) LPos=( 115.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1401.88, 1649.19 ) LPos=( 87.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1404.94, 1644.32 ) LPos=( 87.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1398.81, 1654.05 ) LPos=( 90.81, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1403.41, 1646.76 ) LPos=( 90.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 90.81, 1404.94, 1644.32 ) LPos=( 90.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 93.69, 1395.75, 1658.92 ) LPos=( 93.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, 1404.94, 1644.32 ) LPos=( 93.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 96.56, 1395.75, 1658.92 ) LPos=( 96.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, 1400.34, 1651.62 ) LPos=( 96.56, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 96.56, 1404.94, 1644.32 ) LPos=( 96.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1397.28, 1656.49 ) LPos=( 99.44, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, 1400.34, 1651.62 ) LPos=( 99.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 102.31, 1395.75, 1658.92 ) LPos=( 102.31, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1397.28, 1656.49 ) LPos=( 102.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, 1398.81, 1654.05 ) LPos=( 102.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, 1400.34, 1651.62 ) LPos=( 102.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, 1400.34, 1651.62 ) LPos=( 105.19, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 105.19, 1401.88, 1649.19 ) LPos=( 105.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1394.22, 1661.35 ) LPos=( 108.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 108.06, 1398.81, 1654.05 ) LPos=( 108.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, 1403.41, 1646.76 ) LPos=( 108.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 108.06, 1404.94, 1644.32 ) LPos=( 108.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 96.56, 1409.14, 1637.66 ) LPos=( 96.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1409.14, 1637.66 ) LPos=( 93.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, 1409.14, 1637.66 ) LPos=( 90.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 108.06, 1410.67, 1635.23 ) LPos=( 108.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1410.67, 1635.23 ) LPos=( 105.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1410.67, 1635.23 ) LPos=( 102.31, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, 1410.67, 1635.23 ) LPos=( 96.56, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1410.67, 1635.23 ) LPos=( 90.81, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1410.67, 1635.23 ) LPos=( 87.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, 1412.20, 1632.79 ) LPos=( 93.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, 1413.73, 1630.36 ) LPos=( 93.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1413.73, 1630.36 ) LPos=( 90.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 87.94, 1415.27, 1627.93 ) LPos=( 87.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 96.56, 1416.80, 1625.50 ) LPos=( 96.56, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 93.69, 1416.80, 1625.50 ) LPos=( 93.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 99.44, 1418.33, 1623.06 ) LPos=( 99.44, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 87.94, 1418.33, 1623.06 ) LPos=( 87.94, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, 1419.86, 1620.63 ) LPos=( 93.69, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, 1419.86, 1620.63 ) LPos=( 90.81, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, 1404.94, 1644.32 ) LPos=( 62.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 65.69, 1404.94, 1644.32 ) LPos=( 65.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1404.94, 1644.32 ) LPos=( 68.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 59.94, 1403.41, 1646.76 ) LPos=( 59.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, 1403.41, 1646.76 ) LPos=( 71.44, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 65.69, 1401.88, 1649.19 ) LPos=( 65.69, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1401.88, 1649.19 ) LPos=( 71.44, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, 1401.88, 1649.19 ) LPos=( 74.31, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 59.94, 1400.34, 1651.62 ) LPos=( 59.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, 1400.34, 1651.62 ) LPos=( 62.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1400.34, 1651.62 ) LPos=( 71.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1400.34, 1651.62 ) LPos=( 74.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 62.81, 1398.81, 1654.05 ) LPos=( 62.81, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, 1398.81, 1654.05 ) LPos=( 65.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1398.81, 1654.05 ) LPos=( 68.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, 1398.81, 1654.05 ) LPos=( 71.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1397.28, 1656.49 ) LPos=( 65.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1397.28, 1656.49 ) LPos=( 77.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, 1395.75, 1658.92 ) LPos=( 65.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, 1394.22, 1661.35 ) LPos=( 62.81, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 77.19, 1394.22, 1661.35 ) LPos=( 77.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1416.80, 1625.50 ) LPos=( 80.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, 1410.67, 1635.23 ) LPos=( 80.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 77.19, 1419.86, 1620.63 ) LPos=( 77.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, 1413.73, 1630.36 ) LPos=( 77.19, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, 1416.80, 1625.50 ) LPos=( 74.31, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, 1419.86, 1620.63 ) LPos=( 71.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1416.80, 1625.50 ) LPos=( 71.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 71.44, 1415.27, 1627.93 ) LPos=( 71.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 68.56, 1419.86, 1620.63 ) LPos=( 68.56, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, 1419.86, 1620.63 ) LPos=( 65.69, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, 1415.27, 1627.93 ) LPos=( 62.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 59.94, 1409.14, 1637.66 ) LPos=( 59.94, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 31.94, 1401.88, 1649.19 ) LPos=( 31.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 40.56, 1394.22, 1661.35 ) LPos=( 40.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, 1395.75, 1658.92 ) LPos=( 40.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 40.56, 1404.94, 1644.32 ) LPos=( 40.56, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, 1395.75, 1658.92 ) LPos=( 43.44, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 43.44, 1397.28, 1656.49 ) LPos=( 43.44, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 43.44, 1404.94, 1644.32 ) LPos=( 43.44, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1394.22, 1661.35 ) LPos=( 46.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, 1398.81, 1654.05 ) LPos=( 46.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1397.28, 1656.49 ) LPos=( 49.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1404.94, 1644.32 ) LPos=( 49.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1394.22, 1661.35 ) LPos=( 52.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, 1400.34, 1651.62 ) LPos=( 52.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1409.14, 1637.66 ) LPos=( 49.19, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, 1410.67, 1635.23 ) LPos=( 43.44, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1412.20, 1632.79 ) LPos=( 43.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 46.31, 1413.73, 1630.36 ) LPos=( 46.31, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 37.69, 1413.73, 1630.36 ) LPos=( 37.69, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, 1413.73, 1630.36 ) LPos=( 34.81, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1415.27, 1627.93 ) LPos=( 52.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1415.27, 1627.93 ) LPos=( 46.31, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1415.27, 1627.93 ) LPos=( 43.44, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1416.80, 1625.50 ) LPos=( 43.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1418.33, 1623.06 ) LPos=( 37.69, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, 1418.33, 1623.06 ) LPos=( 34.81, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, 1403.41, 1646.76 ) LPos=( 3.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, 1403.41, 1646.76 ) LPos=( 9.69, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 12.56, 1403.41, 1646.76 ) LPos=( 12.56, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1403.41, 1646.76 ) LPos=( 15.44, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, 1403.41, 1646.76 ) LPos=( 18.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1401.88, 1649.19 ) LPos=( 3.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, 1401.88, 1649.19 ) LPos=( 6.81, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, 1401.88, 1649.19 ) LPos=( 15.44, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, 1401.88, 1649.19 ) LPos=( 21.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3.94, 1400.34, 1651.62 ) LPos=( 3.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 6.81, 1400.34, 1651.62 ) LPos=( 6.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1400.34, 1651.62 ) LPos=( 15.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, 1398.81, 1654.05 ) LPos=( 3.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, 1398.81, 1654.05 ) LPos=( 6.81, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1398.81, 1654.05 ) LPos=( 12.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3.94, 1397.28, 1656.49 ) LPos=( 3.94, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, 1397.28, 1656.49 ) LPos=( 6.81, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1397.28, 1656.49 ) LPos=( 12.56, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1395.75, 1658.92 ) LPos=( 21.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 24.06, 1394.22, 1661.35 ) LPos=( 24.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1412.20, 1632.79 ) LPos=( 21.19, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1410.67, 1635.23 ) LPos=( 21.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, 1416.80, 1625.50 ) LPos=( 18.31, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1394.22, 1661.35 ) LPos=( -18.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -18.31, 1400.34, 1651.62 ) LPos=( -18.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1401.88, 1649.19 ) LPos=( -18.31, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1400.34, 1651.62 ) LPos=( -9.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -6.81, 1400.34, 1651.62 ) LPos=( -6.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, 1400.34, 1651.62 ) LPos=( -3.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -6.81, 1409.14, 1637.66 ) LPos=( -6.81, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, 1409.14, 1637.66 ) LPos=( -9.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, 1410.67, 1635.23 ) LPos=( -6.81, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1410.67, 1635.23 ) LPos=( -9.69, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, 1410.67, 1635.23 ) LPos=( -24.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1412.20, 1632.79 ) LPos=( -15.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, 1412.20, 1632.79 ) LPos=( -24.06, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1413.73, 1630.36 ) LPos=( -12.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, 1413.73, 1630.36 ) LPos=( -15.44, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1415.27, 1627.93 ) LPos=( -24.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1416.80, 1625.50 ) LPos=( -9.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, 1419.86, 1620.63 ) LPos=( -21.19, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1419.86, 1620.63 ) LPos=( -24.06, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1398.81, 1654.05 ) LPos=( -52.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, 1398.81, 1654.05 ) LPos=( -46.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, 1397.28, 1656.49 ) LPos=( -46.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -52.06, 1395.75, 1658.92 ) LPos=( -52.06, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1395.75, 1658.92 ) LPos=( -31.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, 1394.22, 1661.35 ) LPos=( -43.44, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, 1394.22, 1661.35 ) LPos=( -40.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, 1416.80, 1625.50 ) LPos=( -31.94, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, 1412.20, 1632.79 ) LPos=( -31.94, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1412.20, 1632.79 ) LPos=( -34.81, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -37.69, 1416.80, 1625.50 ) LPos=( -37.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -37.69, 1415.27, 1627.93 ) LPos=( -37.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, 1419.86, 1620.63 ) LPos=( -43.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, 1413.73, 1630.36 ) LPos=( -43.44, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, 1412.20, 1632.79 ) LPos=( -43.44, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1412.20, 1632.79 ) LPos=( -46.31, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -46.31, 1410.67, 1635.23 ) LPos=( -46.31, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, 1418.33, 1623.06 ) LPos=( -52.06, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -52.06, 1416.80, 1625.50 ) LPos=( -52.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, 1412.20, 1632.79 ) LPos=( -52.06, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, 1394.22, 1661.35 ) LPos=( -80.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -80.06, 1397.28, 1656.49 ) LPos=( -80.06, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -80.06, 1398.81, 1654.05 ) LPos=( -80.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -77.19, 1394.22, 1661.35 ) LPos=( -77.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, 1401.88, 1649.19 ) LPos=( -77.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1403.41, 1646.76 ) LPos=( -77.19, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, 1404.94, 1644.32 ) LPos=( -77.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, 1394.22, 1661.35 ) LPos=( -68.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -65.69, 1394.22, 1661.35 ) LPos=( -65.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, 1395.75, 1658.92 ) LPos=( -65.69, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, 1397.28, 1656.49 ) LPos=( -65.69, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, 1401.88, 1649.19 ) LPos=( -65.69, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, 1395.75, 1658.92 ) LPos=( -62.81, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, 1400.34, 1651.62 ) LPos=( -62.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -62.81, 1401.88, 1649.19 ) LPos=( -62.81, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -59.94, 1394.22, 1661.35 ) LPos=( -59.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -59.94, 1397.28, 1656.49 ) LPos=( -59.94, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1398.81, 1654.05 ) LPos=( -59.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -59.94, 1401.88, 1649.19 ) LPos=( -59.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, 1409.14, 1637.66 ) LPos=( -71.44, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, 1409.14, 1637.66 ) LPos=( -74.31, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, 1409.14, 1637.66 ) LPos=( -80.06, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1410.67, 1635.23 ) LPos=( -68.56, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, 1410.67, 1635.23 ) LPos=( -74.31, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1410.67, 1635.23 ) LPos=( -77.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -68.56, 1412.20, 1632.79 ) LPos=( -68.56, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, 1412.20, 1632.79 ) LPos=( -74.31, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, 1413.73, 1630.36 ) LPos=( -68.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, 1415.27, 1627.93 ) LPos=( -65.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, 1415.27, 1627.93 ) LPos=( -77.19, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -59.94, 1418.33, 1623.06 ) LPos=( -59.94, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -108.06, 1404.94, 1644.32 ) LPos=( -108.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -105.19, 1404.94, 1644.32 ) LPos=( -105.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -93.69, 1404.94, 1644.32 ) LPos=( -93.69, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1403.41, 1646.76 ) LPos=( -90.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, 1400.34, 1651.62 ) LPos=( -93.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, 1400.34, 1651.62 ) LPos=( -90.81, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -87.94, 1400.34, 1651.62 ) LPos=( -87.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1398.81, 1654.05 ) LPos=( -99.44, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, 1397.28, 1656.49 ) LPos=( -108.06, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -105.19, 1397.28, 1656.49 ) LPos=( -105.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1394.22, 1661.35 ) LPos=( -93.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, 1412.20, 1632.79 ) LPos=( -93.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, 1412.20, 1632.79 ) LPos=( -108.06, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -136.06, 1400.34, 1651.62 ) LPos=( -136.06, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -136.06, 1401.88, 1649.19 ) LPos=( -136.06, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, 1401.88, 1649.19 ) LPos=( -133.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1403.41, 1646.76 ) LPos=( -130.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -124.56, 1403.41, 1646.76 ) LPos=( -124.56, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, 1395.75, 1658.92 ) LPos=( -118.81, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, 1418.33, 1623.06 ) LPos=( -118.81, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -127.44, 1418.33, 1623.06 ) LPos=( -127.44, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, 1419.86, 1620.63 ) LPos=( -124.56, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -161.19, 1400.34, 1651.62 ) LPos=( -161.19, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, 1398.81, 1654.05 ) LPos=( -164.06, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -149.69, 1398.81, 1654.05 ) LPos=( -149.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -161.19, 1397.28, 1656.49 ) LPos=( -161.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, 1397.28, 1656.49 ) LPos=( -158.31, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, 1394.22, 1661.35 ) LPos=( -164.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -158.31, 1394.22, 1661.35 ) LPos=( -158.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -161.19, 1418.33, 1623.06 ) LPos=( -161.19, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -164.06, 1410.67, 1635.23 ) LPos=( -164.06, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, 1404.94, 1644.32 ) LPos=( -192.06, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, 1401.88, 1649.19 ) LPos=( -186.31, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, 1403.41, 1646.76 ) LPos=( -186.31, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -180.56, 1401.88, 1649.19 ) LPos=( -180.56, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -177.69, 1400.34, 1651.62 ) LPos=( -177.69, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, 1398.81, 1654.05 ) LPos=( -171.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, 1401.88, 1649.19 ) LPos=( -171.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, 1415.27, 1627.93 ) LPos=( -192.06, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -192.06, 1416.80, 1625.50 ) LPos=( -192.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, 1404.94, 1644.32 ) LPos=( -214.31, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -202.81, 1404.94, 1644.32 ) LPos=( -202.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -199.94, 1404.94, 1644.32 ) LPos=( -199.94, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -214.31, 1398.81, 1654.05 ) LPos=( -214.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -199.94, 1415.27, 1627.93 ) LPos=( -199.94, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -205.69, 1416.80, 1625.50 ) LPos=( -205.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -205.69, 1415.27, 1627.93 ) LPos=( -205.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, 1412.20, 1632.79 ) LPos=( -205.69, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -211.44, 1416.80, 1625.50 ) LPos=( -211.44, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -230.81, 1401.88, 1649.19 ) LPos=( -230.81, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -230.81, 1404.94, 1644.32 ) LPos=( -230.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -227.94, 1403.41, 1646.76 ) LPos=( -227.94, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -230.81, 1415.27, 1627.93 ) LPos=( -230.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -242.31, 1415.27, 1627.93 ) LPos=( -242.31, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -227.94, 1416.80, 1625.50 ) LPos=( -227.94, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -233.69, 1416.80, 1625.50 ) LPos=( -233.69, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, 1418.33, 1623.06 ) LPos=( -245.19, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -258.81, 1403.41, 1646.76 ) LPos=( -258.81, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -267.44, 1401.88, 1649.19 ) LPos=( -267.44, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -264.56, 1398.81, 1654.05 ) LPos=( -264.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -261.69, 1398.81, 1654.05 ) LPos=( -261.69, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -273.19, 1395.75, 1658.92 ) LPos=( -273.19, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -264.56, 1395.75, 1658.92 ) LPos=( -264.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -264.56, 1394.22, 1661.35 ) LPos=( -264.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -258.81, 1418.33, 1623.06 ) LPos=( -258.81, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -261.69, 1409.14, 1637.66 ) LPos=( -261.69, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1413.73, 1630.36 ) LPos=( -264.56, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -264.56, 1409.14, 1637.66 ) LPos=( -264.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -270.31, 1409.14, 1637.66 ) LPos=( -270.31, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -273.19, 1410.67, 1635.23 ) LPos=( -273.19, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -276.06, 1413.73, 1630.36 ) LPos=( -276.06, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -295.44, 1400.34, 1651.62 ) LPos=( -295.44, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -292.56, 1395.75, 1658.92 ) LPos=( -292.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -286.81, 1394.22, 1661.35 ) LPos=( -286.81, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1394.22, 1661.35 ) LPos=( -283.94, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -283.94, 1400.34, 1651.62 ) LPos=( -283.94, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -283.94, 1401.88, 1649.19 ) LPos=( -283.94, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -304.06, 1413.73, 1630.36 ) LPos=( -304.06, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -292.56, 1416.80, 1625.50 ) LPos=( -292.56, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -329.19, 1394.22, 1661.35 ) LPos=( -329.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -314.81, 1415.27, 1627.93 ) LPos=( -314.81, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -329.19, 1413.73, 1630.36 ) LPos=( -329.19, 323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -360.06, 1403.41, 1646.76 ) LPos=( -360.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -354.31, 1404.94, 1644.32 ) LPos=( -354.31, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -348.56, 1395.75, 1658.92 ) LPos=( -348.56, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -342.81, 1419.86, 1620.63 ) LPos=( -342.81, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -376.56, 1401.88, 1649.19 ) LPos=( -376.56, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -388.06, 1395.75, 1658.92 ) LPos=( -388.06, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -382.31, 1394.22, 1661.35 ) LPos=( -382.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -373.69, 1394.22, 1661.35 ) LPos=( -373.69, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -416.06, 1394.22, 1661.35 ) LPos=( -416.06, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -413.19, 1404.94, 1644.32 ) LPos=( -413.19, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -395.94, 1410.67, 1635.23 ) LPos=( -395.94, 317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -404.56, 1416.80, 1625.50 ) LPos=( -404.56, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -426.81, 1404.94, 1644.32 ) LPos=( -426.81, 306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -444.06, 1403.41, 1646.76 ) LPos=( -444.06, 303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -441.19, 1401.88, 1649.19 ) LPos=( -441.19, 301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -438.31, 1400.34, 1651.62 ) LPos=( -438.31, 298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -432.56, 1398.81, 1654.05 ) LPos=( -432.56, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -441.19, 1397.28, 1656.49 ) LPos=( -441.19, 292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -423.94, 1395.75, 1658.92 ) LPos=( -423.94, 289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -441.19, 1394.22, 1661.35 ) LPos=( -441.19, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -429.69, 1415.27, 1627.93 ) LPos=( -429.69, 326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -444.06, 1416.80, 1625.50 ) LPos=( -444.06, 329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -497.19, 1398.81, 1654.05 ) LPos=( -497.19, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -488.56, 1418.33, 1623.06 ) LPos=( -488.56, 331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -491.44, 1419.86, 1620.63 ) LPos=( -491.44, 334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -550.31, 1398.81, 1654.05 ) LPos=( -550.31, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -550.31, 1394.22, 1661.35 ) LPos=( -550.31, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -544.56, 1394.22, 1661.35 ) LPos=( -544.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -563.94, 1398.81, 1654.05 ) LPos=( -563.94, 295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -572.56, 1409.14, 1637.66 ) LPos=( -572.56, 314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -600.56, 1394.22, 1661.35 ) LPos=( -600.56, 286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:035,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -600.56, 1412.20, 1632.79 ) LPos=( -600.56, 320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 569.69, 1383.63, 1678.17 ) LPos=( 569.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 535.94, 1371.77, 1697.00 ) LPos=( 535.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 510.81, 1365.64, 1706.73 ) LPos=( 510.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 513.69, 1364.11, 1709.16 ) LPos=( 513.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 519.44, 1364.11, 1709.16 ) LPos=( 519.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 522.31, 1383.63, 1678.17 ) LPos=( 522.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 513.69, 1388.22, 1670.87 ) LPos=( 513.69, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 485.69, 1374.83, 1692.13 ) LPos=( 485.69, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 488.56, 1364.11, 1709.16 ) LPos=( 488.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 497.19, 1367.17, 1704.30 ) LPos=( 497.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 472.06, 1370.24, 1699.43 ) LPos=( 472.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 457.69, 1368.70, 1701.86 ) LPos=( 457.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 466.31, 1379.03, 1685.47 ) LPos=( 466.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 454.81, 1386.69, 1673.31 ) LPos=( 454.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 426.81, 1364.11, 1709.16 ) LPos=( 426.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 444.06, 1374.83, 1692.13 ) LPos=( 444.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 438.31, 1388.22, 1670.87 ) LPos=( 438.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 395.94, 1374.83, 1692.13 ) LPos=( 395.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 410.31, 1374.83, 1692.13 ) LPos=( 410.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 398.81, 1371.77, 1697.00 ) LPos=( 398.81, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 398.81, 1370.24, 1699.43 ) LPos=( 398.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 401.69, 1370.24, 1699.43 ) LPos=( 401.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 404.56, 1365.64, 1706.73 ) LPos=( 404.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 395.94, 1386.69, 1673.31 ) LPos=( 395.94, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 388.06, 1365.64, 1706.73 ) LPos=( 388.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 388.06, 1380.56, 1683.04 ) LPos=( 388.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 385.19, 1385.16, 1675.74 ) LPos=( 385.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 382.31, 1385.16, 1675.74 ) LPos=( 382.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 342.81, 1374.83, 1692.13 ) LPos=( 342.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 348.56, 1365.64, 1706.73 ) LPos=( 348.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, 1388.22, 1670.87 ) LPos=( 360.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 360.06, 1385.16, 1675.74 ) LPos=( 360.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 348.56, 1389.75, 1668.44 ) LPos=( 348.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 339.94, 1386.69, 1673.31 ) LPos=( 339.94, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 339.94, 1382.09, 1680.60 ) LPos=( 339.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 326.31, 1368.70, 1701.86 ) LPos=( 326.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 326.31, 1373.30, 1694.57 ) LPos=( 326.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 329.19, 1373.30, 1694.57 ) LPos=( 329.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 311.94, 1379.03, 1685.47 ) LPos=( 311.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 332.06, 1380.56, 1683.04 ) LPos=( 332.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, 1382.09, 1680.60 ) LPos=( 317.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 289.69, 1371.77, 1697.00 ) LPos=( 289.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 283.94, 1370.24, 1699.43 ) LPos=( 283.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 289.69, 1370.24, 1699.43 ) LPos=( 289.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, 1379.03, 1685.47 ) LPos=( 304.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 301.19, 1383.63, 1678.17 ) LPos=( 301.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 292.56, 1383.63, 1678.17 ) LPos=( 292.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 286.81, 1379.03, 1685.47 ) LPos=( 286.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, 1370.24, 1699.43 ) LPos=( 261.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 264.56, 1367.17, 1704.30 ) LPos=( 264.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 276.06, 1365.64, 1706.73 ) LPos=( 276.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 261.69, 1379.03, 1685.47 ) LPos=( 261.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 258.81, 1380.56, 1683.04 ) LPos=( 258.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 276.06, 1382.09, 1680.60 ) LPos=( 276.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 270.31, 1382.09, 1680.60 ) LPos=( 270.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 267.44, 1383.63, 1678.17 ) LPos=( 267.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 261.69, 1383.63, 1678.17 ) LPos=( 261.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 255.94, 1388.22, 1670.87 ) LPos=( 255.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 258.81, 1389.75, 1668.44 ) LPos=( 258.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, 1373.30, 1694.57 ) LPos=( 233.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 227.94, 1370.24, 1699.43 ) LPos=( 227.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 236.56, 1368.70, 1701.86 ) LPos=( 236.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 233.69, 1364.11, 1709.16 ) LPos=( 233.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 248.06, 1386.69, 1673.31 ) LPos=( 248.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 248.06, 1382.09, 1680.60 ) LPos=( 248.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 245.19, 1386.69, 1673.31 ) LPos=( 245.19, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 242.31, 1389.75, 1668.44 ) LPos=( 242.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 236.56, 1389.75, 1668.44 ) LPos=( 236.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 236.56, 1386.69, 1673.31 ) LPos=( 236.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, 1388.22, 1670.87 ) LPos=( 227.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, 1364.11, 1709.16 ) LPos=( 199.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 199.94, 1365.64, 1706.73 ) LPos=( 199.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 199.94, 1368.70, 1701.86 ) LPos=( 199.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1374.83, 1692.13 ) LPos=( 199.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 202.81, 1368.70, 1701.86 ) LPos=( 202.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 205.69, 1364.11, 1709.16 ) LPos=( 205.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 208.56, 1367.17, 1704.30 ) LPos=( 208.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 214.31, 1373.30, 1694.57 ) LPos=( 214.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 217.19, 1367.17, 1704.30 ) LPos=( 217.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 217.19, 1370.24, 1699.43 ) LPos=( 217.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, 1371.77, 1697.00 ) LPos=( 220.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1379.03, 1685.47 ) LPos=( 199.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 220.06, 1380.56, 1683.04 ) LPos=( 220.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 208.56, 1386.69, 1673.31 ) LPos=( 208.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 199.94, 1388.22, 1670.87 ) LPos=( 199.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 174.81, 1374.83, 1692.13 ) LPos=( 174.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 171.94, 1371.77, 1697.00 ) LPos=( 171.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 174.81, 1367.17, 1704.30 ) LPos=( 174.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 186.31, 1367.17, 1704.30 ) LPos=( 186.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 192.06, 1389.75, 1668.44 ) LPos=( 192.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 192.06, 1386.69, 1673.31 ) LPos=( 192.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 192.06, 1382.09, 1680.60 ) LPos=( 192.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, 1379.03, 1685.47 ) LPos=( 192.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 189.19, 1388.22, 1670.87 ) LPos=( 189.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 189.19, 1386.69, 1673.31 ) LPos=( 189.19, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, 1383.63, 1678.17 ) LPos=( 189.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 189.19, 1382.09, 1680.60 ) LPos=( 189.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 186.31, 1388.22, 1670.87 ) LPos=( 186.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, 1382.09, 1680.60 ) LPos=( 186.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 186.31, 1379.03, 1685.47 ) LPos=( 186.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, 1389.75, 1668.44 ) LPos=( 183.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, 1388.22, 1670.87 ) LPos=( 183.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 180.56, 1388.22, 1670.87 ) LPos=( 180.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1385.16, 1675.74 ) LPos=( 180.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 180.56, 1383.63, 1678.17 ) LPos=( 180.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 180.56, 1380.56, 1683.04 ) LPos=( 180.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 174.81, 1389.75, 1668.44 ) LPos=( 174.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 174.81, 1386.69, 1673.31 ) LPos=( 174.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 174.81, 1380.56, 1683.04 ) LPos=( 174.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, 1367.17, 1704.30 ) LPos=( 143.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, 1368.70, 1701.86 ) LPos=( 143.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 149.69, 1365.64, 1706.73 ) LPos=( 149.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 155.44, 1364.11, 1709.16 ) LPos=( 155.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 158.31, 1364.11, 1709.16 ) LPos=( 158.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, 1367.17, 1704.30 ) LPos=( 158.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1365.64, 1706.73 ) LPos=( 161.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 164.06, 1367.17, 1704.30 ) LPos=( 164.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1379.03, 1685.47 ) LPos=( 152.56, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 143.94, 1380.56, 1683.04 ) LPos=( 143.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, 1386.69, 1673.31 ) LPos=( 158.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 143.94, 1389.75, 1668.44 ) LPos=( 143.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 115.94, 1374.83, 1692.13 ) LPos=( 115.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, 1374.83, 1692.13 ) LPos=( 127.44, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1373.30, 1694.57 ) LPos=( 118.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 121.69, 1373.30, 1694.57 ) LPos=( 121.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, 1373.30, 1694.57 ) LPos=( 130.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, 1373.30, 1694.57 ) LPos=( 133.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 115.94, 1371.77, 1697.00 ) LPos=( 115.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, 1371.77, 1697.00 ) LPos=( 121.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, 1371.77, 1697.00 ) LPos=( 124.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, 1371.77, 1697.00 ) LPos=( 136.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, 1370.24, 1699.43 ) LPos=( 121.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, 1370.24, 1699.43 ) LPos=( 130.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 115.94, 1368.70, 1701.86 ) LPos=( 115.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 118.81, 1368.70, 1701.86 ) LPos=( 118.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1368.70, 1701.86 ) LPos=( 124.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 127.44, 1368.70, 1701.86 ) LPos=( 127.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 130.31, 1368.70, 1701.86 ) LPos=( 130.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, 1368.70, 1701.86 ) LPos=( 136.06, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 124.56, 1367.17, 1704.30 ) LPos=( 124.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1367.17, 1704.30 ) LPos=( 130.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 133.19, 1367.17, 1704.30 ) LPos=( 133.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, 1365.64, 1706.73 ) LPos=( 115.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 121.69, 1365.64, 1706.73 ) LPos=( 121.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, 1365.64, 1706.73 ) LPos=( 130.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 136.06, 1365.64, 1706.73 ) LPos=( 136.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, 1364.11, 1709.16 ) LPos=( 121.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 127.44, 1364.11, 1709.16 ) LPos=( 127.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 130.31, 1364.11, 1709.16 ) LPos=( 130.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 136.06, 1389.75, 1668.44 ) LPos=( 136.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 130.31, 1388.22, 1670.87 ) LPos=( 130.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 130.31, 1383.63, 1678.17 ) LPos=( 130.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 127.44, 1389.75, 1668.44 ) LPos=( 127.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, 1389.75, 1668.44 ) LPos=( 121.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1389.75, 1668.44 ) LPos=( 115.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, 1380.56, 1683.04 ) LPos=( 115.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, 1364.11, 1709.16 ) LPos=( 87.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 87.94, 1367.17, 1704.30 ) LPos=( 87.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, 1368.70, 1701.86 ) LPos=( 87.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1371.77, 1697.00 ) LPos=( 87.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1374.83, 1692.13 ) LPos=( 87.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 90.81, 1364.11, 1709.16 ) LPos=( 90.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 90.81, 1365.64, 1706.73 ) LPos=( 90.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1368.70, 1701.86 ) LPos=( 90.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1373.30, 1694.57 ) LPos=( 90.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 93.69, 1368.70, 1701.86 ) LPos=( 93.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, 1370.24, 1699.43 ) LPos=( 93.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1364.11, 1709.16 ) LPos=( 96.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1367.17, 1704.30 ) LPos=( 96.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, 1368.70, 1701.86 ) LPos=( 96.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 96.56, 1373.30, 1694.57 ) LPos=( 96.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, 1365.64, 1706.73 ) LPos=( 99.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1367.17, 1704.30 ) LPos=( 99.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1368.70, 1701.86 ) LPos=( 99.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, 1373.30, 1694.57 ) LPos=( 99.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 99.44, 1374.83, 1692.13 ) LPos=( 99.44, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 102.31, 1364.11, 1709.16 ) LPos=( 102.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1367.17, 1704.30 ) LPos=( 102.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 105.19, 1364.11, 1709.16 ) LPos=( 105.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, 1368.70, 1701.86 ) LPos=( 105.19, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, 1373.30, 1694.57 ) LPos=( 108.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1379.03, 1685.47 ) LPos=( 105.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 102.31, 1379.03, 1685.47 ) LPos=( 102.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 99.44, 1379.03, 1685.47 ) LPos=( 99.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 96.56, 1379.03, 1685.47 ) LPos=( 96.56, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1379.03, 1685.47 ) LPos=( 93.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, 1379.03, 1685.47 ) LPos=( 90.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1380.56, 1683.04 ) LPos=( 105.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1380.56, 1683.04 ) LPos=( 102.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1380.56, 1683.04 ) LPos=( 87.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1382.09, 1680.60 ) LPos=( 96.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, 1383.63, 1678.17 ) LPos=( 105.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 99.44, 1383.63, 1678.17 ) LPos=( 99.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, 1383.63, 1678.17 ) LPos=( 93.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 87.94, 1383.63, 1678.17 ) LPos=( 87.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, 1385.16, 1675.74 ) LPos=( 102.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1385.16, 1675.74 ) LPos=( 99.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 96.56, 1385.16, 1675.74 ) LPos=( 96.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, 1386.69, 1673.31 ) LPos=( 99.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, 1389.75, 1668.44 ) LPos=( 102.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 87.94, 1389.75, 1668.44 ) LPos=( 87.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 59.94, 1374.83, 1692.13 ) LPos=( 59.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 65.69, 1374.83, 1692.13 ) LPos=( 65.69, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1374.83, 1692.13 ) LPos=( 80.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 62.81, 1373.30, 1694.57 ) LPos=( 62.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, 1373.30, 1694.57 ) LPos=( 68.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, 1373.30, 1694.57 ) LPos=( 71.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1373.30, 1694.57 ) LPos=( 77.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1371.77, 1697.00 ) LPos=( 71.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, 1371.77, 1697.00 ) LPos=( 77.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 59.94, 1370.24, 1699.43 ) LPos=( 59.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, 1370.24, 1699.43 ) LPos=( 62.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, 1370.24, 1699.43 ) LPos=( 65.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1370.24, 1699.43 ) LPos=( 71.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1370.24, 1699.43 ) LPos=( 74.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, 1370.24, 1699.43 ) LPos=( 77.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, 1370.24, 1699.43 ) LPos=( 80.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 59.94, 1368.70, 1701.86 ) LPos=( 59.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 62.81, 1368.70, 1701.86 ) LPos=( 62.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, 1368.70, 1701.86 ) LPos=( 71.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 74.31, 1368.70, 1701.86 ) LPos=( 74.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1367.17, 1704.30 ) LPos=( 59.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 62.81, 1367.17, 1704.30 ) LPos=( 62.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1367.17, 1704.30 ) LPos=( 65.69, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 68.56, 1367.17, 1704.30 ) LPos=( 68.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, 1367.17, 1704.30 ) LPos=( 74.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1367.17, 1704.30 ) LPos=( 77.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 80.06, 1367.17, 1704.30 ) LPos=( 80.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, 1365.64, 1706.73 ) LPos=( 65.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 68.56, 1365.64, 1706.73 ) LPos=( 68.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 71.44, 1365.64, 1706.73 ) LPos=( 71.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, 1364.11, 1709.16 ) LPos=( 68.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1386.69, 1673.31 ) LPos=( 80.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 80.06, 1385.16, 1675.74 ) LPos=( 80.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 80.06, 1382.09, 1680.60 ) LPos=( 80.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, 1380.56, 1683.04 ) LPos=( 80.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 77.19, 1388.22, 1670.87 ) LPos=( 77.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, 1382.09, 1680.60 ) LPos=( 77.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1380.56, 1683.04 ) LPos=( 77.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, 1386.69, 1673.31 ) LPos=( 74.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, 1383.63, 1678.17 ) LPos=( 74.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 74.31, 1379.03, 1685.47 ) LPos=( 74.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 71.44, 1388.22, 1670.87 ) LPos=( 71.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1386.69, 1673.31 ) LPos=( 71.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 71.44, 1379.03, 1685.47 ) LPos=( 71.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 68.56, 1389.75, 1668.44 ) LPos=( 68.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, 1383.63, 1678.17 ) LPos=( 68.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 68.56, 1382.09, 1680.60 ) LPos=( 68.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1386.69, 1673.31 ) LPos=( 65.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, 1379.03, 1685.47 ) LPos=( 65.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 62.81, 1383.63, 1678.17 ) LPos=( 62.81, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, 1380.56, 1683.04 ) LPos=( 62.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 59.94, 1388.22, 1670.87 ) LPos=( 59.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, 1382.09, 1680.60 ) LPos=( 59.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, 1380.56, 1683.04 ) LPos=( 59.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 31.94, 1367.17, 1704.30 ) LPos=( 31.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 31.94, 1368.70, 1701.86 ) LPos=( 31.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 34.81, 1367.17, 1704.30 ) LPos=( 34.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 34.81, 1368.70, 1701.86 ) LPos=( 34.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 34.81, 1371.77, 1697.00 ) LPos=( 34.81, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 40.56, 1370.24, 1699.43 ) LPos=( 40.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 40.56, 1373.30, 1694.57 ) LPos=( 40.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 40.56, 1374.83, 1692.13 ) LPos=( 40.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 43.44, 1364.11, 1709.16 ) LPos=( 43.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1368.70, 1701.86 ) LPos=( 43.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, 1368.70, 1701.86 ) LPos=( 46.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 46.31, 1371.77, 1697.00 ) LPos=( 46.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1373.30, 1694.57 ) LPos=( 46.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 46.31, 1374.83, 1692.13 ) LPos=( 46.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1365.64, 1706.73 ) LPos=( 49.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1367.17, 1704.30 ) LPos=( 49.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1368.70, 1701.86 ) LPos=( 49.19, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 49.19, 1370.24, 1699.43 ) LPos=( 49.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 49.19, 1371.77, 1697.00 ) LPos=( 49.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1374.83, 1692.13 ) LPos=( 49.19, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1364.11, 1709.16 ) LPos=( 52.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, 1365.64, 1706.73 ) LPos=( 52.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, 1370.24, 1699.43 ) LPos=( 52.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, 1371.77, 1697.00 ) LPos=( 52.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 52.06, 1373.30, 1694.57 ) LPos=( 52.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 52.06, 1374.83, 1692.13 ) LPos=( 52.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1379.03, 1685.47 ) LPos=( 49.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, 1379.03, 1685.47 ) LPos=( 46.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 43.44, 1379.03, 1685.47 ) LPos=( 43.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1379.03, 1685.47 ) LPos=( 34.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 52.06, 1380.56, 1683.04 ) LPos=( 52.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, 1380.56, 1683.04 ) LPos=( 49.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 46.31, 1380.56, 1683.04 ) LPos=( 46.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, 1382.09, 1680.60 ) LPos=( 52.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, 1382.09, 1680.60 ) LPos=( 49.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, 1382.09, 1680.60 ) LPos=( 46.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1382.09, 1680.60 ) LPos=( 43.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, 1382.09, 1680.60 ) LPos=( 37.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 31.94, 1382.09, 1680.60 ) LPos=( 31.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, 1383.63, 1678.17 ) LPos=( 52.06, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1383.63, 1678.17 ) LPos=( 49.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, 1383.63, 1678.17 ) LPos=( 34.81, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, 1383.63, 1678.17 ) LPos=( 31.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1385.16, 1675.74 ) LPos=( 52.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1385.16, 1675.74 ) LPos=( 46.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1385.16, 1675.74 ) LPos=( 43.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 40.56, 1385.16, 1675.74 ) LPos=( 40.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 34.81, 1385.16, 1675.74 ) LPos=( 34.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, 1385.16, 1675.74 ) LPos=( 31.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1386.69, 1673.31 ) LPos=( 43.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 34.81, 1386.69, 1673.31 ) LPos=( 34.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 52.06, 1388.22, 1670.87 ) LPos=( 52.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1388.22, 1670.87 ) LPos=( 49.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 46.31, 1388.22, 1670.87 ) LPos=( 46.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 43.44, 1389.75, 1668.44 ) LPos=( 43.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 31.94, 1389.75, 1668.44 ) LPos=( 31.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, 1374.83, 1692.13 ) LPos=( 3.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, 1374.83, 1692.13 ) LPos=( 18.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1374.83, 1692.13 ) LPos=( 21.19, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, 1373.30, 1694.57 ) LPos=( 9.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1373.30, 1694.57 ) LPos=( 15.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1373.30, 1694.57 ) LPos=( 21.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1371.77, 1697.00 ) LPos=( 3.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 9.69, 1371.77, 1697.00 ) LPos=( 9.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, 1371.77, 1697.00 ) LPos=( 12.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, 1371.77, 1697.00 ) LPos=( 15.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1371.77, 1697.00 ) LPos=( 18.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, 1371.77, 1697.00 ) LPos=( 21.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1371.77, 1697.00 ) LPos=( 24.06, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, 1370.24, 1699.43 ) LPos=( 9.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 12.56, 1370.24, 1699.43 ) LPos=( 12.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1370.24, 1699.43 ) LPos=( 15.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 21.19, 1370.24, 1699.43 ) LPos=( 21.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, 1370.24, 1699.43 ) LPos=( 24.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 15.44, 1368.70, 1701.86 ) LPos=( 15.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1368.70, 1701.86 ) LPos=( 21.19, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3.94, 1367.17, 1704.30 ) LPos=( 3.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1367.17, 1704.30 ) LPos=( 12.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, 1367.17, 1704.30 ) LPos=( 15.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, 1367.17, 1704.30 ) LPos=( 18.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, 1367.17, 1704.30 ) LPos=( 21.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, 1367.17, 1704.30 ) LPos=( 24.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, 1365.64, 1706.73 ) LPos=( 3.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, 1364.11, 1709.16 ) LPos=( 18.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 24.06, 1364.11, 1709.16 ) LPos=( 24.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 24.06, 1389.75, 1668.44 ) LPos=( 24.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1388.22, 1670.87 ) LPos=( 24.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, 1386.69, 1673.31 ) LPos=( 24.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, 1385.16, 1675.74 ) LPos=( 24.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, 1383.63, 1678.17 ) LPos=( 24.06, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 24.06, 1380.56, 1683.04 ) LPos=( 24.06, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1385.16, 1675.74 ) LPos=( 21.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 21.19, 1383.63, 1678.17 ) LPos=( 21.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1382.09, 1680.60 ) LPos=( 21.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1380.56, 1683.04 ) LPos=( 21.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 21.19, 1379.03, 1685.47 ) LPos=( 21.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1389.75, 1668.44 ) LPos=( 18.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1388.22, 1670.87 ) LPos=( 18.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, 1385.16, 1675.74 ) LPos=( 18.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1383.63, 1678.17 ) LPos=( 18.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1380.56, 1683.04 ) LPos=( 18.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 15.44, 1385.16, 1675.74 ) LPos=( 15.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1383.63, 1678.17 ) LPos=( 15.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, 1379.03, 1685.47 ) LPos=( 15.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, 1386.69, 1673.31 ) LPos=( 12.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1385.16, 1675.74 ) LPos=( 12.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1383.63, 1678.17 ) LPos=( 12.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, 1389.75, 1668.44 ) LPos=( 9.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 9.69, 1388.22, 1670.87 ) LPos=( 9.69, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, 1385.16, 1675.74 ) LPos=( 9.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 9.69, 1383.63, 1678.17 ) LPos=( 9.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 9.69, 1380.56, 1683.04 ) LPos=( 9.69, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, 1389.75, 1668.44 ) LPos=( 6.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 6.81, 1380.56, 1683.04 ) LPos=( 6.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3.94, 1385.16, 1675.74 ) LPos=( 3.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, 1382.09, 1680.60 ) LPos=( 3.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, 1367.17, 1704.30 ) LPos=( -24.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, 1374.83, 1692.13 ) LPos=( -24.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -21.19, 1371.77, 1697.00 ) LPos=( -21.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1364.11, 1709.16 ) LPos=( -18.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, 1373.30, 1694.57 ) LPos=( -18.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -15.44, 1364.11, 1709.16 ) LPos=( -15.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -15.44, 1365.64, 1706.73 ) LPos=( -15.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -15.44, 1367.17, 1704.30 ) LPos=( -15.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, 1368.70, 1701.86 ) LPos=( -15.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1371.77, 1697.00 ) LPos=( -15.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, 1374.83, 1692.13 ) LPos=( -15.44, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1368.70, 1701.86 ) LPos=( -12.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1371.77, 1697.00 ) LPos=( -12.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, 1365.64, 1706.73 ) LPos=( -9.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1370.24, 1699.43 ) LPos=( -9.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, 1371.77, 1697.00 ) LPos=( -9.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, 1373.30, 1694.57 ) LPos=( -9.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1365.64, 1706.73 ) LPos=( -6.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -6.81, 1374.83, 1692.13 ) LPos=( -6.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, 1364.11, 1709.16 ) LPos=( -3.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, 1367.17, 1704.30 ) LPos=( -3.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3.94, 1368.70, 1701.86 ) LPos=( -3.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3.94, 1371.77, 1697.00 ) LPos=( -3.94, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -18.31, 1379.03, 1685.47 ) LPos=( -18.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3.94, 1380.56, 1683.04 ) LPos=( -3.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1380.56, 1683.04 ) LPos=( -9.69, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, 1382.09, 1680.60 ) LPos=( -3.94, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -9.69, 1382.09, 1680.60 ) LPos=( -9.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1382.09, 1680.60 ) LPos=( -18.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -21.19, 1382.09, 1680.60 ) LPos=( -21.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, 1382.09, 1680.60 ) LPos=( -24.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1383.63, 1678.17 ) LPos=( -12.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, 1383.63, 1678.17 ) LPos=( -15.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1383.63, 1678.17 ) LPos=( -24.06, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, 1385.16, 1675.74 ) LPos=( -6.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1385.16, 1675.74 ) LPos=( -12.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -21.19, 1385.16, 1675.74 ) LPos=( -21.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1385.16, 1675.74 ) LPos=( -24.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -6.81, 1386.69, 1673.31 ) LPos=( -6.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1388.22, 1670.87 ) LPos=( -6.81, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -9.69, 1388.22, 1670.87 ) LPos=( -9.69, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, 1388.22, 1670.87 ) LPos=( -12.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -9.69, 1389.75, 1668.44 ) LPos=( -9.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, 1389.75, 1668.44 ) LPos=( -15.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, 1374.83, 1692.13 ) LPos=( -52.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, 1374.83, 1692.13 ) LPos=( -49.19, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -52.06, 1373.30, 1694.57 ) LPos=( -52.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, 1373.30, 1694.57 ) LPos=( -37.69, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, 1373.30, 1694.57 ) LPos=( -34.81, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, 1371.77, 1697.00 ) LPos=( -49.19, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -52.06, 1370.24, 1699.43 ) LPos=( -52.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -46.31, 1370.24, 1699.43 ) LPos=( -46.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, 1370.24, 1699.43 ) LPos=( -43.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, 1370.24, 1699.43 ) LPos=( -37.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, 1368.70, 1701.86 ) LPos=( -46.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, 1368.70, 1701.86 ) LPos=( -37.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, 1368.70, 1701.86 ) LPos=( -31.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -52.06, 1367.17, 1704.30 ) LPos=( -52.06, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, 1367.17, 1704.30 ) LPos=( -46.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -40.56, 1367.17, 1704.30 ) LPos=( -40.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -34.81, 1367.17, 1704.30 ) LPos=( -34.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -31.94, 1367.17, 1704.30 ) LPos=( -31.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -52.06, 1365.64, 1706.73 ) LPos=( -52.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, 1365.64, 1706.73 ) LPos=( -49.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, 1365.64, 1706.73 ) LPos=( -43.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -37.69, 1365.64, 1706.73 ) LPos=( -37.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, 1365.64, 1706.73 ) LPos=( -31.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, 1364.11, 1709.16 ) LPos=( -40.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, 1386.69, 1673.31 ) LPos=( -31.94, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, 1389.75, 1668.44 ) LPos=( -34.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1382.09, 1680.60 ) LPos=( -37.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -37.69, 1380.56, 1683.04 ) LPos=( -37.69, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -37.69, 1379.03, 1685.47 ) LPos=( -37.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1389.75, 1668.44 ) LPos=( -40.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, 1380.56, 1683.04 ) LPos=( -40.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1379.03, 1685.47 ) LPos=( -43.44, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -46.31, 1389.75, 1668.44 ) LPos=( -46.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, 1383.63, 1678.17 ) LPos=( -49.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, 1379.03, 1685.47 ) LPos=( -52.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -77.19, 1365.64, 1706.73 ) LPos=( -77.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -74.31, 1365.64, 1706.73 ) LPos=( -74.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, 1367.17, 1704.30 ) LPos=( -74.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, 1371.77, 1697.00 ) LPos=( -74.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -74.31, 1373.30, 1694.57 ) LPos=( -74.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -71.44, 1364.11, 1709.16 ) LPos=( -71.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -71.44, 1368.70, 1701.86 ) LPos=( -71.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, 1364.11, 1709.16 ) LPos=( -68.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1368.70, 1701.86 ) LPos=( -68.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, 1370.24, 1699.43 ) LPos=( -68.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -68.56, 1371.77, 1697.00 ) LPos=( -68.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, 1374.83, 1692.13 ) LPos=( -68.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, 1365.64, 1706.73 ) LPos=( -65.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, 1368.70, 1701.86 ) LPos=( -65.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -62.81, 1364.11, 1709.16 ) LPos=( -62.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -62.81, 1367.17, 1704.30 ) LPos=( -62.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, 1368.70, 1701.86 ) LPos=( -62.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, 1370.24, 1699.43 ) LPos=( -62.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -59.94, 1365.64, 1706.73 ) LPos=( -59.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1368.70, 1701.86 ) LPos=( -59.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1380.56, 1683.04 ) LPos=( -68.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, 1382.09, 1680.60 ) LPos=( -80.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1383.63, 1678.17 ) LPos=( -71.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -74.31, 1383.63, 1678.17 ) LPos=( -74.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -68.56, 1388.22, 1670.87 ) LPos=( -68.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, 1374.83, 1692.13 ) LPos=( -102.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, 1374.83, 1692.13 ) LPos=( -87.94, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -108.06, 1373.30, 1694.57 ) LPos=( -108.06, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -102.31, 1373.30, 1694.57 ) LPos=( -102.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -96.56, 1371.77, 1697.00 ) LPos=( -96.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, 1370.24, 1699.43 ) LPos=( -93.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1367.17, 1704.30 ) LPos=( -102.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, 1367.17, 1704.30 ) LPos=( -96.56, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, 1365.64, 1706.73 ) LPos=( -105.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -99.44, 1365.64, 1706.73 ) LPos=( -99.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1365.64, 1706.73 ) LPos=( -87.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, 1364.11, 1709.16 ) LPos=( -102.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -96.56, 1364.11, 1709.16 ) LPos=( -96.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, 1383.63, 1678.17 ) LPos=( -87.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -90.81, 1389.75, 1668.44 ) LPos=( -90.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1386.69, 1673.31 ) LPos=( -90.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, 1382.09, 1680.60 ) LPos=( -90.81, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -93.69, 1389.75, 1668.44 ) LPos=( -93.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, 1385.16, 1675.74 ) LPos=( -93.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, 1379.03, 1685.47 ) LPos=( -93.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -96.56, 1389.75, 1668.44 ) LPos=( -96.56, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -96.56, 1380.56, 1683.04 ) LPos=( -96.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -99.44, 1386.69, 1673.31 ) LPos=( -99.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1385.16, 1675.74 ) LPos=( -99.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1386.69, 1673.31 ) LPos=( -102.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1380.56, 1683.04 ) LPos=( -102.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, 1379.03, 1685.47 ) LPos=( -102.31, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, 1383.63, 1678.17 ) LPos=( -105.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1385.16, 1675.74 ) LPos=( -108.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -133.19, 1364.11, 1709.16 ) LPos=( -133.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -130.31, 1364.11, 1709.16 ) LPos=( -130.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1365.64, 1706.73 ) LPos=( -130.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -130.31, 1370.24, 1699.43 ) LPos=( -130.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1373.30, 1694.57 ) LPos=( -130.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -124.56, 1368.70, 1701.86 ) LPos=( -124.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -121.69, 1374.83, 1692.13 ) LPos=( -121.69, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, 1364.11, 1709.16 ) LPos=( -118.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1365.64, 1706.73 ) LPos=( -115.94, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -115.94, 1379.03, 1685.47 ) LPos=( -115.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, 1379.03, 1685.47 ) LPos=( -121.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, 1380.56, 1683.04 ) LPos=( -127.44, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, 1383.63, 1678.17 ) LPos=( -121.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -121.69, 1385.16, 1675.74 ) LPos=( -121.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1389.75, 1668.44 ) LPos=( -115.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -146.81, 1370.24, 1699.43 ) LPos=( -146.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, 1368.70, 1701.86 ) LPos=( -164.06, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -155.44, 1365.64, 1706.73 ) LPos=( -155.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, 1364.11, 1709.16 ) LPos=( -143.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -143.94, 1383.63, 1678.17 ) LPos=( -143.94, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, 1380.56, 1683.04 ) LPos=( -143.94, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, 1379.03, 1685.47 ) LPos=( -143.94, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -146.81, 1389.75, 1668.44 ) LPos=( -146.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -146.81, 1380.56, 1683.04 ) LPos=( -146.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -146.81, 1379.03, 1685.47 ) LPos=( -146.81, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, 1385.16, 1675.74 ) LPos=( -152.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -152.56, 1382.09, 1680.60 ) LPos=( -152.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -155.44, 1389.75, 1668.44 ) LPos=( -155.44, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, 1382.09, 1680.60 ) LPos=( -155.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, 1382.09, 1680.60 ) LPos=( -161.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, 1389.75, 1668.44 ) LPos=( -164.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -164.06, 1388.22, 1670.87 ) LPos=( -164.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -192.06, 1370.24, 1699.43 ) LPos=( -192.06, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, 1370.24, 1699.43 ) LPos=( -189.19, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, 1367.17, 1704.30 ) LPos=( -186.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -186.31, 1368.70, 1701.86 ) LPos=( -186.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, 1370.24, 1699.43 ) LPos=( -186.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -183.44, 1364.11, 1709.16 ) LPos=( -183.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -183.44, 1368.70, 1701.86 ) LPos=( -183.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -183.44, 1373.30, 1694.57 ) LPos=( -183.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -180.56, 1374.83, 1692.13 ) LPos=( -180.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -177.69, 1365.64, 1706.73 ) LPos=( -177.69, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -174.81, 1370.24, 1699.43 ) LPos=( -174.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, 1367.17, 1704.30 ) LPos=( -171.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -171.94, 1370.24, 1699.43 ) LPos=( -171.94, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -171.94, 1373.30, 1694.57 ) LPos=( -171.94, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -180.56, 1379.03, 1685.47 ) LPos=( -180.56, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -174.81, 1382.09, 1680.60 ) LPos=( -174.81, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -177.69, 1383.63, 1678.17 ) LPos=( -177.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -186.31, 1383.63, 1678.17 ) LPos=( -186.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -177.69, 1385.16, 1675.74 ) LPos=( -177.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, 1389.75, 1668.44 ) LPos=( -174.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -189.19, 1389.75, 1668.44 ) LPos=( -189.19, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -220.06, 1374.83, 1692.13 ) LPos=( -220.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, 1373.30, 1694.57 ) LPos=( -214.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, 1371.77, 1697.00 ) LPos=( -205.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -211.44, 1370.24, 1699.43 ) LPos=( -211.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -202.81, 1365.64, 1706.73 ) LPos=( -202.81, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -202.81, 1380.56, 1683.04 ) LPos=( -202.81, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, 1379.03, 1685.47 ) LPos=( -205.69, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -214.31, 1383.63, 1678.17 ) LPos=( -214.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, 1380.56, 1683.04 ) LPos=( -214.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -217.19, 1383.63, 1678.17 ) LPos=( -217.19, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -220.06, 1385.16, 1675.74 ) LPos=( -220.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -236.56, 1382.09, 1680.60 ) LPos=( -236.56, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -230.81, 1389.75, 1668.44 ) LPos=( -230.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -248.06, 1389.75, 1668.44 ) LPos=( -248.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, 1374.83, 1692.13 ) LPos=( -258.81, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -270.31, 1373.30, 1694.57 ) LPos=( -270.31, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -261.69, 1371.77, 1697.00 ) LPos=( -261.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -261.69, 1368.70, 1701.86 ) LPos=( -261.69, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -267.44, 1367.17, 1704.30 ) LPos=( -267.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -258.81, 1386.69, 1673.31 ) LPos=( -258.81, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -261.69, 1386.69, 1673.31 ) LPos=( -261.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -261.69, 1385.16, 1675.74 ) LPos=( -261.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -264.56, 1388.22, 1670.87 ) LPos=( -264.56, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -273.19, 1388.22, 1670.87 ) LPos=( -273.19, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -273.19, 1386.69, 1673.31 ) LPos=( -273.19, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -273.19, 1385.16, 1675.74 ) LPos=( -273.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -298.31, 1364.11, 1709.16 ) LPos=( -298.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -298.31, 1368.70, 1701.86 ) LPos=( -298.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -298.31, 1371.77, 1697.00 ) LPos=( -298.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -298.31, 1374.83, 1692.13 ) LPos=( -298.31, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -289.69, 1367.17, 1704.30 ) LPos=( -289.69, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -283.94, 1367.17, 1704.30 ) LPos=( -283.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -298.31, 1382.09, 1680.60 ) LPos=( -298.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -304.06, 1382.09, 1680.60 ) LPos=( -304.06, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -286.81, 1385.16, 1675.74 ) LPos=( -286.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -295.44, 1386.69, 1673.31 ) LPos=( -295.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -304.06, 1386.69, 1673.31 ) LPos=( -304.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -283.94, 1388.22, 1670.87 ) LPos=( -283.94, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -298.31, 1388.22, 1670.87 ) LPos=( -298.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -286.81, 1389.75, 1668.44 ) LPos=( -286.81, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -311.94, 1373.30, 1694.57 ) LPos=( -311.94, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -320.56, 1368.70, 1701.86 ) LPos=( -320.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -332.06, 1365.64, 1706.73 ) LPos=( -332.06, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, 1364.11, 1709.16 ) LPos=( -332.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -314.81, 1364.11, 1709.16 ) LPos=( -314.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -311.94, 1385.16, 1675.74 ) LPos=( -311.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -317.69, 1386.69, 1673.31 ) LPos=( -317.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -317.69, 1383.63, 1678.17 ) LPos=( -317.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -323.44, 1388.22, 1670.87 ) LPos=( -323.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -326.31, 1389.75, 1668.44 ) LPos=( -326.31, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -329.19, 1382.09, 1680.60 ) LPos=( -329.19, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -329.19, 1379.03, 1685.47 ) LPos=( -329.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -332.06, 1386.69, 1673.31 ) LPos=( -332.06, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -351.44, 1373.30, 1694.57 ) LPos=( -351.44, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -348.56, 1373.30, 1694.57 ) LPos=( -348.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -342.81, 1364.11, 1709.16 ) LPos=( -342.81, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -360.06, 1379.03, 1685.47 ) LPos=( -360.06, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -348.56, 1380.56, 1683.04 ) LPos=( -348.56, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -354.31, 1380.56, 1683.04 ) LPos=( -354.31, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -351.44, 1382.09, 1680.60 ) LPos=( -351.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -354.31, 1382.09, 1680.60 ) LPos=( -354.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -345.69, 1383.63, 1678.17 ) LPos=( -345.69, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -351.44, 1383.63, 1678.17 ) LPos=( -351.44, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, 1383.63, 1678.17 ) LPos=( -354.31, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -342.81, 1385.16, 1675.74 ) LPos=( -342.81, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -345.69, 1385.16, 1675.74 ) LPos=( -345.69, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -351.44, 1385.16, 1675.74 ) LPos=( -351.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -354.31, 1385.16, 1675.74 ) LPos=( -354.31, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -360.06, 1385.16, 1675.74 ) LPos=( -360.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -348.56, 1386.69, 1673.31 ) LPos=( -348.56, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -351.44, 1386.69, 1673.31 ) LPos=( -351.44, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -354.31, 1386.69, 1673.31 ) LPos=( -354.31, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -345.69, 1389.75, 1668.44 ) LPos=( -345.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -376.56, 1374.83, 1692.13 ) LPos=( -376.56, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -385.19, 1373.30, 1694.57 ) LPos=( -385.19, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -382.31, 1371.77, 1697.00 ) LPos=( -382.31, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -379.44, 1371.77, 1697.00 ) LPos=( -379.44, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -376.56, 1371.77, 1697.00 ) LPos=( -376.56, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -373.69, 1371.77, 1697.00 ) LPos=( -373.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -382.31, 1370.24, 1699.43 ) LPos=( -382.31, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -379.44, 1370.24, 1699.43 ) LPos=( -379.44, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1370.24, 1699.43 ) LPos=( -376.56, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -373.69, 1370.24, 1699.43 ) LPos=( -373.69, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -382.31, 1368.70, 1701.86 ) LPos=( -382.31, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -379.44, 1368.70, 1701.86 ) LPos=( -379.44, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -376.56, 1368.70, 1701.86 ) LPos=( -376.56, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -370.81, 1368.70, 1701.86 ) LPos=( -370.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -385.19, 1367.17, 1704.30 ) LPos=( -385.19, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -382.31, 1367.17, 1704.30 ) LPos=( -382.31, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -370.81, 1367.17, 1704.30 ) LPos=( -370.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -385.19, 1365.64, 1706.73 ) LPos=( -385.19, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -379.44, 1365.64, 1706.73 ) LPos=( -379.44, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -373.69, 1364.11, 1709.16 ) LPos=( -373.69, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -367.94, 1364.11, 1709.16 ) LPos=( -367.94, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -367.94, 1385.16, 1675.74 ) LPos=( -367.94, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -370.81, 1388.22, 1670.87 ) LPos=( -370.81, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -373.69, 1386.69, 1673.31 ) LPos=( -373.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -376.56, 1385.16, 1675.74 ) LPos=( -376.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -379.44, 1388.22, 1670.87 ) LPos=( -379.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -382.31, 1388.22, 1670.87 ) LPos=( -382.31, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -382.31, 1382.09, 1680.60 ) LPos=( -382.31, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -385.19, 1385.16, 1675.74 ) LPos=( -385.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -385.19, 1380.56, 1683.04 ) LPos=( -385.19, 261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -385.19, 1379.03, 1685.47 ) LPos=( -385.19, 258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -410.31, 1364.11, 1709.16 ) LPos=( -410.31, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -407.44, 1367.17, 1704.30 ) LPos=( -407.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -404.56, 1364.11, 1709.16 ) LPos=( -404.56, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -404.56, 1373.30, 1694.57 ) LPos=( -404.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -395.94, 1367.17, 1704.30 ) LPos=( -395.94, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -395.94, 1368.70, 1701.86 ) LPos=( -395.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -407.44, 1385.16, 1675.74 ) LPos=( -407.44, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -416.06, 1388.22, 1670.87 ) LPos=( -416.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -416.06, 1389.75, 1668.44 ) LPos=( -416.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -432.56, 1373.30, 1694.57 ) LPos=( -432.56, 247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -426.81, 1367.17, 1704.30 ) LPos=( -426.81, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -441.19, 1364.11, 1709.16 ) LPos=( -441.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -435.44, 1364.11, 1709.16 ) LPos=( -435.44, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -423.94, 1389.75, 1668.44 ) LPos=( -423.94, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -426.81, 1382.09, 1680.60 ) LPos=( -426.81, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -429.69, 1386.69, 1673.31 ) LPos=( -429.69, 272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -429.69, 1382.09, 1680.60 ) LPos=( -429.69, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -435.44, 1388.22, 1670.87 ) LPos=( -435.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -435.44, 1382.09, 1680.60 ) LPos=( -435.44, 263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -441.19, 1385.16, 1675.74 ) LPos=( -441.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -444.06, 1389.75, 1668.44 ) LPos=( -444.06, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -444.06, 1388.22, 1670.87 ) LPos=( -444.06, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -472.06, 1364.11, 1709.16 ) LPos=( -472.06, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -472.06, 1374.83, 1692.13 ) LPos=( -472.06, 250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -469.19, 1364.11, 1709.16 ) LPos=( -469.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -466.31, 1365.64, 1706.73 ) LPos=( -466.31, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -463.44, 1367.17, 1704.30 ) LPos=( -463.44, 235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -451.94, 1368.70, 1701.86 ) LPos=( -451.94, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -485.69, 1371.77, 1697.00 ) LPos=( -485.69, 244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -482.81, 1370.24, 1699.43 ) LPos=( -482.81, 241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -497.19, 1385.16, 1675.74 ) LPos=( -497.19, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -553.19, 1364.11, 1709.16 ) LPos=( -553.19, 230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -584.06, 1385.16, 1675.74 ) LPos=( -584.06, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -569.69, 1389.75, 1668.44 ) LPos=( -569.69, 278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -594.81, 1368.70, 1701.86 ) LPos=( -594.81, 238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -600.56, 1365.64, 1706.73 ) LPos=( -600.56, 233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -600.56, 1385.16, 1675.74 ) LPos=( -600.56, 269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -600.56, 1383.63, 1678.17 ) LPos=( -600.56, 266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -603.44, 1388.22, 1670.87 ) LPos=( -603.44, 275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 591.94, 1353.52, 1725.98 ) LPos=( 591.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 563.94, 1341.66, 1744.81 ) LPos=( 563.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 569.69, 1338.60, 1749.67 ) LPos=( 569.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 566.81, 1335.53, 1754.54 ) LPos=( 566.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 572.56, 1334.00, 1756.97 ) LPos=( 572.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 575.44, 1334.00, 1756.97 ) LPos=( 575.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 556.06, 1351.99, 1728.41 ) LPos=( 556.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 547.44, 1356.58, 1721.11 ) LPos=( 547.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 544.56, 1356.58, 1721.11 ) LPos=( 544.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 544.56, 1358.11, 1718.68 ) LPos=( 544.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 544.56, 1359.65, 1716.25 ) LPos=( 544.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 538.81, 1359.65, 1716.25 ) LPos=( 538.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 516.56, 1348.92, 1733.28 ) LPos=( 516.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 488.56, 1344.73, 1739.94 ) LPos=( 488.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 500.06, 1351.99, 1728.41 ) LPos=( 500.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 491.44, 1355.05, 1723.55 ) LPos=( 491.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 500.06, 1358.11, 1718.68 ) LPos=( 500.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 479.94, 1358.11, 1718.68 ) LPos=( 479.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 479.94, 1359.65, 1716.25 ) LPos=( 479.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 438.31, 1337.07, 1752.11 ) LPos=( 438.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 429.69, 1356.58, 1721.11 ) LPos=( 429.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 410.31, 1335.53, 1754.54 ) LPos=( 410.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 370.81, 1353.52, 1725.98 ) LPos=( 370.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 354.31, 1348.92, 1733.28 ) LPos=( 354.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, 1335.53, 1754.54 ) LPos=( 314.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, 1341.66, 1744.81 ) LPos=( 317.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 283.94, 1340.13, 1747.24 ) LPos=( 283.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, 1338.60, 1749.67 ) LPos=( 283.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 286.81, 1338.60, 1749.67 ) LPos=( 286.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 283.94, 1337.07, 1752.11 ) LPos=( 283.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, 1337.07, 1752.11 ) LPos=( 289.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 292.56, 1337.07, 1752.11 ) LPos=( 292.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 304.06, 1358.11, 1718.68 ) LPos=( 304.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, 1356.58, 1721.11 ) LPos=( 304.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 298.31, 1353.52, 1725.98 ) LPos=( 298.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 295.44, 1355.05, 1723.55 ) LPos=( 295.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 292.56, 1353.52, 1725.98 ) LPos=( 292.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 286.81, 1353.52, 1725.98 ) LPos=( 286.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 264.56, 1334.00, 1756.97 ) LPos=( 264.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 267.44, 1344.73, 1739.94 ) LPos=( 267.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 270.31, 1341.66, 1744.81 ) LPos=( 270.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 273.19, 1341.66, 1744.81 ) LPos=( 273.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 267.44, 1350.45, 1730.85 ) LPos=( 267.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 264.56, 1350.45, 1730.85 ) LPos=( 264.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 261.69, 1350.45, 1730.85 ) LPos=( 261.69, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 267.44, 1351.99, 1728.41 ) LPos=( 267.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 264.56, 1351.99, 1728.41 ) LPos=( 264.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 255.94, 1351.99, 1728.41 ) LPos=( 255.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 255.94, 1355.05, 1723.55 ) LPos=( 255.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 264.56, 1356.58, 1721.11 ) LPos=( 264.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 267.44, 1359.65, 1716.25 ) LPos=( 267.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 227.94, 1344.73, 1739.94 ) LPos=( 227.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 245.19, 1344.73, 1739.94 ) LPos=( 245.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 245.19, 1343.19, 1742.38 ) LPos=( 245.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 242.31, 1340.13, 1747.24 ) LPos=( 242.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 248.06, 1340.13, 1747.24 ) LPos=( 248.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 242.31, 1338.60, 1749.67 ) LPos=( 242.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 233.69, 1334.00, 1756.97 ) LPos=( 233.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 236.56, 1334.00, 1756.97 ) LPos=( 236.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, 1353.52, 1725.98 ) LPos=( 248.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 242.31, 1353.52, 1725.98 ) LPos=( 242.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 233.69, 1359.65, 1716.25 ) LPos=( 233.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 230.81, 1358.11, 1718.68 ) LPos=( 230.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 230.81, 1355.05, 1723.55 ) LPos=( 230.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 227.94, 1356.58, 1721.11 ) LPos=( 227.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 227.94, 1355.05, 1723.55 ) LPos=( 227.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, 1353.52, 1725.98 ) LPos=( 227.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 227.94, 1350.45, 1730.85 ) LPos=( 227.94, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 199.94, 1335.53, 1754.54 ) LPos=( 199.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 199.94, 1343.19, 1742.38 ) LPos=( 199.94, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1344.73, 1739.94 ) LPos=( 199.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 205.69, 1338.60, 1749.67 ) LPos=( 205.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 205.69, 1343.19, 1742.38 ) LPos=( 205.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 208.56, 1344.73, 1739.94 ) LPos=( 208.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 214.31, 1340.13, 1747.24 ) LPos=( 214.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 214.31, 1343.19, 1742.38 ) LPos=( 214.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 214.31, 1344.73, 1739.94 ) LPos=( 214.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, 1335.53, 1754.54 ) LPos=( 217.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 217.19, 1343.19, 1742.38 ) LPos=( 217.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, 1334.00, 1756.97 ) LPos=( 220.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1348.92, 1733.28 ) LPos=( 199.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, 1351.99, 1728.41 ) LPos=( 217.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 199.94, 1351.99, 1728.41 ) LPos=( 199.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 208.56, 1358.11, 1718.68 ) LPos=( 208.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 202.81, 1358.11, 1718.68 ) LPos=( 202.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 199.94, 1358.11, 1718.68 ) LPos=( 199.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 214.31, 1359.65, 1716.25 ) LPos=( 214.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 174.81, 1344.73, 1739.94 ) LPos=( 174.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 177.69, 1344.73, 1739.94 ) LPos=( 177.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 186.31, 1344.73, 1739.94 ) LPos=( 186.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 180.56, 1343.19, 1742.38 ) LPos=( 180.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 186.31, 1343.19, 1742.38 ) LPos=( 186.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 180.56, 1341.66, 1744.81 ) LPos=( 180.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 192.06, 1340.13, 1747.24 ) LPos=( 192.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1338.60, 1749.67 ) LPos=( 180.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 189.19, 1338.60, 1749.67 ) LPos=( 189.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 174.81, 1337.07, 1752.11 ) LPos=( 174.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1337.07, 1752.11 ) LPos=( 177.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 192.06, 1335.53, 1754.54 ) LPos=( 192.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, 1334.00, 1756.97 ) LPos=( 177.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 189.19, 1334.00, 1756.97 ) LPos=( 189.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 186.31, 1353.52, 1725.98 ) LPos=( 186.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 186.31, 1350.45, 1730.85 ) LPos=( 186.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, 1358.11, 1718.68 ) LPos=( 183.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1356.58, 1721.11 ) LPos=( 177.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 171.94, 1355.05, 1723.55 ) LPos=( 171.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, 1351.99, 1728.41 ) LPos=( 171.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, 1337.07, 1752.11 ) LPos=( 143.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, 1338.60, 1749.67 ) LPos=( 143.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 143.94, 1340.13, 1747.24 ) LPos=( 143.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 143.94, 1343.19, 1742.38 ) LPos=( 143.94, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, 1344.73, 1739.94 ) LPos=( 143.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 146.81, 1337.07, 1752.11 ) LPos=( 146.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 146.81, 1338.60, 1749.67 ) LPos=( 146.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 146.81, 1340.13, 1747.24 ) LPos=( 146.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 149.69, 1334.00, 1756.97 ) LPos=( 149.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 149.69, 1337.07, 1752.11 ) LPos=( 149.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 149.69, 1341.66, 1744.81 ) LPos=( 149.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, 1343.19, 1742.38 ) LPos=( 149.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 152.56, 1335.53, 1754.54 ) LPos=( 152.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, 1338.60, 1749.67 ) LPos=( 158.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 158.31, 1344.73, 1739.94 ) LPos=( 158.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 161.19, 1337.07, 1752.11 ) LPos=( 161.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, 1334.00, 1756.97 ) LPos=( 164.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 164.06, 1335.53, 1754.54 ) LPos=( 164.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 164.06, 1340.13, 1747.24 ) LPos=( 164.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 155.44, 1348.92, 1733.28 ) LPos=( 155.44, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 146.81, 1348.92, 1733.28 ) LPos=( 146.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 164.06, 1350.45, 1730.85 ) LPos=( 164.06, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 158.31, 1350.45, 1730.85 ) LPos=( 158.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1350.45, 1730.85 ) LPos=( 149.69, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 155.44, 1351.99, 1728.41 ) LPos=( 155.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 152.56, 1351.99, 1728.41 ) LPos=( 152.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 143.94, 1351.99, 1728.41 ) LPos=( 143.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 149.69, 1353.52, 1725.98 ) LPos=( 149.69, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 146.81, 1355.05, 1723.55 ) LPos=( 146.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 149.69, 1356.58, 1721.11 ) LPos=( 149.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 146.81, 1356.58, 1721.11 ) LPos=( 146.81, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 143.94, 1356.58, 1721.11 ) LPos=( 143.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 149.69, 1358.11, 1718.68 ) LPos=( 149.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, 1358.11, 1718.68 ) LPos=( 143.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 158.31, 1359.65, 1716.25 ) LPos=( 158.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 149.69, 1359.65, 1716.25 ) LPos=( 149.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 146.81, 1359.65, 1716.25 ) LPos=( 146.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 143.94, 1359.65, 1716.25 ) LPos=( 143.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, 1344.73, 1739.94 ) LPos=( 118.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1344.73, 1739.94 ) LPos=( 124.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, 1344.73, 1739.94 ) LPos=( 127.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, 1344.73, 1739.94 ) LPos=( 130.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, 1343.19, 1742.38 ) LPos=( 130.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 115.94, 1341.66, 1744.81 ) LPos=( 115.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, 1341.66, 1744.81 ) LPos=( 121.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, 1341.66, 1744.81 ) LPos=( 124.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, 1341.66, 1744.81 ) LPos=( 127.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1341.66, 1744.81 ) LPos=( 130.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, 1340.13, 1747.24 ) LPos=( 118.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, 1340.13, 1747.24 ) LPos=( 121.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1340.13, 1747.24 ) LPos=( 124.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1340.13, 1747.24 ) LPos=( 127.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 133.19, 1340.13, 1747.24 ) LPos=( 133.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 121.69, 1338.60, 1749.67 ) LPos=( 121.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1338.60, 1749.67 ) LPos=( 124.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 130.31, 1338.60, 1749.67 ) LPos=( 130.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 118.81, 1337.07, 1752.11 ) LPos=( 118.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 121.69, 1337.07, 1752.11 ) LPos=( 121.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, 1337.07, 1752.11 ) LPos=( 130.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, 1335.53, 1754.54 ) LPos=( 118.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1335.53, 1754.54 ) LPos=( 124.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 133.19, 1335.53, 1754.54 ) LPos=( 133.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 136.06, 1335.53, 1754.54 ) LPos=( 136.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1334.00, 1756.97 ) LPos=( 115.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, 1334.00, 1756.97 ) LPos=( 133.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 136.06, 1334.00, 1756.97 ) LPos=( 136.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 136.06, 1351.99, 1728.41 ) LPos=( 136.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, 1351.99, 1728.41 ) LPos=( 133.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, 1355.05, 1723.55 ) LPos=( 130.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 130.31, 1353.52, 1725.98 ) LPos=( 130.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1351.99, 1728.41 ) LPos=( 130.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 127.44, 1355.05, 1723.55 ) LPos=( 127.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 124.56, 1359.65, 1716.25 ) LPos=( 124.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 124.56, 1358.11, 1718.68 ) LPos=( 124.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 124.56, 1351.99, 1728.41 ) LPos=( 124.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, 1359.65, 1716.25 ) LPos=( 121.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 121.69, 1348.92, 1733.28 ) LPos=( 121.69, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1353.52, 1725.98 ) LPos=( 118.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, 1348.92, 1733.28 ) LPos=( 118.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1355.05, 1723.55 ) LPos=( 115.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 115.94, 1353.52, 1725.98 ) LPos=( 115.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, 1351.99, 1728.41 ) LPos=( 115.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, 1348.92, 1733.28 ) LPos=( 115.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, 1334.00, 1756.97 ) LPos=( 87.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, 1338.60, 1749.67 ) LPos=( 87.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, 1340.13, 1747.24 ) LPos=( 87.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1341.66, 1744.81 ) LPos=( 87.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1344.73, 1739.94 ) LPos=( 87.94, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, 1338.60, 1749.67 ) LPos=( 90.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 90.81, 1341.66, 1744.81 ) LPos=( 90.81, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1343.19, 1742.38 ) LPos=( 90.81, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 93.69, 1343.19, 1742.38 ) LPos=( 93.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, 1344.73, 1739.94 ) LPos=( 93.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1334.00, 1756.97 ) LPos=( 96.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1337.07, 1752.11 ) LPos=( 96.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 96.56, 1344.73, 1739.94 ) LPos=( 96.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1338.60, 1749.67 ) LPos=( 99.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, 1343.19, 1742.38 ) LPos=( 99.44, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1337.07, 1752.11 ) LPos=( 102.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, 1343.19, 1742.38 ) LPos=( 102.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 102.31, 1344.73, 1739.94 ) LPos=( 102.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 108.06, 1335.53, 1754.54 ) LPos=( 108.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 108.06, 1344.73, 1739.94 ) LPos=( 108.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, 1350.45, 1730.85 ) LPos=( 102.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, 1350.45, 1730.85 ) LPos=( 99.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, 1350.45, 1730.85 ) LPos=( 87.94, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 108.06, 1351.99, 1728.41 ) LPos=( 108.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1351.99, 1728.41 ) LPos=( 96.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, 1353.52, 1725.98 ) LPos=( 108.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 99.44, 1353.52, 1725.98 ) LPos=( 99.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 108.06, 1355.05, 1723.55 ) LPos=( 108.06, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, 1355.05, 1723.55 ) LPos=( 93.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 108.06, 1356.58, 1721.11 ) LPos=( 108.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 105.19, 1356.58, 1721.11 ) LPos=( 105.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1356.58, 1721.11 ) LPos=( 102.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 93.69, 1356.58, 1721.11 ) LPos=( 93.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, 1358.11, 1718.68 ) LPos=( 108.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, 1358.11, 1718.68 ) LPos=( 102.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, 1358.11, 1718.68 ) LPos=( 93.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1359.65, 1716.25 ) LPos=( 108.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 105.19, 1359.65, 1716.25 ) LPos=( 105.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, 1359.65, 1716.25 ) LPos=( 102.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 96.56, 1359.65, 1716.25 ) LPos=( 96.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, 1359.65, 1716.25 ) LPos=( 90.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, 1344.73, 1739.94 ) LPos=( 62.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 74.31, 1344.73, 1739.94 ) LPos=( 74.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 77.19, 1344.73, 1739.94 ) LPos=( 77.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, 1343.19, 1742.38 ) LPos=( 68.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, 1341.66, 1744.81 ) LPos=( 59.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1341.66, 1744.81 ) LPos=( 71.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, 1341.66, 1744.81 ) LPos=( 80.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 68.56, 1340.13, 1747.24 ) LPos=( 68.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1340.13, 1747.24 ) LPos=( 71.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, 1340.13, 1747.24 ) LPos=( 77.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, 1340.13, 1747.24 ) LPos=( 80.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 74.31, 1338.60, 1749.67 ) LPos=( 74.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1337.07, 1752.11 ) LPos=( 59.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1337.07, 1752.11 ) LPos=( 65.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 68.56, 1337.07, 1752.11 ) LPos=( 68.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, 1337.07, 1752.11 ) LPos=( 71.44, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, 1337.07, 1752.11 ) LPos=( 74.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 62.81, 1335.53, 1754.54 ) LPos=( 62.81, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, 1335.53, 1754.54 ) LPos=( 65.69, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 71.44, 1335.53, 1754.54 ) LPos=( 71.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, 1334.00, 1756.97 ) LPos=( 59.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, 1334.00, 1756.97 ) LPos=( 68.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 80.06, 1359.65, 1716.25 ) LPos=( 80.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1348.92, 1733.28 ) LPos=( 80.06, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 77.19, 1355.05, 1723.55 ) LPos=( 77.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, 1353.52, 1725.98 ) LPos=( 77.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, 1355.05, 1723.55 ) LPos=( 74.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, 1351.99, 1728.41 ) LPos=( 74.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1356.58, 1721.11 ) LPos=( 71.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 71.44, 1351.99, 1728.41 ) LPos=( 71.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, 1356.58, 1721.11 ) LPos=( 68.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, 1353.52, 1725.98 ) LPos=( 68.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, 1348.92, 1733.28 ) LPos=( 68.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, 1359.65, 1716.25 ) LPos=( 65.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1356.58, 1721.11 ) LPos=( 65.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 65.69, 1355.05, 1723.55 ) LPos=( 65.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 65.69, 1350.45, 1730.85 ) LPos=( 65.69, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, 1359.65, 1716.25 ) LPos=( 62.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 62.81, 1358.11, 1718.68 ) LPos=( 62.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, 1359.65, 1716.25 ) LPos=( 59.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, 1356.58, 1721.11 ) LPos=( 59.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 31.94, 1334.00, 1756.97 ) LPos=( 31.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 31.94, 1335.53, 1754.54 ) LPos=( 31.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 31.94, 1337.07, 1752.11 ) LPos=( 31.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 31.94, 1338.60, 1749.67 ) LPos=( 31.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, 1340.13, 1747.24 ) LPos=( 31.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, 1340.13, 1747.24 ) LPos=( 34.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, 1344.73, 1739.94 ) LPos=( 34.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 37.69, 1334.00, 1756.97 ) LPos=( 37.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 37.69, 1338.60, 1749.67 ) LPos=( 37.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, 1341.66, 1744.81 ) LPos=( 37.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 37.69, 1344.73, 1739.94 ) LPos=( 37.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 40.56, 1344.73, 1739.94 ) LPos=( 40.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1338.60, 1749.67 ) LPos=( 43.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 43.44, 1340.13, 1747.24 ) LPos=( 43.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 43.44, 1341.66, 1744.81 ) LPos=( 43.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 43.44, 1344.73, 1739.94 ) LPos=( 43.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1334.00, 1756.97 ) LPos=( 46.31, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, 1337.07, 1752.11 ) LPos=( 46.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, 1338.60, 1749.67 ) LPos=( 46.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 46.31, 1340.13, 1747.24 ) LPos=( 46.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1343.19, 1742.38 ) LPos=( 46.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 46.31, 1344.73, 1739.94 ) LPos=( 46.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1337.07, 1752.11 ) LPos=( 49.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1338.60, 1749.67 ) LPos=( 49.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 49.19, 1340.13, 1747.24 ) LPos=( 49.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1344.73, 1739.94 ) LPos=( 49.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1334.00, 1756.97 ) LPos=( 52.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 52.06, 1337.07, 1752.11 ) LPos=( 52.06, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 52.06, 1338.60, 1749.67 ) LPos=( 52.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, 1340.13, 1747.24 ) LPos=( 52.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, 1341.66, 1744.81 ) LPos=( 52.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 52.06, 1343.19, 1742.38 ) LPos=( 52.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, 1348.92, 1733.28 ) LPos=( 46.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, 1348.92, 1733.28 ) LPos=( 37.69, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1348.92, 1733.28 ) LPos=( 34.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 46.31, 1350.45, 1730.85 ) LPos=( 46.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, 1350.45, 1730.85 ) LPos=( 43.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, 1350.45, 1730.85 ) LPos=( 34.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1351.99, 1728.41 ) LPos=( 43.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 40.56, 1351.99, 1728.41 ) LPos=( 40.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1353.52, 1725.98 ) LPos=( 49.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, 1355.05, 1723.55 ) LPos=( 31.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 52.06, 1356.58, 1721.11 ) LPos=( 52.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1356.58, 1721.11 ) LPos=( 31.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1358.11, 1718.68 ) LPos=( 49.19, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, 1358.11, 1718.68 ) LPos=( 40.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1358.11, 1718.68 ) LPos=( 37.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, 1359.65, 1716.25 ) LPos=( 52.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 49.19, 1359.65, 1716.25 ) LPos=( 49.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 40.56, 1359.65, 1716.25 ) LPos=( 40.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, 1344.73, 1739.94 ) LPos=( 6.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, 1344.73, 1739.94 ) LPos=( 9.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 12.56, 1344.73, 1739.94 ) LPos=( 12.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 15.44, 1344.73, 1739.94 ) LPos=( 15.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, 1344.73, 1739.94 ) LPos=( 18.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1344.73, 1739.94 ) LPos=( 21.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, 1344.73, 1739.94 ) LPos=( 24.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1343.19, 1742.38 ) LPos=( 15.44, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1343.19, 1742.38 ) LPos=( 21.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 24.06, 1343.19, 1742.38 ) LPos=( 24.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1341.66, 1744.81 ) LPos=( 3.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1341.66, 1744.81 ) LPos=( 18.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, 1341.66, 1744.81 ) LPos=( 21.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1341.66, 1744.81 ) LPos=( 24.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3.94, 1340.13, 1747.24 ) LPos=( 3.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, 1340.13, 1747.24 ) LPos=( 9.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1340.13, 1747.24 ) LPos=( 15.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 18.31, 1340.13, 1747.24 ) LPos=( 18.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 21.19, 1340.13, 1747.24 ) LPos=( 21.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, 1340.13, 1747.24 ) LPos=( 24.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, 1338.60, 1749.67 ) LPos=( 3.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, 1338.60, 1749.67 ) LPos=( 6.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 9.69, 1338.60, 1749.67 ) LPos=( 9.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1338.60, 1749.67 ) LPos=( 21.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, 1338.60, 1749.67 ) LPos=( 24.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, 1337.07, 1752.11 ) LPos=( 6.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, 1337.07, 1752.11 ) LPos=( 12.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, 1337.07, 1752.11 ) LPos=( 15.44, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, 1337.07, 1752.11 ) LPos=( 18.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, 1335.53, 1754.54 ) LPos=( 3.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, 1335.53, 1754.54 ) LPos=( 12.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, 1334.00, 1756.97 ) LPos=( 3.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 9.69, 1334.00, 1756.97 ) LPos=( 9.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 15.44, 1334.00, 1756.97 ) LPos=( 15.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 21.19, 1334.00, 1756.97 ) LPos=( 21.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1358.11, 1718.68 ) LPos=( 24.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, 1351.99, 1728.41 ) LPos=( 24.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, 1348.92, 1733.28 ) LPos=( 24.06, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1351.99, 1728.41 ) LPos=( 21.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, 1350.45, 1730.85 ) LPos=( 21.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 21.19, 1348.92, 1733.28 ) LPos=( 21.19, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1359.65, 1716.25 ) LPos=( 18.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1358.11, 1718.68 ) LPos=( 18.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, 1348.92, 1733.28 ) LPos=( 18.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1356.58, 1721.11 ) LPos=( 15.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1353.52, 1725.98 ) LPos=( 15.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 15.44, 1351.99, 1728.41 ) LPos=( 15.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 15.44, 1350.45, 1730.85 ) LPos=( 15.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, 1358.11, 1718.68 ) LPos=( 12.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1355.05, 1723.55 ) LPos=( 12.56, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 12.56, 1351.99, 1728.41 ) LPos=( 12.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, 1359.65, 1716.25 ) LPos=( 9.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1356.58, 1721.11 ) LPos=( 9.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, 1355.05, 1723.55 ) LPos=( 9.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1351.99, 1728.41 ) LPos=( 9.69, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 6.81, 1355.05, 1723.55 ) LPos=( 6.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, 1353.52, 1725.98 ) LPos=( 6.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1358.11, 1718.68 ) LPos=( 3.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3.94, 1353.52, 1725.98 ) LPos=( 3.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, 1351.99, 1728.41 ) LPos=( 3.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -24.06, 1334.00, 1756.97 ) LPos=( -24.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, 1338.60, 1749.67 ) LPos=( -24.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, 1340.13, 1747.24 ) LPos=( -24.06, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, 1341.66, 1744.81 ) LPos=( -24.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, 1343.19, 1742.38 ) LPos=( -24.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, 1344.73, 1739.94 ) LPos=( -24.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1334.00, 1756.97 ) LPos=( -21.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, 1337.07, 1752.11 ) LPos=( -21.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -21.19, 1340.13, 1747.24 ) LPos=( -21.19, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, 1344.73, 1739.94 ) LPos=( -21.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, 1337.07, 1752.11 ) LPos=( -18.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -18.31, 1340.13, 1747.24 ) LPos=( -18.31, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1341.66, 1744.81 ) LPos=( -18.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, 1343.19, 1742.38 ) LPos=( -18.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -15.44, 1335.53, 1754.54 ) LPos=( -15.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, 1338.60, 1749.67 ) LPos=( -15.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1341.66, 1744.81 ) LPos=( -15.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -12.56, 1337.07, 1752.11 ) LPos=( -12.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1338.60, 1749.67 ) LPos=( -12.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1341.66, 1744.81 ) LPos=( -12.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, 1340.13, 1747.24 ) LPos=( -9.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -6.81, 1337.07, 1752.11 ) LPos=( -6.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -6.81, 1340.13, 1747.24 ) LPos=( -6.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -6.81, 1344.73, 1739.94 ) LPos=( -6.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3.94, 1341.66, 1744.81 ) LPos=( -3.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3.94, 1348.92, 1733.28 ) LPos=( -3.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -6.81, 1348.92, 1733.28 ) LPos=( -6.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -18.31, 1348.92, 1733.28 ) LPos=( -18.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -15.44, 1350.45, 1730.85 ) LPos=( -15.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -18.31, 1350.45, 1730.85 ) LPos=( -18.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1350.45, 1730.85 ) LPos=( -21.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -6.81, 1351.99, 1728.41 ) LPos=( -6.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -9.69, 1351.99, 1728.41 ) LPos=( -9.69, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1351.99, 1728.41 ) LPos=( -15.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1351.99, 1728.41 ) LPos=( -18.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1353.52, 1725.98 ) LPos=( -12.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, 1353.52, 1725.98 ) LPos=( -15.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, 1353.52, 1725.98 ) LPos=( -21.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1353.52, 1725.98 ) LPos=( -24.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3.94, 1355.05, 1723.55 ) LPos=( -3.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, 1355.05, 1723.55 ) LPos=( -9.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1355.05, 1723.55 ) LPos=( -12.56, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -15.44, 1355.05, 1723.55 ) LPos=( -15.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3.94, 1356.58, 1721.11 ) LPos=( -3.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1356.58, 1721.11 ) LPos=( -9.69, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -12.56, 1356.58, 1721.11 ) LPos=( -12.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1358.11, 1718.68 ) LPos=( -6.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -9.69, 1358.11, 1718.68 ) LPos=( -9.69, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1358.11, 1718.68 ) LPos=( -15.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, 1359.65, 1716.25 ) LPos=( -6.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -12.56, 1359.65, 1716.25 ) LPos=( -12.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, 1359.65, 1716.25 ) LPos=( -15.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1359.65, 1716.25 ) LPos=( -24.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, 1344.73, 1739.94 ) LPos=( -52.06, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -46.31, 1343.19, 1742.38 ) LPos=( -46.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -40.56, 1343.19, 1742.38 ) LPos=( -40.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -46.31, 1341.66, 1744.81 ) LPos=( -46.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -40.56, 1341.66, 1744.81 ) LPos=( -40.56, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, 1340.13, 1747.24 ) LPos=( -43.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, 1340.13, 1747.24 ) LPos=( -37.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -31.94, 1340.13, 1747.24 ) LPos=( -31.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, 1338.60, 1749.67 ) LPos=( -46.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, 1338.60, 1749.67 ) LPos=( -31.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, 1337.07, 1752.11 ) LPos=( -37.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -34.81, 1337.07, 1752.11 ) LPos=( -34.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, 1335.53, 1754.54 ) LPos=( -49.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -46.31, 1335.53, 1754.54 ) LPos=( -46.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, 1334.00, 1756.97 ) LPos=( -52.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -31.94, 1359.65, 1716.25 ) LPos=( -31.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1358.11, 1718.68 ) LPos=( -31.94, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, 1355.05, 1723.55 ) LPos=( -31.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, 1351.99, 1728.41 ) LPos=( -31.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1348.92, 1733.28 ) LPos=( -31.94, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, 1359.65, 1716.25 ) LPos=( -34.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, 1358.11, 1718.68 ) LPos=( -34.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -34.81, 1355.05, 1723.55 ) LPos=( -34.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1351.99, 1728.41 ) LPos=( -34.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, 1350.45, 1730.85 ) LPos=( -34.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, 1359.65, 1716.25 ) LPos=( -37.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -37.69, 1355.05, 1723.55 ) LPos=( -37.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1351.99, 1728.41 ) LPos=( -37.69, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1359.65, 1716.25 ) LPos=( -40.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -40.56, 1358.11, 1718.68 ) LPos=( -40.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -40.56, 1356.58, 1721.11 ) LPos=( -40.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, 1350.45, 1730.85 ) LPos=( -40.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, 1348.92, 1733.28 ) LPos=( -40.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, 1359.65, 1716.25 ) LPos=( -43.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, 1356.58, 1721.11 ) LPos=( -43.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -43.44, 1350.45, 1730.85 ) LPos=( -43.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1348.92, 1733.28 ) LPos=( -43.44, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -46.31, 1358.11, 1718.68 ) LPos=( -46.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, 1356.58, 1721.11 ) LPos=( -46.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1355.05, 1723.55 ) LPos=( -46.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1351.99, 1728.41 ) LPos=( -46.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -46.31, 1350.45, 1730.85 ) LPos=( -46.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, 1348.92, 1733.28 ) LPos=( -46.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, 1356.58, 1721.11 ) LPos=( -49.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -49.19, 1355.05, 1723.55 ) LPos=( -49.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, 1351.99, 1728.41 ) LPos=( -49.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, 1348.92, 1733.28 ) LPos=( -49.19, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, 1359.65, 1716.25 ) LPos=( -52.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, 1358.11, 1718.68 ) LPos=( -52.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, 1351.99, 1728.41 ) LPos=( -52.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, 1348.92, 1733.28 ) LPos=( -52.06, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1341.66, 1744.81 ) LPos=( -80.06, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -77.19, 1338.60, 1749.67 ) LPos=( -77.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, 1337.07, 1752.11 ) LPos=( -74.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -74.31, 1338.60, 1749.67 ) LPos=( -74.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -71.44, 1337.07, 1752.11 ) LPos=( -71.44, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -71.44, 1344.73, 1739.94 ) LPos=( -71.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, 1338.60, 1749.67 ) LPos=( -68.56, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, 1338.60, 1749.67 ) LPos=( -65.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, 1340.13, 1747.24 ) LPos=( -65.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, 1341.66, 1744.81 ) LPos=( -65.69, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -65.69, 1344.73, 1739.94 ) LPos=( -65.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -62.81, 1334.00, 1756.97 ) LPos=( -62.81, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, 1338.60, 1749.67 ) LPos=( -62.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -62.81, 1344.73, 1739.94 ) LPos=( -62.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1338.60, 1749.67 ) LPos=( -59.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, 1340.13, 1747.24 ) LPos=( -59.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, 1348.92, 1733.28 ) LPos=( -62.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -77.19, 1348.92, 1733.28 ) LPos=( -77.19, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, 1350.45, 1730.85 ) LPos=( -62.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, 1350.45, 1730.85 ) LPos=( -71.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1351.99, 1728.41 ) LPos=( -59.94, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -62.81, 1351.99, 1728.41 ) LPos=( -62.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -77.19, 1351.99, 1728.41 ) LPos=( -77.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, 1351.99, 1728.41 ) LPos=( -80.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1353.52, 1725.98 ) LPos=( -62.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -74.31, 1353.52, 1725.98 ) LPos=( -74.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1353.52, 1725.98 ) LPos=( -80.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, 1355.05, 1723.55 ) LPos=( -62.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, 1355.05, 1723.55 ) LPos=( -71.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -74.31, 1355.05, 1723.55 ) LPos=( -74.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, 1356.58, 1721.11 ) LPos=( -59.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, 1356.58, 1721.11 ) LPos=( -62.81, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -71.44, 1358.11, 1718.68 ) LPos=( -71.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, 1358.11, 1718.68 ) LPos=( -74.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, 1359.65, 1716.25 ) LPos=( -65.69, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, 1359.65, 1716.25 ) LPos=( -68.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -105.19, 1344.73, 1739.94 ) LPos=( -105.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, 1344.73, 1739.94 ) LPos=( -102.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, 1344.73, 1739.94 ) LPos=( -99.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -96.56, 1344.73, 1739.94 ) LPos=( -96.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -108.06, 1343.19, 1742.38 ) LPos=( -108.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -105.19, 1343.19, 1742.38 ) LPos=( -105.19, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -96.56, 1343.19, 1742.38 ) LPos=( -96.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, 1343.19, 1742.38 ) LPos=( -93.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -105.19, 1341.66, 1744.81 ) LPos=( -105.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -102.31, 1341.66, 1744.81 ) LPos=( -102.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, 1341.66, 1744.81 ) LPos=( -99.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, 1340.13, 1747.24 ) LPos=( -90.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, 1338.60, 1749.67 ) LPos=( -93.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, 1337.07, 1752.11 ) LPos=( -93.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -108.06, 1335.53, 1754.54 ) LPos=( -108.06, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, 1335.53, 1754.54 ) LPos=( -105.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, 1334.00, 1756.97 ) LPos=( -102.31, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1334.00, 1756.97 ) LPos=( -93.69, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, 1355.05, 1723.55 ) LPos=( -87.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, 1353.52, 1725.98 ) LPos=( -87.94, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -87.94, 1350.45, 1730.85 ) LPos=( -87.94, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, 1353.52, 1725.98 ) LPos=( -90.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1350.45, 1730.85 ) LPos=( -90.81, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, 1348.92, 1733.28 ) LPos=( -90.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, 1358.11, 1718.68 ) LPos=( -96.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, 1355.05, 1723.55 ) LPos=( -96.56, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -96.56, 1350.45, 1730.85 ) LPos=( -96.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -99.44, 1348.92, 1733.28 ) LPos=( -99.44, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1356.58, 1721.11 ) LPos=( -102.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, 1348.92, 1733.28 ) LPos=( -102.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, 1359.65, 1716.25 ) LPos=( -108.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -108.06, 1358.11, 1718.68 ) LPos=( -108.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, 1356.58, 1721.11 ) LPos=( -108.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1355.05, 1723.55 ) LPos=( -108.06, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, 1353.52, 1725.98 ) LPos=( -108.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -136.06, 1337.07, 1752.11 ) LPos=( -136.06, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, 1341.66, 1744.81 ) LPos=( -133.19, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1335.53, 1754.54 ) LPos=( -130.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1341.66, 1744.81 ) LPos=( -130.31, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, 1338.60, 1749.67 ) LPos=( -127.44, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, 1341.66, 1744.81 ) LPos=( -127.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1343.19, 1742.38 ) LPos=( -127.44, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, 1344.73, 1739.94 ) LPos=( -127.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -124.56, 1334.00, 1756.97 ) LPos=( -124.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -124.56, 1344.73, 1739.94 ) LPos=( -124.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -121.69, 1335.53, 1754.54 ) LPos=( -121.69, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, 1337.07, 1752.11 ) LPos=( -121.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -121.69, 1343.19, 1742.38 ) LPos=( -121.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -118.81, 1337.07, 1752.11 ) LPos=( -118.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -118.81, 1338.60, 1749.67 ) LPos=( -118.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -118.81, 1343.19, 1742.38 ) LPos=( -118.81, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, 1344.73, 1739.94 ) LPos=( -118.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1335.53, 1754.54 ) LPos=( -115.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, 1338.60, 1749.67 ) LPos=( -115.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -115.94, 1340.13, 1747.24 ) LPos=( -115.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -115.94, 1341.66, 1744.81 ) LPos=( -115.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, 1350.45, 1730.85 ) LPos=( -124.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, 1350.45, 1730.85 ) LPos=( -127.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -118.81, 1351.99, 1728.41 ) LPos=( -118.81, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, 1351.99, 1728.41 ) LPos=( -124.56, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1351.99, 1728.41 ) LPos=( -130.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, 1353.52, 1725.98 ) LPos=( -124.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1353.52, 1725.98 ) LPos=( -127.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -133.19, 1353.52, 1725.98 ) LPos=( -133.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -115.94, 1355.05, 1723.55 ) LPos=( -115.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -121.69, 1355.05, 1723.55 ) LPos=( -121.69, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, 1355.05, 1723.55 ) LPos=( -130.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1355.05, 1723.55 ) LPos=( -133.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -115.94, 1356.58, 1721.11 ) LPos=( -115.94, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, 1356.58, 1721.11 ) LPos=( -130.31, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -133.19, 1356.58, 1721.11 ) LPos=( -133.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -124.56, 1358.11, 1718.68 ) LPos=( -124.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -127.44, 1358.11, 1718.68 ) LPos=( -127.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, 1358.11, 1718.68 ) LPos=( -130.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, 1358.11, 1718.68 ) LPos=( -133.19, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, 1359.65, 1716.25 ) LPos=( -133.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, 1359.65, 1716.25 ) LPos=( -136.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, 1343.19, 1742.38 ) LPos=( -164.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, 1341.66, 1744.81 ) LPos=( -146.81, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -146.81, 1340.13, 1747.24 ) LPos=( -146.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, 1338.60, 1749.67 ) LPos=( -164.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -149.69, 1337.07, 1752.11 ) LPos=( -149.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, 1337.07, 1752.11 ) LPos=( -146.81, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -152.56, 1335.53, 1754.54 ) LPos=( -152.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -149.69, 1335.53, 1754.54 ) LPos=( -149.69, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, 1334.00, 1756.97 ) LPos=( -143.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -146.81, 1355.05, 1723.55 ) LPos=( -146.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -146.81, 1348.92, 1733.28 ) LPos=( -146.81, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -161.19, 1356.58, 1721.11 ) LPos=( -161.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -164.06, 1356.58, 1721.11 ) LPos=( -164.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -192.06, 1334.00, 1756.97 ) LPos=( -192.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -192.06, 1343.19, 1742.38 ) LPos=( -192.06, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, 1343.19, 1742.38 ) LPos=( -186.31, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -183.44, 1334.00, 1756.97 ) LPos=( -183.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -183.44, 1335.53, 1754.54 ) LPos=( -183.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, 1340.13, 1747.24 ) LPos=( -183.44, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -183.44, 1344.73, 1739.94 ) LPos=( -183.44, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -180.56, 1335.53, 1754.54 ) LPos=( -180.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -180.56, 1337.07, 1752.11 ) LPos=( -180.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -177.69, 1338.60, 1749.67 ) LPos=( -177.69, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -177.69, 1340.13, 1747.24 ) LPos=( -177.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -174.81, 1340.13, 1747.24 ) LPos=( -174.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, 1337.07, 1752.11 ) LPos=( -171.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -183.44, 1350.45, 1730.85 ) LPos=( -183.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, 1350.45, 1730.85 ) LPos=( -189.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -177.69, 1353.52, 1725.98 ) LPos=( -177.69, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, 1353.52, 1725.98 ) LPos=( -183.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -183.44, 1355.05, 1723.55 ) LPos=( -183.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -186.31, 1355.05, 1723.55 ) LPos=( -186.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, 1355.05, 1723.55 ) LPos=( -192.06, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -183.44, 1356.58, 1721.11 ) LPos=( -183.44, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -192.06, 1356.58, 1721.11 ) LPos=( -192.06, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -192.06, 1359.65, 1716.25 ) LPos=( -192.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -220.06, 1338.60, 1749.67 ) LPos=( -220.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -208.56, 1335.53, 1754.54 ) LPos=( -208.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -220.06, 1334.00, 1756.97 ) LPos=( -220.06, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -199.94, 1334.00, 1756.97 ) LPos=( -199.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -208.56, 1348.92, 1733.28 ) LPos=( -208.56, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -214.31, 1351.99, 1728.41 ) LPos=( -214.31, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -217.19, 1351.99, 1728.41 ) LPos=( -217.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -220.06, 1350.45, 1730.85 ) LPos=( -220.06, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -248.06, 1338.60, 1749.67 ) LPos=( -248.06, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -242.31, 1335.53, 1754.54 ) LPos=( -242.31, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -242.31, 1338.60, 1749.67 ) LPos=( -242.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -239.44, 1334.00, 1756.97 ) LPos=( -239.44, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -230.81, 1334.00, 1756.97 ) LPos=( -230.81, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -239.44, 1353.52, 1725.98 ) LPos=( -239.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -248.06, 1359.65, 1716.25 ) LPos=( -248.06, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -264.56, 1344.73, 1739.94 ) LPos=( -264.56, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -261.69, 1344.73, 1739.94 ) LPos=( -261.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -255.94, 1337.07, 1752.11 ) LPos=( -255.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -255.94, 1335.53, 1754.54 ) LPos=( -255.94, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -273.19, 1350.45, 1730.85 ) LPos=( -273.19, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -301.19, 1335.53, 1754.54 ) LPos=( -301.19, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -301.19, 1338.60, 1749.67 ) LPos=( -301.19, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -301.19, 1344.73, 1739.94 ) LPos=( -301.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -298.31, 1337.07, 1752.11 ) LPos=( -298.31, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -295.44, 1335.53, 1754.54 ) LPos=( -295.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -292.56, 1337.07, 1752.11 ) LPos=( -292.56, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -292.56, 1343.19, 1742.38 ) LPos=( -292.56, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -289.69, 1343.19, 1742.38 ) LPos=( -289.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -289.69, 1344.73, 1739.94 ) LPos=( -289.69, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -286.81, 1344.73, 1739.94 ) LPos=( -286.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -283.94, 1340.13, 1747.24 ) LPos=( -283.94, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -298.31, 1348.92, 1733.28 ) LPos=( -298.31, 201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -295.44, 1350.45, 1730.85 ) LPos=( -295.44, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -298.31, 1350.45, 1730.85 ) LPos=( -298.31, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -295.44, 1351.99, 1728.41 ) LPos=( -295.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -304.06, 1353.52, 1725.98 ) LPos=( -304.06, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -283.94, 1355.05, 1723.55 ) LPos=( -283.94, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -298.31, 1355.05, 1723.55 ) LPos=( -298.31, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -301.19, 1356.58, 1721.11 ) LPos=( -301.19, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -298.31, 1358.11, 1718.68 ) LPos=( -298.31, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -304.06, 1358.11, 1718.68 ) LPos=( -304.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -292.56, 1359.65, 1716.25 ) LPos=( -292.56, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -298.31, 1359.65, 1716.25 ) LPos=( -298.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -314.81, 1344.73, 1739.94 ) LPos=( -314.81, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -314.81, 1341.66, 1744.81 ) LPos=( -314.81, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -320.56, 1340.13, 1747.24 ) LPos=( -320.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -314.81, 1338.60, 1749.67 ) LPos=( -314.81, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -311.94, 1338.60, 1749.67 ) LPos=( -311.94, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -323.44, 1335.53, 1754.54 ) LPos=( -323.44, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -314.81, 1358.11, 1718.68 ) LPos=( -314.81, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -326.31, 1359.65, 1716.25 ) LPos=( -326.31, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -332.06, 1358.11, 1718.68 ) LPos=( -332.06, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -354.31, 1338.60, 1749.67 ) LPos=( -354.31, 182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -351.44, 1341.66, 1744.81 ) LPos=( -351.44, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -339.94, 1334.00, 1756.97 ) LPos=( -339.94, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -339.94, 1341.66, 1744.81 ) LPos=( -339.94, 188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -348.56, 1356.58, 1721.11 ) LPos=( -348.56, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -373.69, 1343.19, 1742.38 ) LPos=( -373.69, 190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1340.13, 1747.24 ) LPos=( -376.56, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -376.56, 1358.11, 1718.68 ) LPos=( -376.56, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -379.44, 1359.65, 1716.25 ) LPos=( -379.44, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -410.31, 1344.73, 1739.94 ) LPos=( -410.31, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -413.19, 1351.99, 1728.41 ) LPos=( -413.19, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -416.06, 1351.99, 1728.41 ) LPos=( -416.06, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -401.69, 1353.52, 1725.98 ) LPos=( -401.69, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -404.56, 1353.52, 1725.98 ) LPos=( -404.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -413.19, 1353.52, 1725.98 ) LPos=( -413.19, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -398.81, 1356.58, 1721.11 ) LPos=( -398.81, 216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -398.81, 1359.65, 1716.25 ) LPos=( -398.81, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -413.19, 1359.65, 1716.25 ) LPos=( -413.19, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -432.56, 1335.53, 1754.54 ) LPos=( -432.56, 176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -432.56, 1334.00, 1756.97 ) LPos=( -432.56, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -423.94, 1359.65, 1716.25 ) LPos=( -423.94, 221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -426.81, 1355.05, 1723.55 ) LPos=( -426.81, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -432.56, 1353.52, 1725.98 ) LPos=( -432.56, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -432.56, 1350.45, 1730.85 ) LPos=( -432.56, 204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -435.44, 1353.52, 1725.98 ) LPos=( -435.44, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -435.44, 1351.99, 1728.41 ) LPos=( -435.44, 207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -441.19, 1355.05, 1723.55 ) LPos=( -441.19, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -469.19, 1334.00, 1756.97 ) LPos=( -469.19, 173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -463.44, 1358.11, 1718.68 ) LPos=( -463.44, 218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -485.69, 1337.07, 1752.11 ) LPos=( -485.69, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -513.69, 1340.13, 1747.24 ) LPos=( -513.69, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -510.81, 1340.13, 1747.24 ) LPos=( -510.81, 185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -538.81, 1353.52, 1725.98 ) LPos=( -538.81, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -581.19, 1337.07, 1752.11 ) LPos=( -581.19, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -563.94, 1337.07, 1752.11 ) LPos=( -563.94, 179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -609.19, 1344.73, 1739.94 ) LPos=( -609.19, 193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -603.44, 1355.05, 1723.55 ) LPos=( -603.44, 213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -606.31, 1353.52, 1725.98 ) LPos=( -606.31, 210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 609.19, 1306.96, 1799.92 ) LPos=( 609.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 609.19, 1310.02, 1795.05 ) LPos=( 609.19, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 609.19, 1311.55, 1792.62 ) LPos=( 609.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 612.06, 1310.02, 1795.05 ) LPos=( 612.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 569.69, 1329.54, 1764.06 ) LPos=( 569.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 569.69, 1328.01, 1766.49 ) LPos=( 569.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 563.94, 1326.47, 1768.92 ) LPos=( 563.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 535.94, 1306.96, 1799.92 ) LPos=( 535.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 553.19, 1313.09, 1790.19 ) LPos=( 553.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 556.06, 1314.62, 1787.75 ) LPos=( 556.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 544.56, 1329.54, 1764.06 ) LPos=( 544.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 510.81, 1314.62, 1787.75 ) LPos=( 510.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 519.44, 1306.96, 1799.92 ) LPos=( 519.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 528.06, 1326.47, 1768.92 ) LPos=( 528.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 522.31, 1324.94, 1771.36 ) LPos=( 522.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 522.31, 1323.41, 1773.79 ) LPos=( 522.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 513.69, 1320.35, 1778.66 ) LPos=( 513.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 479.94, 1308.49, 1797.48 ) LPos=( 479.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 488.56, 1305.43, 1802.35 ) LPos=( 488.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 497.19, 1308.49, 1797.48 ) LPos=( 497.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 500.06, 1305.43, 1802.35 ) LPos=( 500.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 485.69, 1328.01, 1766.49 ) LPos=( 485.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 460.56, 1313.09, 1790.19 ) LPos=( 460.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 454.81, 1306.96, 1799.92 ) LPos=( 454.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 463.44, 1329.54, 1764.06 ) LPos=( 463.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 463.44, 1328.01, 1766.49 ) LPos=( 463.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 457.69, 1326.47, 1768.92 ) LPos=( 457.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 429.69, 1311.55, 1792.62 ) LPos=( 429.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 441.19, 1303.89, 1804.78 ) LPos=( 441.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 441.19, 1306.96, 1799.92 ) LPos=( 441.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 438.31, 1329.54, 1764.06 ) LPos=( 438.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 395.94, 1311.55, 1792.62 ) LPos=( 395.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 395.94, 1310.02, 1795.05 ) LPos=( 395.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 398.81, 1310.02, 1795.05 ) LPos=( 398.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 404.56, 1310.02, 1795.05 ) LPos=( 404.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 407.44, 1308.49, 1797.48 ) LPos=( 407.44, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 395.94, 1306.96, 1799.92 ) LPos=( 395.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 398.81, 1306.96, 1799.92 ) LPos=( 398.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 404.56, 1306.96, 1799.92 ) LPos=( 404.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 398.81, 1305.43, 1802.35 ) LPos=( 398.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 410.31, 1303.89, 1804.78 ) LPos=( 410.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 401.69, 1328.01, 1766.49 ) LPos=( 401.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 401.69, 1321.88, 1776.22 ) LPos=( 401.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 395.94, 1324.94, 1771.36 ) LPos=( 395.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 367.94, 1310.02, 1795.05 ) LPos=( 367.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 376.56, 1303.89, 1804.78 ) LPos=( 376.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, 1314.62, 1787.75 ) LPos=( 382.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 388.06, 1311.55, 1792.62 ) LPos=( 388.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 388.06, 1313.09, 1790.19 ) LPos=( 388.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 388.06, 1314.62, 1787.75 ) LPos=( 388.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 379.44, 1321.88, 1776.22 ) LPos=( 379.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 354.31, 1313.09, 1790.19 ) LPos=( 354.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1313.09, 1790.19 ) LPos=( 357.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 345.69, 1306.96, 1799.92 ) LPos=( 345.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 348.56, 1306.96, 1799.92 ) LPos=( 348.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, 1328.01, 1766.49 ) LPos=( 360.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 360.06, 1321.88, 1776.22 ) LPos=( 360.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 360.06, 1320.35, 1778.66 ) LPos=( 360.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 360.06, 1318.81, 1781.09 ) LPos=( 360.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 357.19, 1324.94, 1771.36 ) LPos=( 357.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1320.35, 1778.66 ) LPos=( 357.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 354.31, 1324.94, 1771.36 ) LPos=( 354.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 354.31, 1321.88, 1776.22 ) LPos=( 354.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 354.31, 1318.81, 1781.09 ) LPos=( 354.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 351.44, 1328.01, 1766.49 ) LPos=( 351.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 351.44, 1321.88, 1776.22 ) LPos=( 351.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 348.56, 1318.81, 1781.09 ) LPos=( 348.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 342.81, 1320.35, 1778.66 ) LPos=( 342.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 339.94, 1320.35, 1778.66 ) LPos=( 339.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 339.94, 1318.81, 1781.09 ) LPos=( 339.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 311.94, 1314.62, 1787.75 ) LPos=( 311.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, 1305.43, 1802.35 ) LPos=( 314.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 317.69, 1306.96, 1799.92 ) LPos=( 317.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 317.69, 1308.49, 1797.48 ) LPos=( 317.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 329.19, 1314.62, 1787.75 ) LPos=( 329.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 311.94, 1321.88, 1776.22 ) LPos=( 311.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 311.94, 1323.41, 1773.79 ) LPos=( 311.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 323.44, 1328.01, 1766.49 ) LPos=( 323.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, 1314.62, 1787.75 ) LPos=( 304.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 298.31, 1313.09, 1790.19 ) LPos=( 298.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 295.44, 1311.55, 1792.62 ) LPos=( 295.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 286.81, 1310.02, 1795.05 ) LPos=( 286.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 289.69, 1310.02, 1795.05 ) LPos=( 289.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, 1308.49, 1797.48 ) LPos=( 283.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 286.81, 1308.49, 1797.48 ) LPos=( 286.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 289.69, 1308.49, 1797.48 ) LPos=( 289.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 283.94, 1306.96, 1799.92 ) LPos=( 283.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 304.06, 1306.96, 1799.92 ) LPos=( 304.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 298.31, 1305.43, 1802.35 ) LPos=( 298.31, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 301.19, 1305.43, 1802.35 ) LPos=( 301.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, 1303.89, 1804.78 ) LPos=( 283.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 286.81, 1303.89, 1804.78 ) LPos=( 286.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 295.44, 1303.89, 1804.78 ) LPos=( 295.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 304.06, 1329.54, 1764.06 ) LPos=( 304.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, 1326.47, 1768.92 ) LPos=( 304.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 301.19, 1323.41, 1773.79 ) LPos=( 301.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 261.69, 1306.96, 1799.92 ) LPos=( 261.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 261.69, 1311.55, 1792.62 ) LPos=( 261.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 267.44, 1310.02, 1795.05 ) LPos=( 267.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 273.19, 1313.09, 1790.19 ) LPos=( 273.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 273.19, 1314.62, 1787.75 ) LPos=( 273.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 276.06, 1311.55, 1792.62 ) LPos=( 276.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 258.81, 1318.81, 1781.09 ) LPos=( 258.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1328.01, 1766.49 ) LPos=( 273.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 255.94, 1328.01, 1766.49 ) LPos=( 255.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, 1313.09, 1790.19 ) LPos=( 227.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 245.19, 1311.55, 1792.62 ) LPos=( 245.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 230.81, 1306.96, 1799.92 ) LPos=( 230.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 236.56, 1303.89, 1804.78 ) LPos=( 236.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 239.44, 1303.89, 1804.78 ) LPos=( 239.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 242.31, 1303.89, 1804.78 ) LPos=( 242.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, 1323.41, 1773.79 ) LPos=( 248.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, 1328.01, 1766.49 ) LPos=( 245.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 245.19, 1318.81, 1781.09 ) LPos=( 245.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 239.44, 1320.35, 1778.66 ) LPos=( 239.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 236.56, 1328.01, 1766.49 ) LPos=( 236.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 233.69, 1323.41, 1773.79 ) LPos=( 233.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 227.94, 1329.54, 1764.06 ) LPos=( 227.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, 1328.01, 1766.49 ) LPos=( 227.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 227.94, 1320.35, 1778.66 ) LPos=( 227.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 227.94, 1318.81, 1781.09 ) LPos=( 227.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 199.94, 1310.02, 1795.05 ) LPos=( 199.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 199.94, 1313.09, 1790.19 ) LPos=( 199.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1314.62, 1787.75 ) LPos=( 199.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 202.81, 1303.89, 1804.78 ) LPos=( 202.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 208.56, 1310.02, 1795.05 ) LPos=( 208.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 214.31, 1313.09, 1790.19 ) LPos=( 214.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 217.19, 1308.49, 1797.48 ) LPos=( 217.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 220.06, 1306.96, 1799.92 ) LPos=( 220.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, 1311.55, 1792.62 ) LPos=( 220.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 214.31, 1318.81, 1781.09 ) LPos=( 214.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 208.56, 1318.81, 1781.09 ) LPos=( 208.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 202.81, 1318.81, 1781.09 ) LPos=( 202.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 214.31, 1321.88, 1776.22 ) LPos=( 214.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 205.69, 1321.88, 1776.22 ) LPos=( 205.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 214.31, 1323.41, 1773.79 ) LPos=( 214.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 205.69, 1323.41, 1773.79 ) LPos=( 205.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 202.81, 1324.94, 1771.36 ) LPos=( 202.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 199.94, 1324.94, 1771.36 ) LPos=( 199.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 199.94, 1329.54, 1764.06 ) LPos=( 199.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 177.69, 1314.62, 1787.75 ) LPos=( 177.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 180.56, 1314.62, 1787.75 ) LPos=( 180.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 171.94, 1313.09, 1790.19 ) LPos=( 171.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 174.81, 1313.09, 1790.19 ) LPos=( 174.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 180.56, 1313.09, 1790.19 ) LPos=( 180.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 186.31, 1313.09, 1790.19 ) LPos=( 186.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 189.19, 1313.09, 1790.19 ) LPos=( 189.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 192.06, 1313.09, 1790.19 ) LPos=( 192.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 171.94, 1311.55, 1792.62 ) LPos=( 171.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 183.44, 1311.55, 1792.62 ) LPos=( 183.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, 1310.02, 1795.05 ) LPos=( 183.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 186.31, 1310.02, 1795.05 ) LPos=( 186.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 171.94, 1308.49, 1797.48 ) LPos=( 171.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 189.19, 1305.43, 1802.35 ) LPos=( 189.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 189.19, 1303.89, 1804.78 ) LPos=( 189.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 192.06, 1320.35, 1778.66 ) LPos=( 192.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, 1323.41, 1773.79 ) LPos=( 189.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 189.19, 1321.88, 1776.22 ) LPos=( 189.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, 1329.54, 1764.06 ) LPos=( 183.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, 1328.01, 1766.49 ) LPos=( 183.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 183.44, 1326.47, 1768.92 ) LPos=( 183.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, 1323.41, 1773.79 ) LPos=( 183.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 183.44, 1321.88, 1776.22 ) LPos=( 183.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 180.56, 1326.47, 1768.92 ) LPos=( 180.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 177.69, 1329.54, 1764.06 ) LPos=( 177.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, 1324.94, 1771.36 ) LPos=( 177.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 177.69, 1318.81, 1781.09 ) LPos=( 177.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 174.81, 1329.54, 1764.06 ) LPos=( 174.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, 1328.01, 1766.49 ) LPos=( 174.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 174.81, 1323.41, 1773.79 ) LPos=( 174.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 174.81, 1318.81, 1781.09 ) LPos=( 174.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, 1329.54, 1764.06 ) LPos=( 171.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 171.94, 1328.01, 1766.49 ) LPos=( 171.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 171.94, 1326.47, 1768.92 ) LPos=( 171.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 171.94, 1324.94, 1771.36 ) LPos=( 171.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, 1321.88, 1776.22 ) LPos=( 171.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 171.94, 1320.35, 1778.66 ) LPos=( 171.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 143.94, 1303.89, 1804.78 ) LPos=( 143.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 143.94, 1305.43, 1802.35 ) LPos=( 143.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, 1308.49, 1797.48 ) LPos=( 143.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 143.94, 1313.09, 1790.19 ) LPos=( 143.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 146.81, 1305.43, 1802.35 ) LPos=( 146.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 146.81, 1306.96, 1799.92 ) LPos=( 146.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 146.81, 1308.49, 1797.48 ) LPos=( 146.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 146.81, 1310.02, 1795.05 ) LPos=( 146.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 146.81, 1311.55, 1792.62 ) LPos=( 146.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 146.81, 1313.09, 1790.19 ) LPos=( 146.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 149.69, 1306.96, 1799.92 ) LPos=( 149.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 149.69, 1308.49, 1797.48 ) LPos=( 149.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 149.69, 1311.55, 1792.62 ) LPos=( 149.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 149.69, 1314.62, 1787.75 ) LPos=( 149.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 152.56, 1313.09, 1790.19 ) LPos=( 152.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 152.56, 1314.62, 1787.75 ) LPos=( 152.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, 1313.09, 1790.19 ) LPos=( 155.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 155.44, 1314.62, 1787.75 ) LPos=( 155.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 158.31, 1311.55, 1792.62 ) LPos=( 158.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 158.31, 1313.09, 1790.19 ) LPos=( 158.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 158.31, 1314.62, 1787.75 ) LPos=( 158.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 161.19, 1314.62, 1787.75 ) LPos=( 161.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 158.31, 1318.81, 1781.09 ) LPos=( 158.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, 1318.81, 1781.09 ) LPos=( 152.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, 1318.81, 1781.09 ) LPos=( 149.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 146.81, 1318.81, 1781.09 ) LPos=( 146.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 161.19, 1320.35, 1778.66 ) LPos=( 161.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 158.31, 1320.35, 1778.66 ) LPos=( 158.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 155.44, 1320.35, 1778.66 ) LPos=( 155.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 152.56, 1320.35, 1778.66 ) LPos=( 152.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1320.35, 1778.66 ) LPos=( 149.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 161.19, 1321.88, 1776.22 ) LPos=( 161.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 164.06, 1323.41, 1773.79 ) LPos=( 164.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 155.44, 1323.41, 1773.79 ) LPos=( 155.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 149.69, 1323.41, 1773.79 ) LPos=( 149.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 143.94, 1323.41, 1773.79 ) LPos=( 143.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 164.06, 1324.94, 1771.36 ) LPos=( 164.06, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 161.19, 1324.94, 1771.36 ) LPos=( 161.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 158.31, 1324.94, 1771.36 ) LPos=( 158.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 152.56, 1324.94, 1771.36 ) LPos=( 152.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 155.44, 1326.47, 1768.92 ) LPos=( 155.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 152.56, 1326.47, 1768.92 ) LPos=( 152.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 146.81, 1326.47, 1768.92 ) LPos=( 146.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 164.06, 1328.01, 1766.49 ) LPos=( 164.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 152.56, 1328.01, 1766.49 ) LPos=( 152.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, 1328.01, 1766.49 ) LPos=( 143.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, 1329.54, 1764.06 ) LPos=( 164.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 161.19, 1329.54, 1764.06 ) LPos=( 161.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 149.69, 1329.54, 1764.06 ) LPos=( 149.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 143.94, 1329.54, 1764.06 ) LPos=( 143.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 115.94, 1314.62, 1787.75 ) LPos=( 115.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1314.62, 1787.75 ) LPos=( 124.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1313.09, 1790.19 ) LPos=( 118.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 121.69, 1313.09, 1790.19 ) LPos=( 121.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, 1313.09, 1790.19 ) LPos=( 127.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, 1313.09, 1790.19 ) LPos=( 130.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, 1313.09, 1790.19 ) LPos=( 133.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 115.94, 1311.55, 1792.62 ) LPos=( 115.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 118.81, 1311.55, 1792.62 ) LPos=( 118.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, 1311.55, 1792.62 ) LPos=( 121.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 133.19, 1311.55, 1792.62 ) LPos=( 133.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, 1310.02, 1795.05 ) LPos=( 118.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, 1310.02, 1795.05 ) LPos=( 121.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 124.56, 1310.02, 1795.05 ) LPos=( 124.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1310.02, 1795.05 ) LPos=( 127.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, 1310.02, 1795.05 ) LPos=( 130.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 136.06, 1310.02, 1795.05 ) LPos=( 136.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 115.94, 1308.49, 1797.48 ) LPos=( 115.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 118.81, 1308.49, 1797.48 ) LPos=( 118.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 121.69, 1308.49, 1797.48 ) LPos=( 121.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 133.19, 1308.49, 1797.48 ) LPos=( 133.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, 1306.96, 1799.92 ) LPos=( 115.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 118.81, 1306.96, 1799.92 ) LPos=( 118.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 124.56, 1306.96, 1799.92 ) LPos=( 124.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 127.44, 1306.96, 1799.92 ) LPos=( 127.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 133.19, 1306.96, 1799.92 ) LPos=( 133.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, 1306.96, 1799.92 ) LPos=( 136.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, 1305.43, 1802.35 ) LPos=( 115.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, 1305.43, 1802.35 ) LPos=( 124.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 136.06, 1305.43, 1802.35 ) LPos=( 136.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1303.89, 1804.78 ) LPos=( 115.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, 1303.89, 1804.78 ) LPos=( 121.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 127.44, 1303.89, 1804.78 ) LPos=( 127.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 130.31, 1303.89, 1804.78 ) LPos=( 130.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, 1303.89, 1804.78 ) LPos=( 133.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 136.06, 1326.47, 1768.92 ) LPos=( 136.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 136.06, 1321.88, 1776.22 ) LPos=( 136.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 133.19, 1328.01, 1766.49 ) LPos=( 133.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 133.19, 1323.41, 1773.79 ) LPos=( 133.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, 1321.88, 1776.22 ) LPos=( 133.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, 1320.35, 1778.66 ) LPos=( 133.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 130.31, 1329.54, 1764.06 ) LPos=( 130.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 130.31, 1326.47, 1768.92 ) LPos=( 130.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, 1324.94, 1771.36 ) LPos=( 130.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 130.31, 1323.41, 1773.79 ) LPos=( 130.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1321.88, 1776.22 ) LPos=( 130.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, 1320.35, 1778.66 ) LPos=( 130.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 127.44, 1328.01, 1766.49 ) LPos=( 127.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 127.44, 1326.47, 1768.92 ) LPos=( 127.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 127.44, 1324.94, 1771.36 ) LPos=( 127.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, 1323.41, 1773.79 ) LPos=( 127.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 127.44, 1321.88, 1776.22 ) LPos=( 127.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, 1320.35, 1778.66 ) LPos=( 127.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 124.56, 1326.47, 1768.92 ) LPos=( 124.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, 1324.94, 1771.36 ) LPos=( 124.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, 1329.54, 1764.06 ) LPos=( 121.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 121.69, 1328.01, 1766.49 ) LPos=( 121.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 121.69, 1324.94, 1771.36 ) LPos=( 121.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 121.69, 1323.41, 1773.79 ) LPos=( 121.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, 1321.88, 1776.22 ) LPos=( 121.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 121.69, 1320.35, 1778.66 ) LPos=( 121.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, 1328.01, 1766.49 ) LPos=( 118.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1323.41, 1773.79 ) LPos=( 118.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 118.81, 1321.88, 1776.22 ) LPos=( 118.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 118.81, 1320.35, 1778.66 ) LPos=( 118.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, 1318.81, 1781.09 ) LPos=( 118.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, 1329.54, 1764.06 ) LPos=( 115.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 115.94, 1326.47, 1768.92 ) LPos=( 115.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, 1324.94, 1771.36 ) LPos=( 115.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 115.94, 1323.41, 1773.79 ) LPos=( 115.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, 1321.88, 1776.22 ) LPos=( 115.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, 1318.81, 1781.09 ) LPos=( 115.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, 1303.89, 1804.78 ) LPos=( 87.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 87.94, 1306.96, 1799.92 ) LPos=( 87.94, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, 1310.02, 1795.05 ) LPos=( 87.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 90.81, 1303.89, 1804.78 ) LPos=( 90.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 90.81, 1310.02, 1795.05 ) LPos=( 90.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 90.81, 1311.55, 1792.62 ) LPos=( 90.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1313.09, 1790.19 ) LPos=( 90.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 90.81, 1314.62, 1787.75 ) LPos=( 90.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, 1306.96, 1799.92 ) LPos=( 93.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, 1310.02, 1795.05 ) LPos=( 93.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, 1311.55, 1792.62 ) LPos=( 93.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1303.89, 1804.78 ) LPos=( 96.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 96.56, 1305.43, 1802.35 ) LPos=( 96.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1306.96, 1799.92 ) LPos=( 96.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, 1310.02, 1795.05 ) LPos=( 96.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, 1303.89, 1804.78 ) LPos=( 99.44, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, 1305.43, 1802.35 ) LPos=( 99.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1308.49, 1797.48 ) LPos=( 99.44, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, 1310.02, 1795.05 ) LPos=( 99.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 99.44, 1311.55, 1792.62 ) LPos=( 99.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1306.96, 1799.92 ) LPos=( 102.31, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, 1310.02, 1795.05 ) LPos=( 102.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, 1313.09, 1790.19 ) LPos=( 102.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 105.19, 1306.96, 1799.92 ) LPos=( 105.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 105.19, 1311.55, 1792.62 ) LPos=( 105.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, 1314.62, 1787.75 ) LPos=( 105.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1303.89, 1804.78 ) LPos=( 108.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, 1311.55, 1792.62 ) LPos=( 108.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, 1313.09, 1790.19 ) LPos=( 108.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 108.06, 1314.62, 1787.75 ) LPos=( 108.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 108.06, 1318.81, 1781.09 ) LPos=( 108.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1318.81, 1781.09 ) LPos=( 105.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 99.44, 1318.81, 1781.09 ) LPos=( 99.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 96.56, 1318.81, 1781.09 ) LPos=( 96.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, 1318.81, 1781.09 ) LPos=( 93.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, 1320.35, 1778.66 ) LPos=( 105.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, 1320.35, 1778.66 ) LPos=( 99.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, 1320.35, 1778.66 ) LPos=( 96.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 108.06, 1321.88, 1776.22 ) LPos=( 108.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1321.88, 1776.22 ) LPos=( 96.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 90.81, 1321.88, 1776.22 ) LPos=( 90.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, 1323.41, 1773.79 ) LPos=( 108.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1323.41, 1773.79 ) LPos=( 90.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 105.19, 1324.94, 1771.36 ) LPos=( 105.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, 1324.94, 1771.36 ) LPos=( 93.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 93.69, 1326.47, 1768.92 ) LPos=( 93.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, 1328.01, 1766.49 ) LPos=( 108.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, 1328.01, 1766.49 ) LPos=( 102.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 99.44, 1328.01, 1766.49 ) LPos=( 99.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, 1328.01, 1766.49 ) LPos=( 93.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, 1328.01, 1766.49 ) LPos=( 90.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, 1329.54, 1764.06 ) LPos=( 102.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 99.44, 1329.54, 1764.06 ) LPos=( 99.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, 1329.54, 1764.06 ) LPos=( 93.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1314.62, 1787.75 ) LPos=( 68.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 74.31, 1314.62, 1787.75 ) LPos=( 74.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, 1313.09, 1790.19 ) LPos=( 68.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, 1311.55, 1792.62 ) LPos=( 77.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, 1311.55, 1792.62 ) LPos=( 80.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, 1310.02, 1795.05 ) LPos=( 62.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, 1310.02, 1795.05 ) LPos=( 77.19, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, 1310.02, 1795.05 ) LPos=( 80.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, 1308.49, 1797.48 ) LPos=( 65.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1308.49, 1797.48 ) LPos=( 68.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 77.19, 1308.49, 1797.48 ) LPos=( 77.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1306.96, 1799.92 ) LPos=( 65.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, 1306.96, 1799.92 ) LPos=( 71.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1306.96, 1799.92 ) LPos=( 77.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 80.06, 1305.43, 1802.35 ) LPos=( 80.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, 1303.89, 1804.78 ) LPos=( 65.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, 1303.89, 1804.78 ) LPos=( 68.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 80.06, 1329.54, 1764.06 ) LPos=( 80.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, 1328.01, 1766.49 ) LPos=( 80.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, 1320.35, 1778.66 ) LPos=( 80.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 77.19, 1329.54, 1764.06 ) LPos=( 77.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 77.19, 1324.94, 1771.36 ) LPos=( 77.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1320.35, 1778.66 ) LPos=( 77.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 74.31, 1328.01, 1766.49 ) LPos=( 74.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1323.41, 1773.79 ) LPos=( 71.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 71.44, 1320.35, 1778.66 ) LPos=( 71.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 68.56, 1321.88, 1776.22 ) LPos=( 68.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, 1318.81, 1781.09 ) LPos=( 68.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, 1329.54, 1764.06 ) LPos=( 65.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, 1328.01, 1766.49 ) LPos=( 65.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 65.69, 1324.94, 1771.36 ) LPos=( 65.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 65.69, 1323.41, 1773.79 ) LPos=( 65.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 65.69, 1321.88, 1776.22 ) LPos=( 65.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, 1318.81, 1781.09 ) LPos=( 65.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 62.81, 1326.47, 1768.92 ) LPos=( 62.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, 1324.94, 1771.36 ) LPos=( 62.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 62.81, 1318.81, 1781.09 ) LPos=( 62.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, 1324.94, 1771.36 ) LPos=( 59.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, 1321.88, 1776.22 ) LPos=( 59.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 59.94, 1318.81, 1781.09 ) LPos=( 59.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 31.94, 1313.09, 1790.19 ) LPos=( 31.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, 1314.62, 1787.75 ) LPos=( 31.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, 1310.02, 1795.05 ) LPos=( 34.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, 1305.43, 1802.35 ) LPos=( 37.69, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, 1306.96, 1799.92 ) LPos=( 40.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, 1311.55, 1792.62 ) LPos=( 40.56, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 43.44, 1306.96, 1799.92 ) LPos=( 43.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, 1303.89, 1804.78 ) LPos=( 46.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1313.09, 1790.19 ) LPos=( 46.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 49.19, 1303.89, 1804.78 ) LPos=( 49.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1308.49, 1797.48 ) LPos=( 49.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, 1311.55, 1792.62 ) LPos=( 52.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 52.06, 1318.81, 1781.09 ) LPos=( 52.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, 1318.81, 1781.09 ) LPos=( 40.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1318.81, 1781.09 ) LPos=( 34.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 37.69, 1320.35, 1778.66 ) LPos=( 37.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, 1320.35, 1778.66 ) LPos=( 34.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, 1321.88, 1776.22 ) LPos=( 52.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, 1321.88, 1776.22 ) LPos=( 49.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, 1321.88, 1776.22 ) LPos=( 46.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, 1321.88, 1776.22 ) LPos=( 43.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, 1321.88, 1776.22 ) LPos=( 37.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 34.81, 1321.88, 1776.22 ) LPos=( 34.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, 1323.41, 1773.79 ) LPos=( 52.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1323.41, 1773.79 ) LPos=( 49.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 46.31, 1323.41, 1773.79 ) LPos=( 46.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 43.44, 1323.41, 1773.79 ) LPos=( 43.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 49.19, 1324.94, 1771.36 ) LPos=( 49.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1324.94, 1771.36 ) LPos=( 46.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1324.94, 1771.36 ) LPos=( 43.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, 1326.47, 1768.92 ) LPos=( 46.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1326.47, 1768.92 ) LPos=( 43.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 40.56, 1326.47, 1768.92 ) LPos=( 40.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, 1326.47, 1768.92 ) LPos=( 37.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1326.47, 1768.92 ) LPos=( 31.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 52.06, 1328.01, 1766.49 ) LPos=( 52.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, 1328.01, 1766.49 ) LPos=( 49.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1328.01, 1766.49 ) LPos=( 37.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, 1328.01, 1766.49 ) LPos=( 34.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 31.94, 1328.01, 1766.49 ) LPos=( 31.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 37.69, 1329.54, 1764.06 ) LPos=( 37.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 34.81, 1329.54, 1764.06 ) LPos=( 34.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 31.94, 1329.54, 1764.06 ) LPos=( 31.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, 1314.62, 1787.75 ) LPos=( 3.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, 1314.62, 1787.75 ) LPos=( 6.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, 1314.62, 1787.75 ) LPos=( 9.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, 1314.62, 1787.75 ) LPos=( 18.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, 1313.09, 1790.19 ) LPos=( 6.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, 1313.09, 1790.19 ) LPos=( 9.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 12.56, 1313.09, 1790.19 ) LPos=( 12.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, 1313.09, 1790.19 ) LPos=( 15.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1311.55, 1792.62 ) LPos=( 18.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, 1310.02, 1795.05 ) LPos=( 24.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, 1308.49, 1797.48 ) LPos=( 3.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1308.49, 1797.48 ) LPos=( 21.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, 1308.49, 1797.48 ) LPos=( 24.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, 1306.96, 1799.92 ) LPos=( 21.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, 1306.96, 1799.92 ) LPos=( 24.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, 1305.43, 1802.35 ) LPos=( 3.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1305.43, 1802.35 ) LPos=( 6.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1305.43, 1802.35 ) LPos=( 21.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 12.56, 1303.89, 1804.78 ) LPos=( 12.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, 1303.89, 1804.78 ) LPos=( 18.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, 1328.01, 1766.49 ) LPos=( 21.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1321.88, 1776.22 ) LPos=( 21.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1329.54, 1764.06 ) LPos=( 18.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1328.01, 1766.49 ) LPos=( 18.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1323.41, 1773.79 ) LPos=( 18.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1321.88, 1776.22 ) LPos=( 18.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, 1318.81, 1781.09 ) LPos=( 18.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, 1329.54, 1764.06 ) LPos=( 15.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 15.44, 1328.01, 1766.49 ) LPos=( 15.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 12.56, 1329.54, 1764.06 ) LPos=( 12.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, 1326.47, 1768.92 ) LPos=( 12.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1324.94, 1771.36 ) LPos=( 12.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, 1323.41, 1773.79 ) LPos=( 12.56, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, 1329.54, 1764.06 ) LPos=( 9.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 9.69, 1323.41, 1773.79 ) LPos=( 9.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1321.88, 1776.22 ) LPos=( 9.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1328.01, 1766.49 ) LPos=( 6.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1328.01, 1766.49 ) LPos=( 3.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3.94, 1324.94, 1771.36 ) LPos=( 3.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3.94, 1320.35, 1778.66 ) LPos=( 3.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -24.06, 1303.89, 1804.78 ) LPos=( -24.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -24.06, 1305.43, 1802.35 ) LPos=( -24.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, 1306.96, 1799.92 ) LPos=( -24.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, 1308.49, 1797.48 ) LPos=( -24.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, 1310.02, 1795.05 ) LPos=( -24.06, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, 1314.62, 1787.75 ) LPos=( -24.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1303.89, 1804.78 ) LPos=( -21.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, 1306.96, 1799.92 ) LPos=( -21.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1313.09, 1790.19 ) LPos=( -21.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -15.44, 1306.96, 1799.92 ) LPos=( -15.44, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -12.56, 1306.96, 1799.92 ) LPos=( -12.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1308.49, 1797.48 ) LPos=( -12.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, 1305.43, 1802.35 ) LPos=( -9.69, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, 1306.96, 1799.92 ) LPos=( -9.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, 1311.55, 1792.62 ) LPos=( -9.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, 1313.09, 1790.19 ) LPos=( -9.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, 1305.43, 1802.35 ) LPos=( -6.81, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, 1310.02, 1795.05 ) LPos=( -3.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3.94, 1311.55, 1792.62 ) LPos=( -3.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3.94, 1313.09, 1790.19 ) LPos=( -3.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3.94, 1318.81, 1781.09 ) LPos=( -3.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, 1318.81, 1781.09 ) LPos=( -9.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -18.31, 1318.81, 1781.09 ) LPos=( -18.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -21.19, 1318.81, 1781.09 ) LPos=( -21.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3.94, 1320.35, 1778.66 ) LPos=( -3.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, 1320.35, 1778.66 ) LPos=( -6.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1320.35, 1778.66 ) LPos=( -9.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -12.56, 1320.35, 1778.66 ) LPos=( -12.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -18.31, 1320.35, 1778.66 ) LPos=( -18.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1320.35, 1778.66 ) LPos=( -21.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, 1320.35, 1778.66 ) LPos=( -24.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -6.81, 1321.88, 1776.22 ) LPos=( -6.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -9.69, 1321.88, 1776.22 ) LPos=( -9.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3.94, 1323.41, 1773.79 ) LPos=( -3.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -21.19, 1324.94, 1771.36 ) LPos=( -21.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3.94, 1326.47, 1768.92 ) LPos=( -3.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -18.31, 1326.47, 1768.92 ) LPos=( -18.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -21.19, 1326.47, 1768.92 ) LPos=( -21.19, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1328.01, 1766.49 ) LPos=( -15.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -18.31, 1328.01, 1766.49 ) LPos=( -18.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -21.19, 1328.01, 1766.49 ) LPos=( -21.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -9.69, 1329.54, 1764.06 ) LPos=( -9.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -18.31, 1329.54, 1764.06 ) LPos=( -18.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, 1329.54, 1764.06 ) LPos=( -21.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, 1329.54, 1764.06 ) LPos=( -24.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, 1314.62, 1787.75 ) LPos=( -52.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -43.44, 1314.62, 1787.75 ) LPos=( -43.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -40.56, 1314.62, 1787.75 ) LPos=( -40.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1314.62, 1787.75 ) LPos=( -31.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -46.31, 1313.09, 1790.19 ) LPos=( -46.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, 1313.09, 1790.19 ) LPos=( -43.44, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -40.56, 1313.09, 1790.19 ) LPos=( -40.56, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, 1313.09, 1790.19 ) LPos=( -31.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, 1311.55, 1792.62 ) LPos=( -49.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, 1311.55, 1792.62 ) LPos=( -43.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -31.94, 1311.55, 1792.62 ) LPos=( -31.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1308.49, 1797.48 ) LPos=( -52.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, 1308.49, 1797.48 ) LPos=( -37.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -34.81, 1308.49, 1797.48 ) LPos=( -34.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -52.06, 1306.96, 1799.92 ) LPos=( -52.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -49.19, 1306.96, 1799.92 ) LPos=( -49.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, 1306.96, 1799.92 ) LPos=( -37.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, 1305.43, 1802.35 ) LPos=( -43.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, 1303.89, 1804.78 ) LPos=( -52.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -49.19, 1303.89, 1804.78 ) LPos=( -49.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, 1303.89, 1804.78 ) LPos=( -40.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, 1303.89, 1804.78 ) LPos=( -34.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -31.94, 1329.54, 1764.06 ) LPos=( -31.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1328.01, 1766.49 ) LPos=( -31.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, 1326.47, 1768.92 ) LPos=( -31.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -31.94, 1323.41, 1773.79 ) LPos=( -31.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -31.94, 1320.35, 1778.66 ) LPos=( -31.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, 1329.54, 1764.06 ) LPos=( -34.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -34.81, 1326.47, 1768.92 ) LPos=( -34.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, 1318.81, 1781.09 ) LPos=( -34.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -37.69, 1323.41, 1773.79 ) LPos=( -37.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, 1321.88, 1776.22 ) LPos=( -37.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -37.69, 1318.81, 1781.09 ) LPos=( -37.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1329.54, 1764.06 ) LPos=( -40.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -40.56, 1328.01, 1766.49 ) LPos=( -40.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, 1321.88, 1776.22 ) LPos=( -40.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, 1318.81, 1781.09 ) LPos=( -40.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, 1329.54, 1764.06 ) LPos=( -43.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, 1326.47, 1768.92 ) LPos=( -43.44, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, 1323.41, 1773.79 ) LPos=( -43.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1318.81, 1781.09 ) LPos=( -43.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1324.94, 1771.36 ) LPos=( -46.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, 1318.81, 1781.09 ) LPos=( -46.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, 1323.41, 1773.79 ) LPos=( -49.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -49.19, 1320.35, 1778.66 ) LPos=( -49.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, 1318.81, 1781.09 ) LPos=( -49.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -52.06, 1324.94, 1771.36 ) LPos=( -52.06, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -52.06, 1323.41, 1773.79 ) LPos=( -52.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -52.06, 1320.35, 1778.66 ) LPos=( -52.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, 1303.89, 1804.78 ) LPos=( -80.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1311.55, 1792.62 ) LPos=( -80.06, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -77.19, 1305.43, 1802.35 ) LPos=( -77.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, 1311.55, 1792.62 ) LPos=( -77.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, 1314.62, 1787.75 ) LPos=( -77.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -74.31, 1313.09, 1790.19 ) LPos=( -74.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, 1314.62, 1787.75 ) LPos=( -74.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1310.02, 1795.05 ) LPos=( -71.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, 1310.02, 1795.05 ) LPos=( -68.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, 1314.62, 1787.75 ) LPos=( -68.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, 1306.96, 1799.92 ) LPos=( -65.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -62.81, 1313.09, 1790.19 ) LPos=( -62.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1308.49, 1797.48 ) LPos=( -59.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, 1313.09, 1790.19 ) LPos=( -59.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, 1318.81, 1781.09 ) LPos=( -59.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, 1318.81, 1781.09 ) LPos=( -62.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, 1318.81, 1781.09 ) LPos=( -68.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, 1318.81, 1781.09 ) LPos=( -71.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, 1318.81, 1781.09 ) LPos=( -80.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, 1320.35, 1778.66 ) LPos=( -62.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -65.69, 1320.35, 1778.66 ) LPos=( -65.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1320.35, 1778.66 ) LPos=( -68.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, 1320.35, 1778.66 ) LPos=( -74.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -80.06, 1320.35, 1778.66 ) LPos=( -80.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1321.88, 1776.22 ) LPos=( -59.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -62.81, 1321.88, 1776.22 ) LPos=( -62.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -71.44, 1321.88, 1776.22 ) LPos=( -71.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1323.41, 1773.79 ) LPos=( -62.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1323.41, 1773.79 ) LPos=( -80.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -59.94, 1324.94, 1771.36 ) LPos=( -59.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, 1324.94, 1771.36 ) LPos=( -62.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, 1324.94, 1771.36 ) LPos=( -65.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, 1324.94, 1771.36 ) LPos=( -71.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, 1324.94, 1771.36 ) LPos=( -77.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, 1326.47, 1768.92 ) LPos=( -59.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -74.31, 1326.47, 1768.92 ) LPos=( -74.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -65.69, 1328.01, 1766.49 ) LPos=( -65.69, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, 1329.54, 1764.06 ) LPos=( -62.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, 1329.54, 1764.06 ) LPos=( -68.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -74.31, 1329.54, 1764.06 ) LPos=( -74.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, 1329.54, 1764.06 ) LPos=( -77.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, 1314.62, 1787.75 ) LPos=( -90.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, 1314.62, 1787.75 ) LPos=( -87.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, 1313.09, 1790.19 ) LPos=( -93.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1313.09, 1790.19 ) LPos=( -90.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -90.81, 1308.49, 1797.48 ) LPos=( -90.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -87.94, 1308.49, 1797.48 ) LPos=( -87.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, 1306.96, 1799.92 ) LPos=( -96.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -93.69, 1305.43, 1802.35 ) LPos=( -93.69, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1305.43, 1802.35 ) LPos=( -87.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, 1303.89, 1804.78 ) LPos=( -108.06, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, 1324.94, 1771.36 ) LPos=( -87.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, 1318.81, 1781.09 ) LPos=( -87.94, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1326.47, 1768.92 ) LPos=( -90.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, 1323.41, 1773.79 ) LPos=( -90.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1320.35, 1778.66 ) LPos=( -90.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, 1318.81, 1781.09 ) LPos=( -90.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, 1320.35, 1778.66 ) LPos=( -93.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, 1318.81, 1781.09 ) LPos=( -93.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -96.56, 1329.54, 1764.06 ) LPos=( -96.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, 1328.01, 1766.49 ) LPos=( -96.56, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, 1324.94, 1771.36 ) LPos=( -96.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, 1321.88, 1776.22 ) LPos=( -96.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -96.56, 1318.81, 1781.09 ) LPos=( -96.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -99.44, 1318.81, 1781.09 ) LPos=( -99.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, 1324.94, 1771.36 ) LPos=( -102.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, 1321.88, 1776.22 ) LPos=( -102.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1320.35, 1778.66 ) LPos=( -102.31, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, 1321.88, 1776.22 ) LPos=( -105.19, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -105.19, 1320.35, 1778.66 ) LPos=( -105.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -108.06, 1328.01, 1766.49 ) LPos=( -108.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, 1324.94, 1771.36 ) LPos=( -108.06, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, 1323.41, 1773.79 ) LPos=( -108.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, 1320.35, 1778.66 ) LPos=( -108.06, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -108.06, 1318.81, 1781.09 ) LPos=( -108.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -136.06, 1306.96, 1799.92 ) LPos=( -136.06, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, 1308.49, 1797.48 ) LPos=( -136.06, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, 1314.62, 1787.75 ) LPos=( -136.06, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -133.19, 1305.43, 1802.35 ) LPos=( -133.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -133.19, 1306.96, 1799.92 ) LPos=( -133.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -133.19, 1308.49, 1797.48 ) LPos=( -133.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, 1313.09, 1790.19 ) LPos=( -133.19, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, 1314.62, 1787.75 ) LPos=( -133.19, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, 1313.09, 1790.19 ) LPos=( -130.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1310.02, 1795.05 ) LPos=( -127.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, 1311.55, 1792.62 ) LPos=( -127.44, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, 1314.62, 1787.75 ) LPos=( -127.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -124.56, 1303.89, 1804.78 ) LPos=( -124.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -124.56, 1305.43, 1802.35 ) LPos=( -124.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -124.56, 1308.49, 1797.48 ) LPos=( -124.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -124.56, 1311.55, 1792.62 ) LPos=( -124.56, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -121.69, 1303.89, 1804.78 ) LPos=( -121.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -115.94, 1313.09, 1790.19 ) LPos=( -115.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, 1314.62, 1787.75 ) LPos=( -115.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -127.44, 1318.81, 1781.09 ) LPos=( -127.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, 1318.81, 1781.09 ) LPos=( -133.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, 1320.35, 1778.66 ) LPos=( -127.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, 1320.35, 1778.66 ) LPos=( -133.19, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -115.94, 1321.88, 1776.22 ) LPos=( -115.94, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, 1321.88, 1776.22 ) LPos=( -121.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, 1321.88, 1776.22 ) LPos=( -124.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -127.44, 1321.88, 1776.22 ) LPos=( -127.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -115.94, 1323.41, 1773.79 ) LPos=( -115.94, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1323.41, 1773.79 ) LPos=( -127.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -130.31, 1323.41, 1773.79 ) LPos=( -130.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -136.06, 1323.41, 1773.79 ) LPos=( -136.06, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -121.69, 1324.94, 1771.36 ) LPos=( -121.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, 1324.94, 1771.36 ) LPos=( -127.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1324.94, 1771.36 ) LPos=( -133.19, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, 1326.47, 1768.92 ) LPos=( -130.31, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -136.06, 1326.47, 1768.92 ) LPos=( -136.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, 1328.01, 1766.49 ) LPos=( -118.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, 1328.01, 1766.49 ) LPos=( -130.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1329.54, 1764.06 ) LPos=( -115.94, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1329.54, 1764.06 ) LPos=( -121.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, 1329.54, 1764.06 ) LPos=( -136.06, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -158.31, 1314.62, 1787.75 ) LPos=( -158.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -146.81, 1314.62, 1787.75 ) LPos=( -146.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, 1313.09, 1790.19 ) LPos=( -158.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, 1311.55, 1792.62 ) LPos=( -158.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, 1311.55, 1792.62 ) LPos=( -146.81, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, 1310.02, 1795.05 ) LPos=( -155.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -149.69, 1310.02, 1795.05 ) LPos=( -149.69, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, 1310.02, 1795.05 ) LPos=( -143.94, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -161.19, 1306.96, 1799.92 ) LPos=( -161.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, 1305.43, 1802.35 ) LPos=( -143.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -158.31, 1303.89, 1804.78 ) LPos=( -158.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -146.81, 1303.89, 1804.78 ) LPos=( -146.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, 1303.89, 1804.78 ) LPos=( -143.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -143.94, 1324.94, 1771.36 ) LPos=( -143.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, 1324.94, 1771.36 ) LPos=( -149.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, 1323.41, 1773.79 ) LPos=( -149.69, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, 1324.94, 1771.36 ) LPos=( -152.56, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, 1320.35, 1778.66 ) LPos=( -152.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -155.44, 1328.01, 1766.49 ) LPos=( -155.44, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, 1324.94, 1771.36 ) LPos=( -155.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, 1321.88, 1776.22 ) LPos=( -155.44, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -155.44, 1318.81, 1781.09 ) LPos=( -155.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, 1328.01, 1766.49 ) LPos=( -158.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -158.31, 1323.41, 1773.79 ) LPos=( -158.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -161.19, 1328.01, 1766.49 ) LPos=( -161.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, 1306.96, 1799.92 ) LPos=( -186.31, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -183.44, 1305.43, 1802.35 ) LPos=( -183.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -180.56, 1310.02, 1795.05 ) LPos=( -180.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -180.56, 1314.62, 1787.75 ) LPos=( -180.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -177.69, 1308.49, 1797.48 ) LPos=( -177.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -171.94, 1305.43, 1802.35 ) LPos=( -171.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -180.56, 1318.81, 1781.09 ) LPos=( -180.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -189.19, 1318.81, 1781.09 ) LPos=( -189.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -174.81, 1321.88, 1776.22 ) LPos=( -174.81, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -177.69, 1321.88, 1776.22 ) LPos=( -177.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, 1321.88, 1776.22 ) LPos=( -186.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -189.19, 1323.41, 1773.79 ) LPos=( -189.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -208.56, 1314.62, 1787.75 ) LPos=( -208.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -205.69, 1314.62, 1787.75 ) LPos=( -205.69, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -202.81, 1314.62, 1787.75 ) LPos=( -202.81, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -217.19, 1310.02, 1795.05 ) LPos=( -217.19, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -217.19, 1308.49, 1797.48 ) LPos=( -217.19, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -208.56, 1308.49, 1797.48 ) LPos=( -208.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -205.69, 1308.49, 1797.48 ) LPos=( -205.69, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -202.81, 1308.49, 1797.48 ) LPos=( -202.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -199.94, 1308.49, 1797.48 ) LPos=( -199.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -205.69, 1306.96, 1799.92 ) LPos=( -205.69, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -217.19, 1305.43, 1802.35 ) LPos=( -217.19, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -211.44, 1305.43, 1802.35 ) LPos=( -211.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -208.56, 1305.43, 1802.35 ) LPos=( -208.56, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -208.56, 1303.89, 1804.78 ) LPos=( -208.56, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -199.94, 1324.94, 1771.36 ) LPos=( -199.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -211.44, 1329.54, 1764.06 ) LPos=( -211.44, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -217.19, 1328.01, 1766.49 ) LPos=( -217.19, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -220.06, 1328.01, 1766.49 ) LPos=( -220.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -242.31, 1310.02, 1795.05 ) LPos=( -242.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -242.31, 1313.09, 1790.19 ) LPos=( -242.31, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -239.44, 1310.02, 1795.05 ) LPos=( -239.44, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, 1308.49, 1797.48 ) LPos=( -236.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -236.56, 1310.02, 1795.05 ) LPos=( -236.56, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -227.94, 1313.09, 1790.19 ) LPos=( -227.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -233.69, 1320.35, 1778.66 ) LPos=( -233.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -233.69, 1321.88, 1776.22 ) LPos=( -233.69, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -248.06, 1321.88, 1776.22 ) LPos=( -248.06, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -242.31, 1323.41, 1773.79 ) LPos=( -242.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -245.19, 1323.41, 1773.79 ) LPos=( -245.19, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, 1324.94, 1771.36 ) LPos=( -227.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -239.44, 1324.94, 1771.36 ) LPos=( -239.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -270.31, 1314.62, 1787.75 ) LPos=( -270.31, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -261.69, 1313.09, 1790.19 ) LPos=( -261.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -258.81, 1303.89, 1804.78 ) LPos=( -258.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -255.94, 1320.35, 1778.66 ) LPos=( -255.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -258.81, 1328.01, 1766.49 ) LPos=( -258.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -261.69, 1326.47, 1768.92 ) LPos=( -261.69, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -264.56, 1318.81, 1781.09 ) LPos=( -264.56, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -267.44, 1320.35, 1778.66 ) LPos=( -267.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -267.44, 1318.81, 1781.09 ) LPos=( -267.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -276.06, 1326.47, 1768.92 ) LPos=( -276.06, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -304.06, 1313.09, 1790.19 ) LPos=( -304.06, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -289.69, 1303.89, 1804.78 ) LPos=( -289.69, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -286.81, 1308.49, 1797.48 ) LPos=( -286.81, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -286.81, 1310.02, 1795.05 ) LPos=( -286.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1303.89, 1804.78 ) LPos=( -283.94, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -283.94, 1311.55, 1792.62 ) LPos=( -283.94, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -283.94, 1313.09, 1790.19 ) LPos=( -283.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -283.94, 1314.62, 1787.75 ) LPos=( -283.94, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -292.56, 1320.35, 1778.66 ) LPos=( -292.56, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -292.56, 1323.41, 1773.79 ) LPos=( -292.56, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -286.81, 1324.94, 1771.36 ) LPos=( -286.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -298.31, 1324.94, 1771.36 ) LPos=( -298.31, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -323.44, 1308.49, 1797.48 ) LPos=( -323.44, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -311.94, 1324.94, 1771.36 ) LPos=( -311.94, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -314.81, 1328.01, 1766.49 ) LPos=( -314.81, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -314.81, 1324.94, 1771.36 ) LPos=( -314.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -320.56, 1329.54, 1764.06 ) LPos=( -320.56, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -320.56, 1321.88, 1776.22 ) LPos=( -320.56, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -326.31, 1321.88, 1776.22 ) LPos=( -326.31, 150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -357.19, 1306.96, 1799.92 ) LPos=( -357.19, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -357.19, 1311.55, 1792.62 ) LPos=( -357.19, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -351.44, 1314.62, 1787.75 ) LPos=( -351.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -348.56, 1306.96, 1799.92 ) LPos=( -348.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -345.69, 1311.55, 1792.62 ) LPos=( -345.69, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -342.81, 1310.02, 1795.05 ) LPos=( -342.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -339.94, 1313.09, 1790.19 ) LPos=( -339.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -351.44, 1318.81, 1781.09 ) LPos=( -351.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -342.81, 1320.35, 1778.66 ) LPos=( -342.81, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, 1323.41, 1773.79 ) LPos=( -354.31, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -345.69, 1324.94, 1771.36 ) LPos=( -345.69, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -351.44, 1324.94, 1771.36 ) LPos=( -351.44, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -342.81, 1326.47, 1768.92 ) LPos=( -342.81, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -348.56, 1326.47, 1768.92 ) LPos=( -348.56, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -354.31, 1328.01, 1766.49 ) LPos=( -354.31, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -354.31, 1329.54, 1764.06 ) LPos=( -354.31, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -357.19, 1329.54, 1764.06 ) LPos=( -357.19, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -379.44, 1314.62, 1787.75 ) LPos=( -379.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -370.81, 1313.09, 1790.19 ) LPos=( -370.81, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -382.31, 1308.49, 1797.48 ) LPos=( -382.31, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -370.81, 1306.96, 1799.92 ) LPos=( -370.81, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -367.94, 1305.43, 1802.35 ) LPos=( -367.94, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -367.94, 1328.01, 1766.49 ) LPos=( -367.94, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -370.81, 1329.54, 1764.06 ) LPos=( -370.81, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -370.81, 1323.41, 1773.79 ) LPos=( -370.81, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -388.06, 1328.01, 1766.49 ) LPos=( -388.06, 162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -413.19, 1303.89, 1804.78 ) LPos=( -413.19, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -410.31, 1311.55, 1792.62 ) LPos=( -410.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -407.44, 1314.62, 1787.75 ) LPos=( -407.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -404.56, 1306.96, 1799.92 ) LPos=( -404.56, 122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -395.94, 1313.09, 1790.19 ) LPos=( -395.94, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -401.69, 1318.81, 1781.09 ) LPos=( -401.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -407.44, 1318.81, 1781.09 ) LPos=( -407.44, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -444.06, 1305.43, 1802.35 ) LPos=( -444.06, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -438.31, 1303.89, 1804.78 ) LPos=( -438.31, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -423.94, 1320.35, 1778.66 ) LPos=( -423.94, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -429.69, 1320.35, 1778.66 ) LPos=( -429.69, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -438.31, 1318.81, 1781.09 ) LPos=( -438.31, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -441.19, 1318.81, 1781.09 ) LPos=( -441.19, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -444.06, 1318.81, 1781.09 ) LPos=( -444.06, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -457.69, 1313.09, 1790.19 ) LPos=( -457.69, 134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -454.81, 1310.02, 1795.05 ) LPos=( -454.81, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -454.81, 1318.81, 1781.09 ) LPos=( -454.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -451.94, 1326.47, 1768.92 ) LPos=( -451.94, 159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -494.31, 1311.55, 1792.62 ) LPos=( -494.31, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -482.81, 1318.81, 1781.09 ) LPos=( -482.81, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -519.44, 1314.62, 1787.75 ) LPos=( -519.44, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -516.56, 1308.49, 1797.48 ) LPos=( -516.56, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -516.56, 1311.55, 1792.62 ) LPos=( -516.56, 131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -519.44, 1320.35, 1778.66 ) LPos=( -519.44, 148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -510.81, 1324.94, 1771.36 ) LPos=( -510.81, 156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -541.69, 1318.81, 1781.09 ) LPos=( -541.69, 145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -547.44, 1323.41, 1773.79 ) LPos=( -547.44, 153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -578.31, 1310.02, 1795.05 ) LPos=( -578.31, 128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -572.56, 1314.62, 1787.75 ) LPos=( -572.56, 137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -563.94, 1308.49, 1797.48 ) LPos=( -563.94, 125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -569.69, 1329.54, 1764.06 ) LPos=( -569.69, 165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -603.44, 1305.43, 1802.35 ) LPos=( -603.44, 120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:053,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -594.81, 1303.89, 1804.78 ) LPos=( -594.81, 117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 597.69, 1278.38, 1845.29 ) LPos=( 597.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 597.69, 1282.98, 1838.00 ) LPos=( 597.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 606.31, 1276.85, 1847.73 ) LPos=( 606.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 600.56, 1288.71, 1828.90 ) LPos=( 600.56, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 603.44, 1293.30, 1821.60 ) LPos=( 603.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 594.81, 1293.30, 1821.60 ) LPos=( 594.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 591.94, 1294.83, 1819.17 ) LPos=( 591.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 612.06, 1297.90, 1814.30 ) LPos=( 612.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 597.69, 1297.90, 1814.30 ) LPos=( 597.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 591.94, 1297.90, 1814.30 ) LPos=( 591.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 572.56, 1281.45, 1840.43 ) LPos=( 572.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 566.81, 1273.79, 1852.59 ) LPos=( 566.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 578.31, 1273.79, 1852.59 ) LPos=( 578.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 581.19, 1296.37, 1816.73 ) LPos=( 581.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 578.31, 1297.90, 1814.30 ) LPos=( 578.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 578.31, 1293.30, 1821.60 ) LPos=( 578.31, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 563.94, 1297.90, 1814.30 ) LPos=( 563.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 535.94, 1282.98, 1838.00 ) LPos=( 535.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 550.31, 1288.71, 1828.90 ) LPos=( 550.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 541.69, 1291.77, 1824.03 ) LPos=( 541.69, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 553.19, 1296.37, 1816.73 ) LPos=( 553.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 544.56, 1296.37, 1816.73 ) LPos=( 544.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 535.94, 1296.37, 1816.73 ) LPos=( 535.94, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 550.31, 1297.90, 1814.30 ) LPos=( 550.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 547.44, 1297.90, 1814.30 ) LPos=( 547.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 519.44, 1284.51, 1835.56 ) LPos=( 519.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 507.94, 1278.38, 1845.29 ) LPos=( 507.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 510.81, 1276.85, 1847.73 ) LPos=( 510.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 522.31, 1275.32, 1850.16 ) LPos=( 522.31, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 525.19, 1290.24, 1826.47 ) LPos=( 525.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 519.44, 1299.43, 1811.87 ) LPos=( 519.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 513.69, 1290.24, 1826.47 ) LPos=( 513.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 479.94, 1275.32, 1850.16 ) LPos=( 479.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 491.44, 1276.85, 1847.73 ) LPos=( 491.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 497.19, 1278.38, 1845.29 ) LPos=( 497.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 497.19, 1281.45, 1840.43 ) LPos=( 497.19, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 500.06, 1273.79, 1852.59 ) LPos=( 500.06, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 479.94, 1296.37, 1816.73 ) LPos=( 479.94, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 500.06, 1299.43, 1811.87 ) LPos=( 500.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 463.44, 1273.79, 1852.59 ) LPos=( 463.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 463.44, 1299.43, 1811.87 ) LPos=( 463.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 460.56, 1290.24, 1826.47 ) LPos=( 460.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 423.94, 1276.85, 1847.73 ) LPos=( 423.94, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 432.56, 1282.98, 1838.00 ) LPos=( 432.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 444.06, 1276.85, 1847.73 ) LPos=( 444.06, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 423.94, 1294.83, 1819.17 ) LPos=( 423.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 404.56, 1275.32, 1850.16 ) LPos=( 404.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 404.56, 1290.24, 1826.47 ) LPos=( 404.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 398.81, 1290.24, 1826.47 ) LPos=( 398.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 395.94, 1299.43, 1811.87 ) LPos=( 395.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 367.94, 1275.32, 1850.16 ) LPos=( 367.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 385.19, 1282.98, 1838.00 ) LPos=( 385.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 388.06, 1275.32, 1850.16 ) LPos=( 388.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 367.94, 1293.30, 1821.60 ) LPos=( 367.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 388.06, 1297.90, 1814.30 ) LPos=( 388.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 370.81, 1297.90, 1814.30 ) LPos=( 370.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 385.19, 1299.43, 1811.87 ) LPos=( 385.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1282.98, 1838.00 ) LPos=( 357.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 342.81, 1279.91, 1842.86 ) LPos=( 342.81, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, 1275.32, 1850.16 ) LPos=( 339.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 357.19, 1290.24, 1826.47 ) LPos=( 357.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 354.31, 1297.90, 1814.30 ) LPos=( 354.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 354.31, 1288.71, 1828.90 ) LPos=( 354.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 351.44, 1297.90, 1814.30 ) LPos=( 351.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 311.94, 1278.38, 1845.29 ) LPos=( 311.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 326.31, 1279.91, 1842.86 ) LPos=( 326.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 317.69, 1299.43, 1811.87 ) LPos=( 317.69, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 311.94, 1299.43, 1811.87 ) LPos=( 311.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 283.94, 1284.51, 1835.56 ) LPos=( 283.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 301.19, 1279.91, 1842.86 ) LPos=( 301.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 289.69, 1273.79, 1852.59 ) LPos=( 289.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 304.06, 1293.30, 1821.60 ) LPos=( 304.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 304.06, 1291.77, 1824.03 ) LPos=( 304.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 261.69, 1275.32, 1850.16 ) LPos=( 261.69, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 273.19, 1273.79, 1852.59 ) LPos=( 273.19, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 276.06, 1281.45, 1840.43 ) LPos=( 276.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 258.81, 1288.71, 1828.90 ) LPos=( 258.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, 1294.83, 1819.17 ) LPos=( 264.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1297.90, 1814.30 ) LPos=( 273.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 270.31, 1297.90, 1814.30 ) LPos=( 270.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 230.81, 1279.91, 1842.86 ) LPos=( 230.81, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 239.44, 1297.90, 1814.30 ) LPos=( 239.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 236.56, 1290.24, 1826.47 ) LPos=( 236.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 230.81, 1288.71, 1828.90 ) LPos=( 230.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 199.94, 1282.98, 1838.00 ) LPos=( 199.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, 1279.91, 1842.86 ) LPos=( 177.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 183.44, 1276.85, 1847.73 ) LPos=( 183.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, 1293.30, 1821.60 ) LPos=( 189.19, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, 1291.77, 1824.03 ) LPos=( 186.31, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 171.94, 1290.24, 1826.47 ) LPos=( 171.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, 1282.98, 1838.00 ) LPos=( 149.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, 1282.98, 1838.00 ) LPos=( 155.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, 1290.24, 1826.47 ) LPos=( 149.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 164.06, 1291.77, 1824.03 ) LPos=( 164.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 149.69, 1293.30, 1821.60 ) LPos=( 149.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 164.06, 1294.83, 1819.17 ) LPos=( 164.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 155.44, 1294.83, 1819.17 ) LPos=( 155.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 149.69, 1294.83, 1819.17 ) LPos=( 149.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 164.06, 1296.37, 1816.73 ) LPos=( 164.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 161.19, 1296.37, 1816.73 ) LPos=( 161.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 155.44, 1296.37, 1816.73 ) LPos=( 155.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 152.56, 1296.37, 1816.73 ) LPos=( 152.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 161.19, 1297.90, 1814.30 ) LPos=( 161.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 158.31, 1297.90, 1814.30 ) LPos=( 158.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 155.44, 1297.90, 1814.30 ) LPos=( 155.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, 1297.90, 1814.30 ) LPos=( 143.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 115.94, 1284.51, 1835.56 ) LPos=( 115.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, 1284.51, 1835.56 ) LPos=( 118.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 121.69, 1284.51, 1835.56 ) LPos=( 121.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 124.56, 1284.51, 1835.56 ) LPos=( 124.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, 1284.51, 1835.56 ) LPos=( 130.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 115.94, 1282.98, 1838.00 ) LPos=( 115.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, 1282.98, 1838.00 ) LPos=( 118.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 124.56, 1282.98, 1838.00 ) LPos=( 124.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, 1276.85, 1847.73 ) LPos=( 136.06, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 136.06, 1299.43, 1811.87 ) LPos=( 136.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 136.06, 1296.37, 1816.73 ) LPos=( 136.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 136.06, 1294.83, 1819.17 ) LPos=( 136.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 136.06, 1293.30, 1821.60 ) LPos=( 136.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, 1288.71, 1828.90 ) LPos=( 136.06, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 133.19, 1296.37, 1816.73 ) LPos=( 133.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 130.31, 1296.37, 1816.73 ) LPos=( 130.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, 1294.83, 1819.17 ) LPos=( 130.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, 1291.77, 1824.03 ) LPos=( 130.31, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, 1290.24, 1826.47 ) LPos=( 130.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 124.56, 1299.43, 1811.87 ) LPos=( 124.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 124.56, 1291.77, 1824.03 ) LPos=( 124.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 121.69, 1297.90, 1814.30 ) LPos=( 121.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 121.69, 1296.37, 1816.73 ) LPos=( 121.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 121.69, 1294.83, 1819.17 ) LPos=( 121.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 121.69, 1293.30, 1821.60 ) LPos=( 121.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, 1291.77, 1824.03 ) LPos=( 121.69, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 118.81, 1299.43, 1811.87 ) LPos=( 118.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 118.81, 1296.37, 1816.73 ) LPos=( 118.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 118.81, 1294.83, 1819.17 ) LPos=( 118.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 118.81, 1293.30, 1821.60 ) LPos=( 118.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, 1288.71, 1828.90 ) LPos=( 118.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 115.94, 1293.30, 1821.60 ) LPos=( 115.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, 1290.24, 1826.47 ) LPos=( 115.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, 1288.71, 1828.90 ) LPos=( 115.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, 1279.91, 1842.86 ) LPos=( 87.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, 1281.45, 1840.43 ) LPos=( 87.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, 1282.98, 1838.00 ) LPos=( 87.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, 1284.51, 1835.56 ) LPos=( 87.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 90.81, 1276.85, 1847.73 ) LPos=( 90.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 90.81, 1279.91, 1842.86 ) LPos=( 90.81, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1282.98, 1838.00 ) LPos=( 90.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, 1284.51, 1835.56 ) LPos=( 93.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, 1276.85, 1847.73 ) LPos=( 96.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, 1278.38, 1845.29 ) LPos=( 96.56, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 96.56, 1282.98, 1838.00 ) LPos=( 96.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1276.85, 1847.73 ) LPos=( 99.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, 1276.85, 1847.73 ) LPos=( 102.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, 1278.38, 1845.29 ) LPos=( 102.31, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, 1279.91, 1842.86 ) LPos=( 102.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 102.31, 1281.45, 1840.43 ) LPos=( 102.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, 1279.91, 1842.86 ) LPos=( 105.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 108.06, 1275.32, 1850.16 ) LPos=( 108.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 108.06, 1279.91, 1842.86 ) LPos=( 108.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, 1281.45, 1840.43 ) LPos=( 108.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, 1288.71, 1828.90 ) LPos=( 105.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 102.31, 1288.71, 1828.90 ) LPos=( 102.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, 1288.71, 1828.90 ) LPos=( 90.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 108.06, 1290.24, 1826.47 ) LPos=( 108.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, 1290.24, 1826.47 ) LPos=( 99.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 93.69, 1290.24, 1826.47 ) LPos=( 93.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, 1291.77, 1824.03 ) LPos=( 105.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, 1291.77, 1824.03 ) LPos=( 96.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1293.30, 1821.60 ) LPos=( 90.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, 1294.83, 1819.17 ) LPos=( 102.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, 1294.83, 1819.17 ) LPos=( 99.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 96.56, 1294.83, 1819.17 ) LPos=( 96.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 90.81, 1294.83, 1819.17 ) LPos=( 90.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 108.06, 1296.37, 1816.73 ) LPos=( 108.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 105.19, 1296.37, 1816.73 ) LPos=( 105.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, 1296.37, 1816.73 ) LPos=( 99.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 90.81, 1296.37, 1816.73 ) LPos=( 90.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, 1297.90, 1814.30 ) LPos=( 108.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, 1297.90, 1814.30 ) LPos=( 93.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, 1299.43, 1811.87 ) LPos=( 108.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 105.19, 1299.43, 1811.87 ) LPos=( 105.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, 1284.51, 1835.56 ) LPos=( 62.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 65.69, 1284.51, 1835.56 ) LPos=( 65.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, 1284.51, 1835.56 ) LPos=( 68.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, 1284.51, 1835.56 ) LPos=( 80.06, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, 1282.98, 1838.00 ) LPos=( 71.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 74.31, 1282.98, 1838.00 ) LPos=( 74.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, 1282.98, 1838.00 ) LPos=( 77.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, 1281.45, 1840.43 ) LPos=( 59.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 62.81, 1281.45, 1840.43 ) LPos=( 62.81, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 71.44, 1281.45, 1840.43 ) LPos=( 71.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, 1281.45, 1840.43 ) LPos=( 77.19, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, 1281.45, 1840.43 ) LPos=( 80.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, 1279.91, 1842.86 ) LPos=( 65.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1279.91, 1842.86 ) LPos=( 71.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1279.91, 1842.86 ) LPos=( 74.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 77.19, 1278.38, 1845.29 ) LPos=( 77.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, 1276.85, 1847.73 ) LPos=( 77.19, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, 1273.79, 1852.59 ) LPos=( 65.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 80.06, 1299.43, 1811.87 ) LPos=( 80.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, 1296.37, 1816.73 ) LPos=( 80.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 77.19, 1296.37, 1816.73 ) LPos=( 77.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, 1293.30, 1821.60 ) LPos=( 77.19, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, 1296.37, 1816.73 ) LPos=( 74.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, 1294.83, 1819.17 ) LPos=( 74.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, 1293.30, 1821.60 ) LPos=( 74.31, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, 1299.43, 1811.87 ) LPos=( 71.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 71.44, 1297.90, 1814.30 ) LPos=( 71.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1296.37, 1816.73 ) LPos=( 71.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 71.44, 1294.83, 1819.17 ) LPos=( 71.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, 1293.30, 1821.60 ) LPos=( 71.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 71.44, 1291.77, 1824.03 ) LPos=( 71.44, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 71.44, 1290.24, 1826.47 ) LPos=( 71.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 68.56, 1299.43, 1811.87 ) LPos=( 68.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 68.56, 1297.90, 1814.30 ) LPos=( 68.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, 1296.37, 1816.73 ) LPos=( 68.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1294.83, 1819.17 ) LPos=( 68.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 68.56, 1291.77, 1824.03 ) LPos=( 68.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, 1296.37, 1816.73 ) LPos=( 65.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 65.69, 1293.30, 1821.60 ) LPos=( 65.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 62.81, 1297.90, 1814.30 ) LPos=( 62.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, 1294.83, 1819.17 ) LPos=( 62.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 62.81, 1291.77, 1824.03 ) LPos=( 62.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, 1294.83, 1819.17 ) LPos=( 59.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, 1290.24, 1826.47 ) LPos=( 59.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, 1279.91, 1842.86 ) LPos=( 31.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 34.81, 1273.79, 1852.59 ) LPos=( 34.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 34.81, 1275.32, 1850.16 ) LPos=( 34.81, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 34.81, 1276.85, 1847.73 ) LPos=( 34.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 34.81, 1278.38, 1845.29 ) LPos=( 34.81, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, 1284.51, 1835.56 ) LPos=( 34.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 37.69, 1273.79, 1852.59 ) LPos=( 37.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, 1275.32, 1850.16 ) LPos=( 37.69, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 37.69, 1278.38, 1845.29 ) LPos=( 37.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 37.69, 1279.91, 1842.86 ) LPos=( 37.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 37.69, 1282.98, 1838.00 ) LPos=( 37.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, 1275.32, 1850.16 ) LPos=( 40.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, 1276.85, 1847.73 ) LPos=( 40.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, 1281.45, 1840.43 ) LPos=( 40.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, 1278.38, 1845.29 ) LPos=( 43.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 43.44, 1279.91, 1842.86 ) LPos=( 43.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 43.44, 1282.98, 1838.00 ) LPos=( 43.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, 1276.85, 1847.73 ) LPos=( 46.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 46.31, 1282.98, 1838.00 ) LPos=( 46.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 46.31, 1284.51, 1835.56 ) LPos=( 46.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 49.19, 1273.79, 1852.59 ) LPos=( 49.19, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 49.19, 1276.85, 1847.73 ) LPos=( 49.19, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, 1278.38, 1845.29 ) LPos=( 49.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, 1284.51, 1835.56 ) LPos=( 49.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 52.06, 1284.51, 1835.56 ) LPos=( 52.06, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 52.06, 1288.71, 1828.90 ) LPos=( 52.06, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, 1288.71, 1828.90 ) LPos=( 49.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, 1288.71, 1828.90 ) LPos=( 46.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 43.44, 1288.71, 1828.90 ) LPos=( 43.44, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, 1288.71, 1828.90 ) LPos=( 37.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, 1288.71, 1828.90 ) LPos=( 34.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, 1288.71, 1828.90 ) LPos=( 31.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 52.06, 1290.24, 1826.47 ) LPos=( 52.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, 1290.24, 1826.47 ) LPos=( 49.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, 1290.24, 1826.47 ) LPos=( 43.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 40.56, 1290.24, 1826.47 ) LPos=( 40.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 37.69, 1290.24, 1826.47 ) LPos=( 37.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, 1290.24, 1826.47 ) LPos=( 34.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, 1291.77, 1824.03 ) LPos=( 52.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, 1291.77, 1824.03 ) LPos=( 49.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 40.56, 1291.77, 1824.03 ) LPos=( 40.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 43.44, 1293.30, 1821.60 ) LPos=( 43.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, 1294.83, 1819.17 ) LPos=( 52.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, 1294.83, 1819.17 ) LPos=( 46.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 52.06, 1296.37, 1816.73 ) LPos=( 52.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, 1296.37, 1816.73 ) LPos=( 43.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, 1296.37, 1816.73 ) LPos=( 37.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 34.81, 1296.37, 1816.73 ) LPos=( 34.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, 1296.37, 1816.73 ) LPos=( 31.94, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, 1297.90, 1814.30 ) LPos=( 40.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, 1297.90, 1814.30 ) LPos=( 37.69, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, 1297.90, 1814.30 ) LPos=( 34.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 40.56, 1299.43, 1811.87 ) LPos=( 40.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 12.56, 1284.51, 1835.56 ) LPos=( 12.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, 1282.98, 1838.00 ) LPos=( 3.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, 1282.98, 1838.00 ) LPos=( 6.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, 1282.98, 1838.00 ) LPos=( 18.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 24.06, 1282.98, 1838.00 ) LPos=( 24.06, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, 1281.45, 1840.43 ) LPos=( 3.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 9.69, 1281.45, 1840.43 ) LPos=( 9.69, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, 1281.45, 1840.43 ) LPos=( 12.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1281.45, 1840.43 ) LPos=( 24.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, 1279.91, 1842.86 ) LPos=( 9.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 12.56, 1279.91, 1842.86 ) LPos=( 12.56, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, 1278.38, 1845.29 ) LPos=( 6.81, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1278.38, 1845.29 ) LPos=( 21.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, 1278.38, 1845.29 ) LPos=( 24.06, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1276.85, 1847.73 ) LPos=( 9.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, 1276.85, 1847.73 ) LPos=( 18.31, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, 1275.32, 1850.16 ) LPos=( 12.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 15.44, 1275.32, 1850.16 ) LPos=( 15.44, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1275.32, 1850.16 ) LPos=( 21.19, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 15.44, 1273.79, 1852.59 ) LPos=( 15.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1297.90, 1814.30 ) LPos=( 24.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, 1293.30, 1821.60 ) LPos=( 24.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, 1291.77, 1824.03 ) LPos=( 24.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 24.06, 1290.24, 1826.47 ) LPos=( 24.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 21.19, 1299.43, 1811.87 ) LPos=( 21.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1294.83, 1819.17 ) LPos=( 21.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, 1291.77, 1824.03 ) LPos=( 21.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 21.19, 1288.71, 1828.90 ) LPos=( 21.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, 1296.37, 1816.73 ) LPos=( 18.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, 1294.83, 1819.17 ) LPos=( 18.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1293.30, 1821.60 ) LPos=( 18.31, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, 1291.77, 1824.03 ) LPos=( 18.31, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1290.24, 1826.47 ) LPos=( 18.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, 1288.71, 1828.90 ) LPos=( 18.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, 1299.43, 1811.87 ) LPos=( 15.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 15.44, 1297.90, 1814.30 ) LPos=( 15.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1296.37, 1816.73 ) LPos=( 15.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, 1293.30, 1821.60 ) LPos=( 15.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, 1296.37, 1816.73 ) LPos=( 12.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, 1294.83, 1819.17 ) LPos=( 12.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 12.56, 1291.77, 1824.03 ) LPos=( 12.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, 1288.71, 1828.90 ) LPos=( 12.56, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 9.69, 1296.37, 1816.73 ) LPos=( 9.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 9.69, 1293.30, 1821.60 ) LPos=( 9.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 9.69, 1288.71, 1828.90 ) LPos=( 9.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 6.81, 1296.37, 1816.73 ) LPos=( 6.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 6.81, 1288.71, 1828.90 ) LPos=( 6.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1297.90, 1814.30 ) LPos=( 3.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3.94, 1288.71, 1828.90 ) LPos=( 3.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, 1282.98, 1838.00 ) LPos=( -24.06, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1273.79, 1852.59 ) LPos=( -21.19, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, 1282.98, 1838.00 ) LPos=( -21.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, 1273.79, 1852.59 ) LPos=( -18.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -18.31, 1278.38, 1845.29 ) LPos=( -18.31, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, 1282.98, 1838.00 ) LPos=( -18.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -15.44, 1276.85, 1847.73 ) LPos=( -15.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1281.45, 1840.43 ) LPos=( -15.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, 1282.98, 1838.00 ) LPos=( -15.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, 1284.51, 1835.56 ) LPos=( -15.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, 1278.38, 1845.29 ) LPos=( -12.56, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, 1281.45, 1840.43 ) LPos=( -12.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, 1282.98, 1838.00 ) LPos=( -9.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -6.81, 1282.98, 1838.00 ) LPos=( -6.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, 1273.79, 1852.59 ) LPos=( -3.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, 1279.91, 1842.86 ) LPos=( -3.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3.94, 1282.98, 1838.00 ) LPos=( -3.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -6.81, 1288.71, 1828.90 ) LPos=( -6.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, 1290.24, 1826.47 ) LPos=( -6.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, 1290.24, 1826.47 ) LPos=( -9.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, 1291.77, 1824.03 ) LPos=( -3.94, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -6.81, 1291.77, 1824.03 ) LPos=( -6.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -12.56, 1291.77, 1824.03 ) LPos=( -12.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, 1291.77, 1824.03 ) LPos=( -15.44, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, 1293.30, 1821.60 ) LPos=( -12.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, 1293.30, 1821.60 ) LPos=( -24.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, 1294.83, 1819.17 ) LPos=( -9.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -21.19, 1294.83, 1819.17 ) LPos=( -21.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1294.83, 1819.17 ) LPos=( -24.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -15.44, 1296.37, 1816.73 ) LPos=( -15.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -21.19, 1296.37, 1816.73 ) LPos=( -21.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3.94, 1297.90, 1814.30 ) LPos=( -3.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, 1297.90, 1814.30 ) LPos=( -12.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, 1297.90, 1814.30 ) LPos=( -15.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -21.19, 1297.90, 1814.30 ) LPos=( -21.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, 1299.43, 1811.87 ) LPos=( -3.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, 1299.43, 1811.87 ) LPos=( -6.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -34.81, 1284.51, 1835.56 ) LPos=( -34.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -46.31, 1282.98, 1838.00 ) LPos=( -46.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, 1282.98, 1838.00 ) LPos=( -31.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1278.38, 1845.29 ) LPos=( -52.06, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -49.19, 1278.38, 1845.29 ) LPos=( -49.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -43.44, 1278.38, 1845.29 ) LPos=( -43.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -34.81, 1276.85, 1847.73 ) LPos=( -34.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -52.06, 1275.32, 1850.16 ) LPos=( -52.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, 1273.79, 1852.59 ) LPos=( -34.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -31.94, 1273.79, 1852.59 ) LPos=( -31.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, 1297.90, 1814.30 ) LPos=( -31.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, 1294.83, 1819.17 ) LPos=( -31.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, 1291.77, 1824.03 ) LPos=( -31.94, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, 1291.77, 1824.03 ) LPos=( -34.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -37.69, 1296.37, 1816.73 ) LPos=( -37.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -37.69, 1294.83, 1819.17 ) LPos=( -37.69, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, 1299.43, 1811.87 ) LPos=( -40.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -40.56, 1293.30, 1821.60 ) LPos=( -40.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -43.44, 1297.90, 1814.30 ) LPos=( -43.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, 1293.30, 1821.60 ) LPos=( -43.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, 1288.71, 1828.90 ) LPos=( -43.44, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1294.83, 1819.17 ) LPos=( -46.31, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, 1296.37, 1816.73 ) LPos=( -49.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -52.06, 1294.83, 1819.17 ) LPos=( -52.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -52.06, 1293.30, 1821.60 ) LPos=( -52.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1279.91, 1842.86 ) LPos=( -71.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, 1281.45, 1840.43 ) LPos=( -71.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -59.94, 1284.51, 1835.56 ) LPos=( -59.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, 1288.71, 1828.90 ) LPos=( -59.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, 1288.71, 1828.90 ) LPos=( -71.44, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -68.56, 1290.24, 1826.47 ) LPos=( -68.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, 1291.77, 1824.03 ) LPos=( -80.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -59.94, 1293.30, 1821.60 ) LPos=( -59.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, 1293.30, 1821.60 ) LPos=( -68.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -77.19, 1293.30, 1821.60 ) LPos=( -77.19, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, 1293.30, 1821.60 ) LPos=( -80.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, 1294.83, 1819.17 ) LPos=( -80.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -68.56, 1296.37, 1816.73 ) LPos=( -68.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, 1297.90, 1814.30 ) LPos=( -62.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -108.06, 1281.45, 1840.43 ) LPos=( -108.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -102.31, 1275.32, 1850.16 ) LPos=( -102.31, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -87.94, 1275.32, 1850.16 ) LPos=( -87.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1273.79, 1852.59 ) LPos=( -93.69, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -90.81, 1273.79, 1852.59 ) LPos=( -90.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, 1299.43, 1811.87 ) LPos=( -87.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -87.94, 1297.90, 1814.30 ) LPos=( -87.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -90.81, 1299.43, 1811.87 ) LPos=( -90.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, 1296.37, 1816.73 ) LPos=( -90.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1290.24, 1826.47 ) LPos=( -102.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, 1288.71, 1828.90 ) LPos=( -102.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -105.19, 1294.83, 1819.17 ) LPos=( -105.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, 1290.24, 1826.47 ) LPos=( -108.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, 1278.38, 1845.29 ) LPos=( -136.06, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -136.06, 1281.45, 1840.43 ) LPos=( -136.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -136.06, 1282.98, 1838.00 ) LPos=( -136.06, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -133.19, 1279.91, 1842.86 ) LPos=( -133.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, 1284.51, 1835.56 ) LPos=( -133.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1275.32, 1850.16 ) LPos=( -130.31, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -130.31, 1278.38, 1845.29 ) LPos=( -130.31, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -130.31, 1279.91, 1842.86 ) LPos=( -130.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1281.45, 1840.43 ) LPos=( -130.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -127.44, 1275.32, 1850.16 ) LPos=( -127.44, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -127.44, 1276.85, 1847.73 ) LPos=( -127.44, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, 1278.38, 1845.29 ) LPos=( -127.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, 1279.91, 1842.86 ) LPos=( -127.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -127.44, 1282.98, 1838.00 ) LPos=( -127.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, 1284.51, 1835.56 ) LPos=( -127.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -124.56, 1279.91, 1842.86 ) LPos=( -124.56, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -124.56, 1281.45, 1840.43 ) LPos=( -124.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, 1276.85, 1847.73 ) LPos=( -121.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -121.69, 1278.38, 1845.29 ) LPos=( -121.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -121.69, 1279.91, 1842.86 ) LPos=( -121.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, 1273.79, 1852.59 ) LPos=( -118.81, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -118.81, 1276.85, 1847.73 ) LPos=( -118.81, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -118.81, 1282.98, 1838.00 ) LPos=( -118.81, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, 1273.79, 1852.59 ) LPos=( -115.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1275.32, 1850.16 ) LPos=( -115.94, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -118.81, 1288.71, 1828.90 ) LPos=( -118.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, 1288.71, 1828.90 ) LPos=( -121.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -124.56, 1288.71, 1828.90 ) LPos=( -124.56, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -130.31, 1288.71, 1828.90 ) LPos=( -130.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, 1288.71, 1828.90 ) LPos=( -133.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, 1290.24, 1826.47 ) LPos=( -118.81, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -130.31, 1290.24, 1826.47 ) LPos=( -130.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -136.06, 1291.77, 1824.03 ) LPos=( -136.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -118.81, 1293.30, 1821.60 ) LPos=( -118.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, 1293.30, 1821.60 ) LPos=( -124.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -136.06, 1293.30, 1821.60 ) LPos=( -136.06, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, 1294.83, 1819.17 ) LPos=( -133.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -118.81, 1296.37, 1816.73 ) LPos=( -118.81, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -136.06, 1296.37, 1816.73 ) LPos=( -136.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1299.43, 1811.87 ) LPos=( -121.69, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, 1299.43, 1811.87 ) LPos=( -124.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, 1299.43, 1811.87 ) LPos=( -133.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -161.19, 1284.51, 1835.56 ) LPos=( -161.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, 1282.98, 1838.00 ) LPos=( -158.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -152.56, 1282.98, 1838.00 ) LPos=( -152.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, 1282.98, 1838.00 ) LPos=( -149.69, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -152.56, 1281.45, 1840.43 ) LPos=( -152.56, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, 1281.45, 1840.43 ) LPos=( -146.81, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -164.06, 1279.91, 1842.86 ) LPos=( -164.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -158.31, 1279.91, 1842.86 ) LPos=( -158.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, 1279.91, 1842.86 ) LPos=( -155.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, 1279.91, 1842.86 ) LPos=( -143.94, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, 1278.38, 1845.29 ) LPos=( -155.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, 1278.38, 1845.29 ) LPos=( -143.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -152.56, 1276.85, 1847.73 ) LPos=( -152.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -149.69, 1276.85, 1847.73 ) LPos=( -149.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -152.56, 1275.32, 1850.16 ) LPos=( -152.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -155.44, 1273.79, 1852.59 ) LPos=( -155.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -143.94, 1294.83, 1819.17 ) LPos=( -143.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -143.94, 1293.30, 1821.60 ) LPos=( -143.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, 1290.24, 1826.47 ) LPos=( -143.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -146.81, 1293.30, 1821.60 ) LPos=( -146.81, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -149.69, 1296.37, 1816.73 ) LPos=( -149.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, 1293.30, 1821.60 ) LPos=( -149.69, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, 1294.83, 1819.17 ) LPos=( -152.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -155.44, 1299.43, 1811.87 ) LPos=( -155.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, 1297.90, 1814.30 ) LPos=( -158.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, 1299.43, 1811.87 ) LPos=( -164.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -164.06, 1296.37, 1816.73 ) LPos=( -164.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -164.06, 1291.77, 1824.03 ) LPos=( -164.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -164.06, 1290.24, 1826.47 ) LPos=( -164.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, 1282.98, 1838.00 ) LPos=( -189.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -180.56, 1275.32, 1850.16 ) LPos=( -180.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, 1281.45, 1840.43 ) LPos=( -171.94, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -189.19, 1291.77, 1824.03 ) LPos=( -189.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -183.44, 1296.37, 1816.73 ) LPos=( -183.44, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, 1284.51, 1835.56 ) LPos=( -214.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -217.19, 1279.91, 1842.86 ) LPos=( -217.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -199.94, 1299.43, 1811.87 ) LPos=( -199.94, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -202.81, 1297.90, 1814.30 ) LPos=( -202.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -248.06, 1273.79, 1852.59 ) LPos=( -248.06, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -245.19, 1275.32, 1850.16 ) LPos=( -245.19, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -233.69, 1276.85, 1847.73 ) LPos=( -233.69, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -230.81, 1288.71, 1828.90 ) LPos=( -230.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -233.69, 1290.24, 1826.47 ) LPos=( -233.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -236.56, 1293.30, 1821.60 ) LPos=( -236.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -239.44, 1294.83, 1819.17 ) LPos=( -239.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, 1297.90, 1814.30 ) LPos=( -236.56, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -230.81, 1299.43, 1811.87 ) LPos=( -230.81, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, 1284.51, 1835.56 ) LPos=( -258.81, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -261.69, 1278.38, 1845.29 ) LPos=( -261.69, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -276.06, 1276.85, 1847.73 ) LPos=( -276.06, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -267.44, 1275.32, 1850.16 ) LPos=( -267.44, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -270.31, 1273.79, 1852.59 ) LPos=( -270.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -255.94, 1288.71, 1828.90 ) LPos=( -255.94, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -258.81, 1291.77, 1824.03 ) LPos=( -258.81, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -258.81, 1288.71, 1828.90 ) LPos=( -258.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1293.30, 1821.60 ) LPos=( -264.56, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -267.44, 1299.43, 1811.87 ) LPos=( -267.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -267.44, 1290.24, 1826.47 ) LPos=( -267.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -270.31, 1288.71, 1828.90 ) LPos=( -270.31, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -273.19, 1290.24, 1826.47 ) LPos=( -273.19, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -276.06, 1290.24, 1826.47 ) LPos=( -276.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -301.19, 1279.91, 1842.86 ) LPos=( -301.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -292.56, 1273.79, 1852.59 ) LPos=( -292.56, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -283.94, 1273.79, 1852.59 ) LPos=( -283.94, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -286.81, 1288.71, 1828.90 ) LPos=( -286.81, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -295.44, 1290.24, 1826.47 ) LPos=( -295.44, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -298.31, 1290.24, 1826.47 ) LPos=( -298.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -289.69, 1291.77, 1824.03 ) LPos=( -289.69, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -301.19, 1291.77, 1824.03 ) LPos=( -301.19, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -304.06, 1294.83, 1819.17 ) LPos=( -304.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -283.94, 1297.90, 1814.30 ) LPos=( -283.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -301.19, 1297.90, 1814.30 ) LPos=( -301.19, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -326.31, 1284.51, 1835.56 ) LPos=( -326.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -323.44, 1284.51, 1835.56 ) LPos=( -323.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -329.19, 1282.98, 1838.00 ) LPos=( -329.19, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -326.31, 1281.45, 1840.43 ) LPos=( -326.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -311.94, 1297.90, 1814.30 ) LPos=( -311.94, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -311.94, 1293.30, 1821.60 ) LPos=( -311.94, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -311.94, 1290.24, 1826.47 ) LPos=( -311.94, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -317.69, 1296.37, 1816.73 ) LPos=( -317.69, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -320.56, 1299.43, 1811.87 ) LPos=( -320.56, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -320.56, 1291.77, 1824.03 ) LPos=( -320.56, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -323.44, 1294.83, 1819.17 ) LPos=( -323.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -332.06, 1294.83, 1819.17 ) LPos=( -332.06, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -360.06, 1279.91, 1842.86 ) LPos=( -360.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -357.19, 1279.91, 1842.86 ) LPos=( -357.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -354.31, 1279.91, 1842.86 ) LPos=( -354.31, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -354.31, 1281.45, 1840.43 ) LPos=( -354.31, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -354.31, 1284.51, 1835.56 ) LPos=( -354.31, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -348.56, 1284.51, 1835.56 ) LPos=( -348.56, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -345.69, 1284.51, 1835.56 ) LPos=( -345.69, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -354.31, 1290.24, 1826.47 ) LPos=( -354.31, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -351.44, 1293.30, 1821.60 ) LPos=( -351.44, 97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -357.19, 1296.37, 1816.73 ) LPos=( -357.19, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -354.31, 1297.90, 1814.30 ) LPos=( -354.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -360.06, 1297.90, 1814.30 ) LPos=( -360.06, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -357.19, 1299.43, 1811.87 ) LPos=( -357.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -388.06, 1281.45, 1840.43 ) LPos=( -388.06, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -379.44, 1281.45, 1840.43 ) LPos=( -379.44, 75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -385.19, 1279.91, 1842.86 ) LPos=( -385.19, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -376.56, 1279.91, 1842.86 ) LPos=( -376.56, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -373.69, 1279.91, 1842.86 ) LPos=( -373.69, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -379.44, 1278.38, 1845.29 ) LPos=( -379.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -376.56, 1276.85, 1847.73 ) LPos=( -376.56, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -373.69, 1290.24, 1826.47 ) LPos=( -373.69, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -373.69, 1288.71, 1828.90 ) LPos=( -373.69, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -376.56, 1290.24, 1826.47 ) LPos=( -376.56, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -385.19, 1299.43, 1811.87 ) LPos=( -385.19, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -410.31, 1282.98, 1838.00 ) LPos=( -410.31, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -407.44, 1278.38, 1845.29 ) LPos=( -407.44, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -407.44, 1279.91, 1842.86 ) LPos=( -407.44, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -407.44, 1284.51, 1835.56 ) LPos=( -407.44, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -404.56, 1273.79, 1852.59 ) LPos=( -404.56, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -404.56, 1275.32, 1850.16 ) LPos=( -404.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -404.56, 1282.98, 1838.00 ) LPos=( -404.56, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -395.94, 1282.98, 1838.00 ) LPos=( -395.94, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -395.94, 1284.51, 1835.56 ) LPos=( -395.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -416.06, 1291.77, 1824.03 ) LPos=( -416.06, 94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -441.19, 1284.51, 1835.56 ) LPos=( -441.19, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -423.94, 1284.51, 1835.56 ) LPos=( -423.94, 80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -423.94, 1278.38, 1845.29 ) LPos=( -423.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -423.94, 1294.83, 1819.17 ) LPos=( -423.94, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -432.56, 1294.83, 1819.17 ) LPos=( -432.56, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -444.06, 1299.43, 1811.87 ) LPos=( -444.06, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -444.06, 1290.24, 1826.47 ) LPos=( -444.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -463.44, 1273.79, 1852.59 ) LPos=( -463.44, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -460.56, 1275.32, 1850.16 ) LPos=( -460.56, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -451.94, 1276.85, 1847.73 ) LPos=( -451.94, 66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -454.81, 1294.83, 1819.17 ) LPos=( -454.81, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -463.44, 1294.83, 1819.17 ) LPos=( -463.44, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -454.81, 1297.90, 1814.30 ) LPos=( -454.81, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -466.31, 1297.90, 1814.30 ) LPos=( -466.31, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -500.06, 1279.91, 1842.86 ) LPos=( -500.06, 72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -500.06, 1275.32, 1850.16 ) LPos=( -500.06, 63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -488.56, 1296.37, 1816.73 ) LPos=( -488.56, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -491.44, 1299.43, 1811.87 ) LPos=( -491.44, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -491.44, 1297.90, 1814.30 ) LPos=( -491.44, 105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -494.31, 1299.43, 1811.87 ) LPos=( -494.31, 108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -494.31, 1296.37, 1816.73 ) LPos=( -494.31, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -497.19, 1294.83, 1819.17 ) LPos=( -497.19, 100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -500.06, 1290.24, 1826.47 ) LPos=( -500.06, 91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -500.06, 1288.71, 1828.90 ) LPos=( -500.06, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -550.31, 1273.79, 1852.59 ) LPos=( -550.31, 60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -575.44, 1282.98, 1838.00 ) LPos=( -575.44, 77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -563.94, 1278.38, 1845.29 ) LPos=( -563.94, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -609.19, 1278.38, 1845.29 ) LPos=( -609.19, 69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -609.19, 1288.71, 1828.90 ) LPos=( -609.19, 88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -612.06, 1296.37, 1816.73 ) LPos=( -612.06, 103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 606.31, 1264.73, 1866.98 ) LPos=( 606.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 584.06, 1264.73, 1866.98 ) LPos=( 584.06, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 581.19, 1266.26, 1864.54 ) LPos=( 581.19, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 572.56, 1264.73, 1866.98 ) LPos=( 572.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 566.81, 1269.32, 1859.68 ) LPos=( 566.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 566.81, 1258.60, 1876.71 ) LPos=( 566.81, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 550.31, 1254.40, 1883.37 ) LPos=( 550.31, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 547.44, 1258.60, 1876.71 ) LPos=( 547.44, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 550.31, 1269.32, 1859.68 ) LPos=( 550.31, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 519.44, 1269.32, 1859.68 ) LPos=( 519.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 507.94, 1264.73, 1866.98 ) LPos=( 507.94, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 507.94, 1260.13, 1874.28 ) LPos=( 507.94, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 479.94, 1267.79, 1862.11 ) LPos=( 479.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 457.69, 1254.40, 1883.37 ) LPos=( 457.69, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 469.19, 1252.87, 1885.81 ) LPos=( 469.19, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 454.81, 1269.32, 1859.68 ) LPos=( 454.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 454.81, 1267.79, 1862.11 ) LPos=( 454.81, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 451.94, 1267.79, 1862.11 ) LPos=( 451.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 451.94, 1263.20, 1869.41 ) LPos=( 451.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 432.56, 1263.20, 1869.41 ) LPos=( 432.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 432.56, 1266.26, 1864.54 ) LPos=( 432.56, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 423.94, 1269.32, 1859.68 ) LPos=( 423.94, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 407.44, 1249.81, 1890.67 ) LPos=( 407.44, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 401.69, 1243.68, 1900.40 ) LPos=( 401.69, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 404.56, 1263.20, 1869.41 ) LPos=( 404.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 398.81, 1264.73, 1866.98 ) LPos=( 398.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 379.44, 1245.21, 1897.97 ) LPos=( 379.44, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 382.31, 1245.21, 1897.97 ) LPos=( 382.31, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 385.19, 1251.34, 1888.24 ) LPos=( 385.19, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 379.44, 1258.60, 1876.71 ) LPos=( 379.44, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 342.81, 1252.87, 1885.81 ) LPos=( 342.81, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 357.19, 1243.68, 1900.40 ) LPos=( 357.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 360.06, 1266.26, 1864.54 ) LPos=( 360.06, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 345.69, 1269.32, 1859.68 ) LPos=( 345.69, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 311.94, 1252.87, 1885.81 ) LPos=( 311.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 329.19, 1248.27, 1893.10 ) LPos=( 329.19, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 329.19, 1260.13, 1874.28 ) LPos=( 329.19, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 314.81, 1269.32, 1859.68 ) LPos=( 314.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 298.31, 1254.40, 1883.37 ) LPos=( 298.31, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 304.06, 1251.34, 1888.24 ) LPos=( 304.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 255.94, 1246.74, 1895.54 ) LPos=( 255.94, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 261.69, 1263.20, 1869.41 ) LPos=( 261.69, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 255.94, 1263.20, 1869.41 ) LPos=( 255.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 267.44, 1266.26, 1864.54 ) LPos=( 267.44, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, 1267.79, 1862.11 ) LPos=( 273.19, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, 1252.87, 1885.81 ) LPos=( 233.69, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, 1263.20, 1869.41 ) LPos=( 248.06, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 242.31, 1264.73, 1866.98 ) LPos=( 242.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 236.56, 1266.26, 1864.54 ) LPos=( 236.56, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 230.81, 1264.73, 1866.98 ) LPos=( 230.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 230.81, 1263.20, 1869.41 ) LPos=( 230.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, 1267.79, 1862.11 ) LPos=( 227.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, 1263.20, 1869.41 ) LPos=( 227.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 211.44, 1252.87, 1885.81 ) LPos=( 211.44, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 199.94, 1258.60, 1876.71 ) LPos=( 199.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 208.56, 1263.20, 1869.41 ) LPos=( 208.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 217.19, 1264.73, 1866.98 ) LPos=( 217.19, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, 1264.73, 1866.98 ) LPos=( 211.44, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 220.06, 1266.26, 1864.54 ) LPos=( 220.06, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 205.69, 1266.26, 1864.54 ) LPos=( 205.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, 1267.79, 1862.11 ) LPos=( 211.44, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 202.81, 1267.79, 1862.11 ) LPos=( 202.81, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 199.94, 1269.32, 1859.68 ) LPos=( 199.94, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, 1254.40, 1883.37 ) LPos=( 192.06, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 189.19, 1251.34, 1888.24 ) LPos=( 189.19, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 177.69, 1246.74, 1895.54 ) LPos=( 177.69, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, 1269.32, 1859.68 ) LPos=( 183.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, 1264.73, 1866.98 ) LPos=( 180.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, 1264.73, 1866.98 ) LPos=( 177.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 143.94, 1252.87, 1885.81 ) LPos=( 143.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, 1243.68, 1900.40 ) LPos=( 152.56, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 152.56, 1252.87, 1885.81 ) LPos=( 152.56, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 158.31, 1245.21, 1897.97 ) LPos=( 158.31, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 164.06, 1258.60, 1876.71 ) LPos=( 164.06, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 161.19, 1258.60, 1876.71 ) LPos=( 161.19, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, 1248.27, 1893.10 ) LPos=( 136.06, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, 1243.68, 1900.40 ) LPos=( 133.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 96.56, 1243.68, 1900.40 ) LPos=( 96.56, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, 1243.68, 1900.40 ) LPos=( 99.44, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, 1245.21, 1897.97 ) LPos=( 99.44, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, 1246.74, 1895.54 ) LPos=( 99.44, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 102.31, 1254.40, 1883.37 ) LPos=( 102.31, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, 1260.13, 1874.28 ) LPos=( 90.81, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, 1261.66, 1871.84 ) LPos=( 105.19, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, 1263.20, 1869.41 ) LPos=( 90.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 87.94, 1263.20, 1869.41 ) LPos=( 87.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 87.94, 1266.26, 1864.54 ) LPos=( 87.94, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 99.44, 1269.32, 1859.68 ) LPos=( 99.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 96.56, 1269.32, 1859.68 ) LPos=( 96.56, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, 1269.32, 1859.68 ) LPos=( 90.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, 1249.81, 1890.67 ) LPos=( 74.31, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 59.94, 1246.74, 1895.54 ) LPos=( 59.94, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 77.19, 1243.68, 1900.40 ) LPos=( 77.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, 1263.20, 1869.41 ) LPos=( 74.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 71.44, 1266.26, 1864.54 ) LPos=( 71.44, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, 1264.73, 1866.98 ) LPos=( 68.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, 1267.79, 1862.11 ) LPos=( 65.69, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 65.69, 1264.73, 1866.98 ) LPos=( 65.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, 1260.13, 1874.28 ) LPos=( 62.81, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, 1260.13, 1874.28 ) LPos=( 59.94, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, 1245.21, 1897.97 ) LPos=( 52.06, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, 1263.20, 1869.41 ) LPos=( 49.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, 1263.20, 1869.41 ) LPos=( 31.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 52.06, 1266.26, 1864.54 ) LPos=( 52.06, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 46.31, 1267.79, 1862.11 ) LPos=( 46.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, 1254.40, 1883.37 ) LPos=( 21.19, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, 1251.34, 1888.24 ) LPos=( 24.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, 1248.27, 1893.10 ) LPos=( 21.19, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, 1246.74, 1895.54 ) LPos=( 6.81, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, 1245.21, 1897.97 ) LPos=( 21.19, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, 1267.79, 1862.11 ) LPos=( 24.06, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, 1264.73, 1866.98 ) LPos=( 21.19, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, 1269.32, 1859.68 ) LPos=( 18.31, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, 1267.79, 1862.11 ) LPos=( 18.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, 1263.20, 1869.41 ) LPos=( 18.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, 1260.13, 1874.28 ) LPos=( 18.31, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, 1266.26, 1864.54 ) LPos=( 15.44, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, 1267.79, 1862.11 ) LPos=( 12.56, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, 1264.73, 1866.98 ) LPos=( 9.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, 1261.66, 1871.84 ) LPos=( 9.69, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 9.69, 1258.60, 1876.71 ) LPos=( 9.69, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, 1267.79, 1862.11 ) LPos=( 6.81, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, 1267.79, 1862.11 ) LPos=( 3.94, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, 1252.87, 1885.81 ) LPos=( -24.06, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -21.19, 1243.68, 1900.40 ) LPos=( -21.19, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, 1251.34, 1888.24 ) LPos=( -18.31, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -15.44, 1251.34, 1888.24 ) LPos=( -15.44, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -6.81, 1252.87, 1885.81 ) LPos=( -6.81, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -21.19, 1258.60, 1876.71 ) LPos=( -21.19, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, 1263.20, 1869.41 ) LPos=( -18.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, 1263.20, 1869.41 ) LPos=( -21.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, 1264.73, 1866.98 ) LPos=( -9.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, 1264.73, 1866.98 ) LPos=( -24.06, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, 1269.32, 1859.68 ) LPos=( -6.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, 1269.32, 1859.68 ) LPos=( -15.44, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1254.40, 1883.37 ) LPos=( -31.94, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -49.19, 1252.87, 1885.81 ) LPos=( -49.19, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, 1251.34, 1888.24 ) LPos=( -34.81, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, 1248.27, 1893.10 ) LPos=( -52.06, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -34.81, 1248.27, 1893.10 ) LPos=( -34.81, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, 1258.60, 1876.71 ) LPos=( -31.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, 1258.60, 1876.71 ) LPos=( -34.81, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -40.56, 1267.79, 1862.11 ) LPos=( -40.56, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, 1261.66, 1871.84 ) LPos=( -40.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, 1260.13, 1874.28 ) LPos=( -40.56, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, 1264.73, 1866.98 ) LPos=( -46.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, 1261.66, 1871.84 ) LPos=( -46.31, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -49.19, 1269.32, 1859.68 ) LPos=( -49.19, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, 1263.20, 1869.41 ) LPos=( -49.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, 1251.34, 1888.24 ) LPos=( -80.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -77.19, 1246.74, 1895.54 ) LPos=( -77.19, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, 1251.34, 1888.24 ) LPos=( -77.19, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -68.56, 1246.74, 1895.54 ) LPos=( -68.56, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, 1249.81, 1890.67 ) LPos=( -65.69, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -62.81, 1246.74, 1895.54 ) LPos=( -62.81, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -59.94, 1246.74, 1895.54 ) LPos=( -59.94, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, 1248.27, 1893.10 ) LPos=( -59.94, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, 1249.81, 1890.67 ) LPos=( -59.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, 1252.87, 1885.81 ) LPos=( -59.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, 1258.60, 1876.71 ) LPos=( -59.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, 1258.60, 1876.71 ) LPos=( -68.56, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, 1260.13, 1874.28 ) LPos=( -77.19, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -59.94, 1261.66, 1871.84 ) LPos=( -59.94, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -62.81, 1263.20, 1869.41 ) LPos=( -62.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -65.69, 1263.20, 1869.41 ) LPos=( -65.69, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, 1263.20, 1869.41 ) LPos=( -71.44, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, 1264.73, 1866.98 ) LPos=( -65.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -74.31, 1264.73, 1866.98 ) LPos=( -74.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, 1266.26, 1864.54 ) LPos=( -65.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, 1267.79, 1862.11 ) LPos=( -74.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, 1269.32, 1859.68 ) LPos=( -62.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, 1254.40, 1883.37 ) LPos=( -90.81, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -99.44, 1249.81, 1890.67 ) LPos=( -99.44, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -102.31, 1248.27, 1893.10 ) LPos=( -102.31, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -96.56, 1248.27, 1893.10 ) LPos=( -96.56, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, 1246.74, 1895.54 ) LPos=( -108.06, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -93.69, 1243.68, 1900.40 ) LPos=( -93.69, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, 1263.20, 1869.41 ) LPos=( -87.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -87.94, 1261.66, 1871.84 ) LPos=( -87.94, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, 1261.66, 1871.84 ) LPos=( -90.81, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, 1260.13, 1874.28 ) LPos=( -90.81, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -93.69, 1266.26, 1864.54 ) LPos=( -93.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, 1261.66, 1871.84 ) LPos=( -93.69, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, 1267.79, 1862.11 ) LPos=( -96.56, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, 1264.73, 1866.98 ) LPos=( -96.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, 1263.20, 1869.41 ) LPos=( -96.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, 1261.66, 1871.84 ) LPos=( -96.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, 1264.73, 1866.98 ) LPos=( -99.44, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -99.44, 1260.13, 1874.28 ) LPos=( -99.44, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -102.31, 1267.79, 1862.11 ) LPos=( -102.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, 1266.26, 1864.54 ) LPos=( -102.31, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, 1260.13, 1874.28 ) LPos=( -102.31, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, 1269.32, 1859.68 ) LPos=( -108.06, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, 1245.21, 1897.97 ) LPos=( -130.31, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -130.31, 1248.27, 1893.10 ) LPos=( -130.31, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, 1251.34, 1888.24 ) LPos=( -130.31, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, 1248.27, 1893.10 ) LPos=( -127.44, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -121.69, 1248.27, 1893.10 ) LPos=( -121.69, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -115.94, 1245.21, 1897.97 ) LPos=( -115.94, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -115.94, 1249.81, 1890.67 ) LPos=( -115.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, 1258.60, 1876.71 ) LPos=( -136.06, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, 1260.13, 1874.28 ) LPos=( -133.19, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, 1261.66, 1871.84 ) LPos=( -124.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, 1264.73, 1866.98 ) LPos=( -130.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -118.81, 1269.32, 1859.68 ) LPos=( -118.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, 1269.32, 1859.68 ) LPos=( -121.69, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -158.31, 1249.81, 1890.67 ) LPos=( -158.31, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -149.69, 1269.32, 1859.68 ) LPos=( -149.69, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -149.69, 1260.13, 1874.28 ) LPos=( -149.69, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -152.56, 1269.32, 1859.68 ) LPos=( -152.56, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -152.56, 1258.60, 1876.71 ) LPos=( -152.56, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, 1267.79, 1862.11 ) LPos=( -158.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -183.44, 1251.34, 1888.24 ) LPos=( -183.44, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -177.69, 1245.21, 1897.97 ) LPos=( -177.69, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, 1251.34, 1888.24 ) LPos=( -171.94, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -214.31, 1243.68, 1900.40 ) LPos=( -214.31, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -205.69, 1266.26, 1864.54 ) LPos=( -205.69, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -208.56, 1261.66, 1871.84 ) LPos=( -208.56, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, 1248.27, 1893.10 ) LPos=( -227.94, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -227.94, 1249.81, 1890.67 ) LPos=( -227.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -236.56, 1258.60, 1876.71 ) LPos=( -236.56, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -227.94, 1260.13, 1874.28 ) LPos=( -227.94, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -233.69, 1260.13, 1874.28 ) LPos=( -233.69, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -233.69, 1263.20, 1869.41 ) LPos=( -233.69, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -245.19, 1263.20, 1869.41 ) LPos=( -245.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -248.06, 1263.20, 1869.41 ) LPos=( -248.06, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, 1264.73, 1866.98 ) LPos=( -227.94, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -233.69, 1264.73, 1866.98 ) LPos=( -233.69, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, 1264.73, 1866.98 ) LPos=( -236.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, 1269.32, 1859.68 ) LPos=( -236.56, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -273.19, 1248.27, 1893.10 ) LPos=( -273.19, 12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -264.56, 1264.73, 1866.98 ) LPos=( -264.56, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, 1263.20, 1869.41 ) LPos=( -264.56, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -267.44, 1261.66, 1871.84 ) LPos=( -267.44, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -286.81, 1246.74, 1895.54 ) LPos=( -286.81, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -283.94, 1252.87, 1885.81 ) LPos=( -283.94, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -283.94, 1263.20, 1869.41 ) LPos=( -283.94, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -301.19, 1266.26, 1864.54 ) LPos=( -301.19, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -314.81, 1243.68, 1900.40 ) LPos=( -314.81, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -314.81, 1264.73, 1866.98 ) LPos=( -314.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -314.81, 1263.20, 1869.41 ) LPos=( -314.81, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -323.44, 1267.79, 1862.11 ) LPos=( -323.44, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -339.94, 1245.21, 1897.97 ) LPos=( -339.94, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -351.44, 1261.66, 1871.84 ) LPos=( -351.44, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, 1263.20, 1869.41 ) LPos=( -354.31, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -357.19, 1263.20, 1869.41 ) LPos=( -357.19, 40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -373.69, 1254.40, 1883.37 ) LPos=( -373.69, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -388.06, 1245.21, 1897.97 ) LPos=( -388.06, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -367.94, 1258.60, 1876.71 ) LPos=( -367.94, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -370.81, 1269.32, 1859.68 ) LPos=( -370.81, 52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -413.19, 1246.74, 1895.54 ) LPos=( -413.19, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -410.31, 1243.68, 1900.40 ) LPos=( -410.31, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -401.69, 1243.68, 1900.40 ) LPos=( -401.69, 4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -438.31, 1249.81, 1890.67 ) LPos=( -438.31, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -438.31, 1267.79, 1862.11 ) LPos=( -438.31, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -444.06, 1267.79, 1862.11 ) LPos=( -444.06, 49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -444.06, 1258.60, 1876.71 ) LPos=( -444.06, 32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -472.06, 1246.74, 1895.54 ) LPos=( -472.06, 9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -457.69, 1249.81, 1890.67 ) LPos=( -457.69, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -466.31, 1260.13, 1874.28 ) LPos=( -466.31, 35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -454.81, 1264.73, 1866.98 ) LPos=( -454.81, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -479.94, 1251.34, 1888.24 ) LPos=( -479.94, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -479.94, 1245.21, 1897.97 ) LPos=( -479.94, 7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -494.31, 1261.66, 1871.84 ) LPos=( -494.31, 37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -497.19, 1266.26, 1864.54 ) LPos=( -497.19, 46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -528.06, 1249.81, 1890.67 ) LPos=( -528.06, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -556.06, 1254.40, 1883.37 ) LPos=( -556.06, 24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -550.31, 1252.87, 1885.81 ) LPos=( -550.31, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -547.44, 1252.87, 1885.81 ) LPos=( -547.44, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -535.94, 1249.81, 1890.67 ) LPos=( -535.94, 15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -584.06, 1251.34, 1888.24 ) LPos=( -584.06, 18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -566.81, 1252.87, 1885.81 ) LPos=( -566.81, 21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Top PD[Mod,NInMod]:065,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -606.31, 1264.73, 1866.98 ) LPos=( -606.31, 43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:066,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -556.06, -1550.88, 1412.57 ) LPos=( -556.06, -580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:066,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -507.94, -1562.74, 1393.74 ) LPos=( -507.94, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:066,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -494.31, -1568.87, 1384.01 ) LPos=( -494.31, -614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -376.56, -1559.67, 1398.61 ) LPos=( -376.56, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -360.06, -1562.74, 1393.74 ) LPos=( -360.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -339.94, -1561.21, 1396.18 ) LPos=( -339.94, -600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -339.94, -1559.67, 1398.61 ) LPos=( -339.94, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -332.06, -1552.41, 1410.14 ) LPos=( -332.06, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:067,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, -1544.75, 1422.30 ) LPos=( -236.56, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -208.56, -1570.40, 1381.58 ) LPos=( -208.56, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, -1565.80, 1388.88 ) LPos=( -171.94, -608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -118.81, -1568.87, 1384.01 ) LPos=( -118.81, -614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, -1565.80, 1388.88 ) LPos=( -115.94, -608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1549.35, 1415.00 ) LPos=( -99.44, -577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1552.41, 1410.14 ) LPos=( -105.19, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, -1544.75, 1422.30 ) LPos=( -15.44, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, -1564.27, 1391.31 ) LPos=( -24.06, -605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, -1562.74, 1393.74 ) LPos=( -24.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, -1567.33, 1386.45 ) LPos=( -21.19, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, -1562.74, 1393.74 ) LPos=( 24.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 52.06, -1567.33, 1386.45 ) LPos=( 52.06, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, -1564.27, 1391.31 ) LPos=( 87.94, -605.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, -1565.80, 1388.88 ) LPos=( 105.19, -608.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, -1561.21, 1396.18 ) LPos=( 127.44, -600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, -1562.74, 1393.74 ) LPos=( 127.44, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1567.33, 1386.45 ) LPos=( 115.94, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, -1570.40, 1381.58 ) LPos=( 121.69, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, -1570.40, 1381.58 ) LPos=( 133.19, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 155.44, -1552.41, 1410.14 ) LPos=( 155.44, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1550.88, 1412.57 ) LPos=( 152.56, -580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 152.56, -1546.29, 1419.87 ) LPos=( 152.56, -572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 161.19, -1544.75, 1422.30 ) LPos=( 161.19, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 149.69, -1568.87, 1384.01 ) LPos=( 149.69, -614.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 164.06, -1562.74, 1393.74 ) LPos=( 164.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, -1549.35, 1415.00 ) LPos=( 248.06, -577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 267.44, -1546.29, 1419.87 ) LPos=( 267.44, -572.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 270.31, -1544.75, 1422.30 ) LPos=( 270.31, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 264.56, -1544.75, 1422.30 ) LPos=( 264.56, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 255.94, -1567.33, 1386.45 ) LPos=( 255.94, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 276.06, -1567.33, 1386.45 ) LPos=( 276.06, -611.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 301.19, -1559.67, 1398.61 ) LPos=( 301.19, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 323.44, -1555.48, 1405.27 ) LPos=( 323.44, -589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 326.31, -1544.75, 1422.30 ) LPos=( 326.31, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 360.06, -1570.40, 1381.58 ) LPos=( 360.06, -617.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 385.19, -1555.48, 1405.27 ) LPos=( 385.19, -589.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 376.56, -1553.95, 1407.71 ) LPos=( 376.56, -586.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 395.94, -1550.88, 1412.57 ) LPos=( 395.94, -580.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 398.81, -1559.67, 1398.61 ) LPos=( 398.81, -597.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 404.56, -1561.21, 1396.18 ) LPos=( 404.56, -600.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:070,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 426.81, -1544.75, 1422.30 ) LPos=( 426.81, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 451.94, -1549.35, 1415.00 ) LPos=( 451.94, -577.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 488.56, -1544.75, 1422.30 ) LPos=( 488.56, -569.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 507.94, -1552.41, 1410.14 ) LPos=( 507.94, -583.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:071,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 556.06, -1562.74, 1393.74 ) LPos=( 556.06, -602.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -591.94, -1522.31, 1457.95 ) LPos=( -591.94, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -591.94, -1523.84, 1455.52 ) LPos=( -591.94, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -603.44, -1514.65, 1470.11 ) LPos=( -603.44, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -612.06, -1514.65, 1470.11 ) LPos=( -612.06, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -612.06, -1522.31, 1457.95 ) LPos=( -612.06, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -612.06, -1525.37, 1453.08 ) LPos=( -612.06, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -578.31, -1520.77, 1460.38 ) LPos=( -578.31, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -535.94, -1517.71, 1465.25 ) LPos=( -535.94, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -556.06, -1514.65, 1470.11 ) LPos=( -556.06, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -528.06, -1532.63, 1441.55 ) LPos=( -528.06, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -519.44, -1535.70, 1436.69 ) LPos=( -519.44, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -507.94, -1529.57, 1446.42 ) LPos=( -507.94, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -398.81, -1525.37, 1453.08 ) LPos=( -398.81, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -407.44, -1514.65, 1470.11 ) LPos=( -407.44, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -410.31, -1514.65, 1470.11 ) LPos=( -410.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -379.44, -1516.18, 1467.68 ) LPos=( -379.44, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -388.06, -1516.18, 1467.68 ) LPos=( -388.06, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -370.81, -1540.29, 1429.39 ) LPos=( -370.81, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -367.94, -1540.29, 1429.39 ) LPos=( -367.94, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -360.06, -1529.57, 1446.42 ) LPos=( -360.06, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -339.94, -1535.70, 1436.69 ) LPos=( -339.94, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -171.94, -1538.76, 1431.82 ) LPos=( -171.94, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -121.69, -1514.65, 1470.11 ) LPos=( -121.69, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, -1514.65, 1470.11 ) LPos=( -133.19, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, -1535.70, 1436.69 ) LPos=( -136.06, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1532.63, 1441.55 ) LPos=( -130.31, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -99.44, -1514.65, 1470.11 ) LPos=( -99.44, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -102.31, -1514.65, 1470.11 ) LPos=( -102.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, -1517.71, 1465.25 ) LPos=( -108.06, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, -1522.31, 1457.95 ) LPos=( -108.06, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -59.94, -1514.65, 1470.11 ) LPos=( -59.94, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, -1514.65, 1470.11 ) LPos=( -62.81, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1514.65, 1470.11 ) LPos=( -37.69, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -37.69, -1516.18, 1467.68 ) LPos=( -37.69, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1517.71, 1465.25 ) LPos=( -9.69, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -21.19, -1516.18, 1467.68 ) LPos=( -21.19, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:074,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1529.57, 1446.42 ) LPos=( -15.44, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 6.81, -1517.71, 1465.25 ) LPos=( 6.81, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3.94, -1516.18, 1467.68 ) LPos=( 3.94, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, -1520.77, 1460.38 ) LPos=( 52.06, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 49.19, -1520.77, 1460.38 ) LPos=( 49.19, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, -1534.16, 1439.12 ) LPos=( 31.94, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, -1516.18, 1467.68 ) LPos=( 80.06, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 68.56, -1534.16, 1439.12 ) LPos=( 68.56, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1523.84, 1455.52 ) LPos=( 90.81, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, -1520.77, 1460.38 ) LPos=( 105.19, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 105.19, -1516.18, 1467.68 ) LPos=( 105.19, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, -1514.65, 1470.11 ) LPos=( 108.06, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, -1514.65, 1470.11 ) LPos=( 102.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, -1531.10, 1443.99 ) LPos=( 102.31, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1529.57, 1446.42 ) LPos=( 105.19, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 108.06, -1534.16, 1439.12 ) LPos=( 108.06, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1531.10, 1443.99 ) LPos=( 108.06, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, -1525.37, 1453.08 ) LPos=( 136.06, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, -1534.16, 1439.12 ) LPos=( 115.94, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, -1538.76, 1431.82 ) LPos=( 124.56, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 127.44, -1538.76, 1431.82 ) LPos=( 127.44, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, -1538.76, 1431.82 ) LPos=( 130.31, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 161.19, -1523.84, 1455.52 ) LPos=( 161.19, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 158.31, -1522.31, 1457.95 ) LPos=( 158.31, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 158.31, -1519.24, 1462.81 ) LPos=( 158.31, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 146.81, -1538.76, 1431.82 ) LPos=( 146.81, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 149.69, -1535.70, 1436.69 ) LPos=( 149.69, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, -1531.10, 1443.99 ) LPos=( 149.69, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 155.44, -1535.70, 1436.69 ) LPos=( 155.44, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 161.19, -1537.23, 1434.26 ) LPos=( 161.19, -555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 164.06, -1531.10, 1443.99 ) LPos=( 164.06, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 180.56, -1532.63, 1441.55 ) LPos=( 180.56, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 174.81, -1534.16, 1439.12 ) LPos=( 174.81, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 180.56, -1537.23, 1434.26 ) LPos=( 180.56, -555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, -1540.29, 1429.39 ) LPos=( 199.94, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 205.69, -1535.70, 1436.69 ) LPos=( 205.69, -552.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 211.44, -1537.23, 1434.26 ) LPos=( 211.44, -555.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 214.31, -1532.63, 1441.55 ) LPos=( 214.31, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 217.19, -1532.63, 1441.55 ) LPos=( 217.19, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 220.06, -1534.16, 1439.12 ) LPos=( 220.06, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 248.06, -1520.77, 1460.38 ) LPos=( 248.06, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, -1516.18, 1467.68 ) LPos=( 245.19, -515.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 245.19, -1519.24, 1462.81 ) LPos=( 245.19, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 245.19, -1525.37, 1453.08 ) LPos=( 245.19, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 242.31, -1523.84, 1455.52 ) LPos=( 242.31, -529.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 239.44, -1520.77, 1460.38 ) LPos=( 239.44, -524.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 236.56, -1519.24, 1462.81 ) LPos=( 236.56, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 230.81, -1529.57, 1446.42 ) LPos=( 230.81, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, -1531.10, 1443.99 ) LPos=( 227.94, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, -1531.10, 1443.99 ) LPos=( 233.69, -543.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 227.94, -1534.16, 1439.12 ) LPos=( 227.94, -549.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 239.44, -1538.76, 1431.82 ) LPos=( 239.44, -557.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 270.31, -1517.71, 1465.25 ) LPos=( 270.31, -518.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 348.56, -1540.29, 1429.39 ) LPos=( 348.56, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 373.69, -1525.37, 1453.08 ) LPos=( 373.69, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 367.94, -1532.63, 1441.55 ) LPos=( 367.94, -546.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 416.06, -1522.31, 1457.95 ) LPos=( 416.06, -527.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 398.81, -1540.29, 1429.39 ) LPos=( 398.81, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 435.44, -1525.37, 1453.08 ) LPos=( 435.44, -532.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:076,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 432.56, -1514.65, 1470.11 ) LPos=( 432.56, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 525.19, -1540.29, 1429.39 ) LPos=( 525.19, -560.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 550.31, -1514.65, 1470.11 ) LPos=( 550.31, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 535.94, -1529.57, 1446.42 ) LPos=( 535.94, -540.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 563.94, -1519.24, 1462.81 ) LPos=( 563.94, -521.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:077,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 600.56, -1514.65, 1470.11 ) LPos=( 600.56, -512.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -600.56, -1499.46, 1494.23 ) LPos=( -600.56, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -578.31, -1507.12, 1482.07 ) LPos=( -578.31, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -535.94, -1484.54, 1517.92 ) LPos=( -535.94, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -538.81, -1489.14, 1510.62 ) LPos=( -538.81, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -547.44, -1492.20, 1505.76 ) LPos=( -547.44, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -547.44, -1508.65, 1479.63 ) LPos=( -547.44, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -535.94, -1508.65, 1479.63 ) LPos=( -535.94, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -494.31, -1499.46, 1494.23 ) LPos=( -494.31, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -488.56, -1499.46, 1494.23 ) LPos=( -488.56, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -488.56, -1508.65, 1479.63 ) LPos=( -488.56, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -426.81, -1507.12, 1482.07 ) LPos=( -426.81, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -395.94, -1507.12, 1482.07 ) LPos=( -395.94, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -311.94, -1490.67, 1508.19 ) LPos=( -311.94, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -314.81, -1492.20, 1505.76 ) LPos=( -314.81, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -326.31, -1500.99, 1491.80 ) LPos=( -326.31, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -329.19, -1505.59, 1484.50 ) LPos=( -329.19, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -267.44, -1484.54, 1517.92 ) LPos=( -267.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -273.19, -1484.54, 1517.92 ) LPos=( -273.19, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -227.94, -1489.14, 1510.62 ) LPos=( -227.94, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -227.94, -1486.07, 1515.49 ) LPos=( -227.94, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, -1486.07, 1515.49 ) LPos=( -236.56, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -239.44, -1486.07, 1515.49 ) LPos=( -239.44, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -242.31, -1486.07, 1515.49 ) LPos=( -242.31, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, -1486.07, 1515.49 ) LPos=( -245.19, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -248.06, -1486.07, 1515.49 ) LPos=( -248.06, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, -1484.54, 1517.92 ) LPos=( -236.56, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -199.94, -1490.67, 1508.19 ) LPos=( -199.94, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -199.94, -1493.73, 1503.33 ) LPos=( -199.94, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -199.94, -1495.26, 1500.89 ) LPos=( -199.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -208.56, -1492.20, 1505.76 ) LPos=( -208.56, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -214.31, -1492.20, 1505.76 ) LPos=( -214.31, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1493.73, 1503.33 ) LPos=( -214.31, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -217.19, -1487.60, 1513.06 ) LPos=( -217.19, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -171.94, -1495.26, 1500.89 ) LPos=( -171.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -174.81, -1495.26, 1500.89 ) LPos=( -174.81, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -189.19, -1495.26, 1500.89 ) LPos=( -189.19, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -189.19, -1499.46, 1494.23 ) LPos=( -189.19, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -174.81, -1499.46, 1494.23 ) LPos=( -174.81, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -146.81, -1495.26, 1500.89 ) LPos=( -146.81, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -149.69, -1495.26, 1500.89 ) LPos=( -149.69, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -164.06, -1495.26, 1500.89 ) LPos=( -164.06, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, -1499.46, 1494.23 ) LPos=( -164.06, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -161.19, -1499.46, 1494.23 ) LPos=( -161.19, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1499.46, 1494.23 ) LPos=( -155.44, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -127.44, -1495.26, 1500.89 ) LPos=( -127.44, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1495.26, 1500.89 ) LPos=( -133.19, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -121.69, -1493.73, 1503.33 ) LPos=( -121.69, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, -1493.73, 1503.33 ) LPos=( -124.56, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, -1490.67, 1508.19 ) LPos=( -121.69, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, -1489.14, 1510.62 ) LPos=( -133.19, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -115.94, -1486.07, 1515.49 ) LPos=( -115.94, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -121.69, -1486.07, 1515.49 ) LPos=( -121.69, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, -1484.54, 1517.92 ) LPos=( -115.94, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, -1486.07, 1515.49 ) LPos=( -96.56, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -99.44, -1484.54, 1517.92 ) LPos=( -99.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -105.19, -1487.60, 1513.06 ) LPos=( -105.19, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -80.06, -1507.12, 1482.07 ) LPos=( -80.06, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, -1508.65, 1479.63 ) LPos=( -68.56, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, -1505.59, 1484.50 ) LPos=( -37.69, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -34.81, -1505.59, 1484.50 ) LPos=( -34.81, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, -1507.12, 1482.07 ) LPos=( -37.69, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1508.65, 1479.63 ) LPos=( -43.44, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, -1510.18, 1477.20 ) LPos=( -46.31, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, -1510.18, 1477.20 ) LPos=( -40.56, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, -1495.26, 1500.89 ) LPos=( -24.06, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, -1490.67, 1508.19 ) LPos=( -18.31, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -24.06, -1508.65, 1479.63 ) LPos=( -24.06, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, -1507.12, 1482.07 ) LPos=( -24.06, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1510.18, 1477.20 ) LPos=( -9.69, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1507.12, 1482.07 ) LPos=( -9.69, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1508.65, 1479.63 ) LPos=( -6.81, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, -1487.60, 1513.06 ) LPos=( 18.31, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, -1486.07, 1515.49 ) LPos=( 12.56, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 9.69, -1486.07, 1515.49 ) LPos=( 9.69, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, -1486.07, 1515.49 ) LPos=( 6.81, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1484.54, 1517.92 ) LPos=( 3.94, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3.94, -1487.60, 1513.06 ) LPos=( 3.94, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3.94, -1492.20, 1505.76 ) LPos=( 3.94, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3.94, -1508.65, 1479.63 ) LPos=( 3.94, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 49.19, -1487.60, 1513.06 ) LPos=( 49.19, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, -1487.60, 1513.06 ) LPos=( 37.69, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, -1487.60, 1513.06 ) LPos=( 31.94, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 40.56, -1484.54, 1517.92 ) LPos=( 40.56, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 40.56, -1505.59, 1484.50 ) LPos=( 40.56, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, -1510.18, 1477.20 ) LPos=( 52.06, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 80.06, -1492.20, 1505.76 ) LPos=( 80.06, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1495.26, 1500.89 ) LPos=( 80.06, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 77.19, -1486.07, 1515.49 ) LPos=( 77.19, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 74.31, -1484.54, 1517.92 ) LPos=( 74.31, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1492.20, 1505.76 ) LPos=( 74.31, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 71.44, -1492.20, 1505.76 ) LPos=( 71.44, -470.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, -1484.54, 1517.92 ) LPos=( 62.81, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1502.52, 1489.36 ) LPos=( 74.31, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1504.06, 1486.93 ) LPos=( 80.06, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, -1505.59, 1484.50 ) LPos=( 71.44, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 74.31, -1505.59, 1484.50 ) LPos=( 74.31, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 77.19, -1505.59, 1484.50 ) LPos=( 77.19, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, -1507.12, 1482.07 ) LPos=( 77.19, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 77.19, -1508.65, 1479.63 ) LPos=( 77.19, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, -1504.06, 1486.93 ) LPos=( 93.69, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, -1505.59, 1484.50 ) LPos=( 96.56, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1504.06, 1486.93 ) LPos=( 96.56, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, -1510.18, 1477.20 ) LPos=( 99.44, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 99.44, -1502.52, 1489.36 ) LPos=( 99.44, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, -1500.99, 1491.80 ) LPos=( 99.44, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 105.19, -1510.18, 1477.20 ) LPos=( 105.19, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1500.99, 1491.80 ) LPos=( 108.06, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, -1490.67, 1508.19 ) LPos=( 124.56, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 124.56, -1493.73, 1503.33 ) LPos=( 124.56, -473.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 121.69, -1489.14, 1510.62 ) LPos=( 121.69, -464.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, -1495.26, 1500.89 ) LPos=( 115.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, -1499.46, 1494.23 ) LPos=( 130.31, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, -1504.06, 1486.93 ) LPos=( 130.31, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 124.56, -1507.12, 1482.07 ) LPos=( 124.56, -498.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 158.31, -1486.07, 1515.49 ) LPos=( 158.31, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 149.69, -1510.18, 1477.20 ) LPos=( 149.69, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 149.69, -1508.65, 1479.63 ) LPos=( 149.69, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 164.06, -1499.46, 1494.23 ) LPos=( 164.06, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 248.06, -1486.07, 1515.49 ) LPos=( 248.06, -459.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 239.44, -1484.54, 1517.92 ) LPos=( 239.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 248.06, -1502.52, 1489.36 ) LPos=( 248.06, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 245.19, -1504.06, 1486.93 ) LPos=( 245.19, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 245.19, -1508.65, 1479.63 ) LPos=( 245.19, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 267.44, -1495.26, 1500.89 ) LPos=( 267.44, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 261.69, -1495.26, 1500.89 ) LPos=( 261.69, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 255.94, -1495.26, 1500.89 ) LPos=( 255.94, -476.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 258.81, -1487.60, 1513.06 ) LPos=( 258.81, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 255.94, -1510.18, 1477.20 ) LPos=( 255.94, -504.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 258.81, -1505.59, 1484.50 ) LPos=( 258.81, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, -1504.06, 1486.93 ) LPos=( 261.69, -492.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 261.69, -1500.99, 1491.80 ) LPos=( 261.69, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 261.69, -1499.46, 1494.23 ) LPos=( 261.69, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, -1487.60, 1513.06 ) LPos=( 304.06, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 292.56, -1484.54, 1517.92 ) LPos=( 292.56, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, -1505.59, 1484.50 ) LPos=( 283.94, -495.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:082,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, -1490.67, 1508.19 ) LPos=( 320.56, -467.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 451.94, -1499.46, 1494.23 ) LPos=( 451.94, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 472.06, -1508.65, 1479.63 ) LPos=( 472.06, -501.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 522.31, -1500.99, 1491.80 ) LPos=( 522.31, -487.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 525.19, -1502.52, 1489.36 ) LPos=( 525.19, -489.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 547.44, -1484.54, 1517.92 ) LPos=( 547.44, -456.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 584.06, -1499.46, 1494.23 ) LPos=( 584.06, -484.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:083,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 591.94, -1487.60, 1513.06 ) LPos=( 591.94, -461.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -591.94, -1463.62, 1551.14 ) LPos=( -591.94, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -550.31, -1460.56, 1556.00 ) LPos=( -550.31, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -479.94, -1454.43, 1565.73 ) LPos=( -479.94, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -479.94, -1455.96, 1563.30 ) LPos=( -479.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -485.69, -1473.95, 1534.74 ) LPos=( -485.69, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -500.06, -1478.54, 1527.44 ) LPos=( -500.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -460.56, -1465.16, 1548.70 ) LPos=( -460.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:084,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -460.56, -1463.62, 1551.14 ) LPos=( -460.56, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -426.81, -1460.56, 1556.00 ) LPos=( -426.81, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -432.56, -1459.03, 1558.43 ) LPos=( -432.56, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -435.44, -1454.43, 1565.73 ) LPos=( -435.44, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -435.44, -1455.96, 1563.30 ) LPos=( -435.44, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -438.31, -1462.09, 1553.57 ) LPos=( -438.31, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -441.19, -1455.96, 1563.30 ) LPos=( -441.19, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -444.06, -1469.35, 1542.04 ) LPos=( -444.06, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -438.31, -1469.35, 1542.04 ) LPos=( -438.31, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -432.56, -1470.88, 1539.61 ) LPos=( -432.56, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -429.69, -1470.88, 1539.61 ) LPos=( -429.69, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -423.94, -1472.42, 1537.17 ) LPos=( -423.94, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -413.19, -1472.42, 1537.17 ) LPos=( -413.19, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -410.31, -1472.42, 1537.17 ) LPos=( -410.31, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -410.31, -1470.88, 1539.61 ) LPos=( -410.31, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -407.44, -1472.42, 1537.17 ) LPos=( -407.44, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -404.56, -1473.95, 1534.74 ) LPos=( -404.56, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -401.69, -1477.01, 1529.88 ) LPos=( -401.69, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -401.69, -1475.48, 1532.31 ) LPos=( -401.69, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -401.69, -1472.42, 1537.17 ) LPos=( -401.69, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -401.69, -1470.88, 1539.61 ) LPos=( -401.69, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -398.81, -1475.48, 1532.31 ) LPos=( -398.81, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -398.81, -1470.88, 1539.61 ) LPos=( -398.81, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -367.94, -1465.16, 1548.70 ) LPos=( -367.94, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -373.69, -1470.88, 1539.61 ) LPos=( -373.69, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -388.06, -1480.08, 1525.01 ) LPos=( -388.06, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -385.19, -1480.08, 1525.01 ) LPos=( -385.19, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -354.31, -1460.56, 1556.00 ) LPos=( -354.31, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -339.94, -1455.96, 1563.30 ) LPos=( -339.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -351.44, -1469.35, 1542.04 ) LPos=( -351.44, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -320.56, -1462.09, 1553.57 ) LPos=( -320.56, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -320.56, -1463.62, 1551.14 ) LPos=( -320.56, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -323.44, -1460.56, 1556.00 ) LPos=( -323.44, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -323.44, -1463.62, 1551.14 ) LPos=( -323.44, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -326.31, -1457.50, 1560.87 ) LPos=( -326.31, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -329.19, -1460.56, 1556.00 ) LPos=( -329.19, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -329.19, -1463.62, 1551.14 ) LPos=( -329.19, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, -1454.43, 1565.73 ) LPos=( -332.06, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -314.81, -1473.95, 1534.74 ) LPos=( -314.81, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -311.94, -1475.48, 1532.31 ) LPos=( -311.94, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -320.56, -1478.54, 1527.44 ) LPos=( -320.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -314.81, -1478.54, 1527.44 ) LPos=( -314.81, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, -1480.08, 1525.01 ) LPos=( -332.06, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -329.19, -1480.08, 1525.01 ) LPos=( -329.19, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -326.31, -1480.08, 1525.01 ) LPos=( -326.31, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -292.56, -1465.16, 1548.70 ) LPos=( -292.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -286.81, -1463.62, 1551.14 ) LPos=( -286.81, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -286.81, -1462.09, 1553.57 ) LPos=( -286.81, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -283.94, -1457.50, 1560.87 ) LPos=( -283.94, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -304.06, -1475.48, 1532.31 ) LPos=( -304.06, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -301.19, -1477.01, 1529.88 ) LPos=( -301.19, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -298.31, -1478.54, 1527.44 ) LPos=( -298.31, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -298.31, -1472.42, 1537.17 ) LPos=( -298.31, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -298.31, -1470.88, 1539.61 ) LPos=( -298.31, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -295.44, -1480.08, 1525.01 ) LPos=( -295.44, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -295.44, -1478.54, 1527.44 ) LPos=( -295.44, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -292.56, -1478.54, 1527.44 ) LPos=( -292.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -255.94, -1460.56, 1556.00 ) LPos=( -255.94, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -261.69, -1460.56, 1556.00 ) LPos=( -261.69, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -264.56, -1465.16, 1548.70 ) LPos=( -264.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -267.44, -1462.09, 1553.57 ) LPos=( -267.44, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -267.44, -1465.16, 1548.70 ) LPos=( -267.44, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -276.06, -1454.43, 1565.73 ) LPos=( -276.06, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -261.69, -1472.42, 1537.17 ) LPos=( -261.69, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -248.06, -1473.95, 1534.74 ) LPos=( -248.06, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -242.31, -1480.08, 1525.01 ) LPos=( -242.31, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -242.31, -1477.01, 1529.88 ) LPos=( -242.31, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -239.44, -1480.08, 1525.01 ) LPos=( -239.44, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1480.08, 1525.01 ) LPos=( -227.94, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -208.56, -1480.08, 1525.01 ) LPos=( -208.56, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -205.69, -1480.08, 1525.01 ) LPos=( -205.69, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -177.69, -1465.16, 1548.70 ) LPos=( -177.69, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -186.31, -1465.16, 1548.70 ) LPos=( -186.31, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -192.06, -1475.48, 1532.31 ) LPos=( -192.06, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1473.95, 1534.74 ) LPos=( -189.19, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -164.06, -1459.03, 1558.43 ) LPos=( -164.06, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -136.06, -1473.95, 1534.74 ) LPos=( -136.06, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -87.94, -1455.96, 1563.30 ) LPos=( -87.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, -1460.56, 1556.00 ) LPos=( -90.81, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1460.56, 1556.00 ) LPos=( -96.56, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -99.44, -1463.62, 1551.14 ) LPos=( -99.44, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1469.35, 1542.04 ) LPos=( -87.94, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, -1472.42, 1537.17 ) LPos=( -99.44, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1473.95, 1534.74 ) LPos=( -102.31, -436.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -108.06, -1478.54, 1527.44 ) LPos=( -108.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -96.56, -1478.54, 1527.44 ) LPos=( -96.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -90.81, -1480.08, 1525.01 ) LPos=( -90.81, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1460.56, 1556.00 ) LPos=( -71.44, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, -1459.03, 1558.43 ) LPos=( -71.44, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -71.44, -1454.43, 1565.73 ) LPos=( -71.44, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, -1472.42, 1537.17 ) LPos=( -80.06, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -77.19, -1469.35, 1542.04 ) LPos=( -77.19, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, -1469.35, 1542.04 ) LPos=( -74.31, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -37.69, -1465.16, 1548.70 ) LPos=( -37.69, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, -1465.16, 1548.70 ) LPos=( -40.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, -1470.88, 1539.61 ) LPos=( -24.06, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1477.01, 1529.88 ) LPos=( -18.31, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -15.44, -1480.08, 1525.01 ) LPos=( -15.44, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -12.56, -1480.08, 1525.01 ) LPos=( -12.56, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, -1472.42, 1537.17 ) LPos=( -12.56, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, -1459.03, 1558.43 ) LPos=( 21.19, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 6.81, -1457.50, 1560.87 ) LPos=( 6.81, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, -1469.35, 1542.04 ) LPos=( 21.19, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, -1472.42, 1537.17 ) LPos=( 12.56, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, -1478.54, 1527.44 ) LPos=( 12.56, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1480.08, 1525.01 ) LPos=( 3.94, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, -1459.03, 1558.43 ) LPos=( 59.94, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, -1475.48, 1532.31 ) LPos=( 71.44, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 80.06, -1478.54, 1527.44 ) LPos=( 80.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, -1480.08, 1525.01 ) LPos=( 68.56, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 99.44, -1463.62, 1551.14 ) LPos=( 99.44, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, -1463.62, 1551.14 ) LPos=( 96.56, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, -1462.09, 1553.57 ) LPos=( 105.19, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1462.09, 1553.57 ) LPos=( 102.31, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, -1460.56, 1556.00 ) LPos=( 108.06, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, -1460.56, 1556.00 ) LPos=( 105.19, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 108.06, -1459.03, 1558.43 ) LPos=( 108.06, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 108.06, -1457.50, 1560.87 ) LPos=( 108.06, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 96.56, -1470.88, 1539.61 ) LPos=( 96.56, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1477.01, 1529.88 ) LPos=( 102.31, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 102.31, -1469.35, 1542.04 ) LPos=( 102.31, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 133.19, -1454.43, 1565.73 ) LPos=( 133.19, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 130.31, -1454.43, 1565.73 ) LPos=( 130.31, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 127.44, -1462.09, 1553.57 ) LPos=( 127.44, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1465.16, 1548.70 ) LPos=( 124.56, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, -1470.88, 1539.61 ) LPos=( 118.81, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, -1472.42, 1537.17 ) LPos=( 127.44, -433.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, -1465.16, 1548.70 ) LPos=( 149.69, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1455.96, 1563.30 ) LPos=( 143.94, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1478.54, 1527.44 ) LPos=( 155.44, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, -1470.88, 1539.61 ) LPos=( 155.44, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, -1475.48, 1532.31 ) LPos=( 158.31, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 220.06, -1460.56, 1556.00 ) LPos=( 220.06, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, -1455.96, 1563.30 ) LPos=( 211.44, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:087,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 220.06, -1477.01, 1529.88 ) LPos=( 220.06, -442.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 245.19, -1459.03, 1558.43 ) LPos=( 245.19, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 242.31, -1454.43, 1565.73 ) LPos=( 242.31, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 242.31, -1463.62, 1551.14 ) LPos=( 242.31, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 242.31, -1465.16, 1548.70 ) LPos=( 242.31, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 230.81, -1462.09, 1553.57 ) LPos=( 230.81, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, -1460.56, 1556.00 ) LPos=( 227.94, -411.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 236.56, -1470.88, 1539.61 ) LPos=( 236.56, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 242.31, -1470.88, 1539.61 ) LPos=( 242.31, -430.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 242.31, -1478.54, 1527.44 ) LPos=( 242.31, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 248.06, -1478.54, 1527.44 ) LPos=( 248.06, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, -1459.03, 1558.43 ) LPos=( 264.56, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 264.56, -1455.96, 1563.30 ) LPos=( 264.56, -402.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, -1457.50, 1560.87 ) LPos=( 304.06, -405.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 286.81, -1463.62, 1551.14 ) LPos=( 286.81, -416.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 329.19, -1454.43, 1565.73 ) LPos=( 329.19, -399.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:088,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 398.81, -1462.09, 1553.57 ) LPos=( 398.81, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 469.19, -1465.16, 1548.70 ) LPos=( 469.19, -419.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 454.81, -1480.08, 1525.01 ) LPos=( 454.81, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 479.94, -1459.03, 1558.43 ) LPos=( 479.94, -408.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 488.56, -1469.35, 1542.04 ) LPos=( 488.56, -427.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 528.06, -1462.09, 1553.57 ) LPos=( 528.06, -414.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 535.94, -1475.48, 1532.31 ) LPos=( 535.94, -439.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 563.94, -1478.54, 1527.44 ) LPos=( 563.94, -444.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:089,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 578.31, -1480.08, 1525.01 ) LPos=( 578.31, -447.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -609.19, -1439.24, 1589.85 ) LPos=( -609.19, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -594.81, -1439.24, 1589.85 ) LPos=( -594.81, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -541.69, -1435.05, 1596.51 ) LPos=( -541.69, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -544.56, -1433.52, 1598.95 ) LPos=( -544.56, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -550.31, -1439.24, 1589.85 ) LPos=( -550.31, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -541.69, -1439.24, 1589.85 ) LPos=( -541.69, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -525.19, -1446.90, 1577.69 ) LPos=( -525.19, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -500.06, -1428.92, 1606.24 ) LPos=( -500.06, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -497.19, -1443.84, 1582.55 ) LPos=( -497.19, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -491.44, -1448.44, 1575.25 ) LPos=( -491.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -485.69, -1448.44, 1575.25 ) LPos=( -485.69, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -466.31, -1435.05, 1596.51 ) LPos=( -466.31, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -451.94, -1433.52, 1598.95 ) LPos=( -451.94, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -466.31, -1431.98, 1601.38 ) LPos=( -466.31, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -472.06, -1430.45, 1603.81 ) LPos=( -472.06, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -463.44, -1427.39, 1608.68 ) LPos=( -463.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -469.19, -1424.32, 1613.54 ) LPos=( -469.19, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:090,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -451.94, -1443.84, 1582.55 ) LPos=( -451.94, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -432.56, -1425.86, 1611.11 ) LPos=( -432.56, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -435.44, -1427.39, 1608.68 ) LPos=( -435.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -438.31, -1428.92, 1606.24 ) LPos=( -438.31, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -444.06, -1431.98, 1601.38 ) LPos=( -444.06, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -435.44, -1440.78, 1587.42 ) LPos=( -435.44, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -441.19, -1445.37, 1580.12 ) LPos=( -441.19, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -413.19, -1448.44, 1575.25 ) LPos=( -413.19, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -410.31, -1448.44, 1575.25 ) LPos=( -410.31, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -407.44, -1448.44, 1575.25 ) LPos=( -407.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -398.81, -1445.37, 1580.12 ) LPos=( -398.81, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -354.31, -1448.44, 1575.25 ) LPos=( -354.31, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -354.31, -1446.90, 1577.69 ) LPos=( -354.31, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -317.69, -1435.05, 1596.51 ) LPos=( -317.69, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -323.44, -1430.45, 1603.81 ) LPos=( -323.44, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -329.19, -1428.92, 1606.24 ) LPos=( -329.19, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -329.19, -1430.45, 1603.81 ) LPos=( -329.19, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -329.19, -1435.05, 1596.51 ) LPos=( -329.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -317.69, -1440.78, 1587.42 ) LPos=( -317.69, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -329.19, -1446.90, 1577.69 ) LPos=( -329.19, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -332.06, -1448.44, 1575.25 ) LPos=( -332.06, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -326.31, -1449.97, 1572.82 ) LPos=( -326.31, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -264.56, -1428.92, 1606.24 ) LPos=( -264.56, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -267.44, -1427.39, 1608.68 ) LPos=( -267.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -270.31, -1435.05, 1596.51 ) LPos=( -270.31, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -273.19, -1435.05, 1596.51 ) LPos=( -273.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -276.06, -1431.98, 1601.38 ) LPos=( -276.06, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -276.06, -1439.24, 1589.85 ) LPos=( -276.06, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -264.56, -1439.24, 1589.85 ) LPos=( -264.56, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -270.31, -1440.78, 1587.42 ) LPos=( -270.31, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -267.44, -1440.78, 1587.42 ) LPos=( -267.44, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -273.19, -1442.31, 1584.98 ) LPos=( -273.19, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -270.31, -1445.37, 1580.12 ) LPos=( -270.31, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -261.69, -1446.90, 1577.69 ) LPos=( -261.69, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -276.06, -1448.44, 1575.25 ) LPos=( -276.06, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -273.19, -1449.97, 1572.82 ) LPos=( -273.19, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -270.31, -1449.97, 1572.82 ) LPos=( -270.31, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -258.81, -1449.97, 1572.82 ) LPos=( -258.81, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -248.06, -1435.05, 1596.51 ) LPos=( -248.06, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -248.06, -1433.52, 1598.95 ) LPos=( -248.06, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -239.44, -1427.39, 1608.68 ) LPos=( -239.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:091,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -248.06, -1445.37, 1580.12 ) LPos=( -248.06, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -171.94, -1427.39, 1608.68 ) LPos=( -171.94, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -174.81, -1425.86, 1611.11 ) LPos=( -174.81, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, -1424.32, 1613.54 ) LPos=( -174.81, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -164.06, -1443.84, 1582.55 ) LPos=( -164.06, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, -1445.37, 1580.12 ) LPos=( -164.06, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -164.06, -1448.44, 1575.25 ) LPos=( -164.06, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -133.19, -1424.32, 1613.54 ) LPos=( -133.19, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, -1424.32, 1613.54 ) LPos=( -87.94, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -87.94, -1431.98, 1601.38 ) LPos=( -87.94, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1435.05, 1596.51 ) LPos=( -87.94, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, -1431.98, 1601.38 ) LPos=( -90.81, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -93.69, -1424.32, 1613.54 ) LPos=( -93.69, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -93.69, -1427.39, 1608.68 ) LPos=( -93.69, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, -1428.92, 1606.24 ) LPos=( -96.56, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1430.45, 1603.81 ) LPos=( -96.56, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -96.56, -1435.05, 1596.51 ) LPos=( -96.56, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -99.44, -1427.39, 1608.68 ) LPos=( -99.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -102.31, -1425.86, 1611.11 ) LPos=( -102.31, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -77.19, -1435.05, 1596.51 ) LPos=( -77.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, -1433.52, 1598.95 ) LPos=( -74.31, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -71.44, -1449.97, 1572.82 ) LPos=( -71.44, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -71.44, -1448.44, 1575.25 ) LPos=( -71.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, -1442.31, 1584.98 ) LPos=( -71.44, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, -1449.97, 1572.82 ) LPos=( -68.56, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -65.69, -1439.24, 1589.85 ) LPos=( -65.69, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, -1443.84, 1582.55 ) LPos=( -59.94, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, -1440.78, 1587.42 ) LPos=( -59.94, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, -1431.98, 1601.38 ) LPos=( -40.56, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, -1428.92, 1606.24 ) LPos=( -46.31, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1431.98, 1601.38 ) LPos=( -46.31, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -49.19, -1433.52, 1598.95 ) LPos=( -49.19, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1435.05, 1596.51 ) LPos=( -49.19, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, -1439.24, 1589.85 ) LPos=( -49.19, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -52.06, -1440.78, 1587.42 ) LPos=( -52.06, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, -1443.84, 1582.55 ) LPos=( -43.44, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -40.56, -1443.84, 1582.55 ) LPos=( -40.56, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, -1443.84, 1582.55 ) LPos=( -37.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -40.56, -1445.37, 1580.12 ) LPos=( -40.56, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -52.06, -1446.90, 1577.69 ) LPos=( -52.06, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, -1445.37, 1580.12 ) LPos=( -24.06, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -9.69, -1443.84, 1582.55 ) LPos=( -9.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -6.81, -1445.37, 1580.12 ) LPos=( -6.81, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, -1439.24, 1589.85 ) LPos=( 21.19, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1442.31, 1584.98 ) LPos=( 6.81, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1431.98, 1601.38 ) LPos=( 37.69, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 43.44, -1427.39, 1608.68 ) LPos=( 43.44, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 31.94, -1442.31, 1584.98 ) LPos=( 31.94, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, -1448.44, 1575.25 ) LPos=( 43.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 52.06, -1446.90, 1577.69 ) LPos=( 52.06, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, -1443.84, 1582.55 ) LPos=( 52.06, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 52.06, -1440.78, 1587.42 ) LPos=( 52.06, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, -1425.86, 1611.11 ) LPos=( 65.69, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 65.69, -1427.39, 1608.68 ) LPos=( 65.69, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, -1424.32, 1613.54 ) LPos=( 59.94, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 65.69, -1440.78, 1587.42 ) LPos=( 65.69, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1442.31, 1584.98 ) LPos=( 74.31, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, -1442.31, 1584.98 ) LPos=( 77.19, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1442.31, 1584.98 ) LPos=( 80.06, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, -1443.84, 1582.55 ) LPos=( 65.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, -1425.86, 1611.11 ) LPos=( 108.06, -346.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 99.44, -1442.31, 1584.98 ) LPos=( 99.44, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, -1442.31, 1584.98 ) LPos=( 108.06, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, -1433.52, 1598.95 ) LPos=( 130.31, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1435.05, 1596.51 ) LPos=( 124.56, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 121.69, -1433.52, 1598.95 ) LPos=( 121.69, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 121.69, -1435.05, 1596.51 ) LPos=( 121.69, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, -1435.05, 1596.51 ) LPos=( 118.81, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 115.94, -1428.92, 1606.24 ) LPos=( 115.94, -351.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 127.44, -1446.90, 1577.69 ) LPos=( 127.44, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 130.31, -1449.97, 1572.82 ) LPos=( 130.31, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 164.06, -1424.32, 1613.54 ) LPos=( 164.06, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 146.81, -1449.97, 1572.82 ) LPos=( 146.81, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, -1449.97, 1572.82 ) LPos=( 152.56, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 152.56, -1448.44, 1575.25 ) LPos=( 152.56, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1448.44, 1575.25 ) LPos=( 155.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, -1435.05, 1596.51 ) LPos=( 192.06, -363.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 186.31, -1430.45, 1603.81 ) LPos=( 186.31, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 180.56, -1427.39, 1608.68 ) LPos=( 180.56, -348.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 180.56, -1431.98, 1601.38 ) LPos=( 180.56, -357.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 180.56, -1433.52, 1598.95 ) LPos=( 180.56, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 171.94, -1430.45, 1603.81 ) LPos=( 171.94, -354.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, -1439.24, 1589.85 ) LPos=( 171.94, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 189.19, -1442.31, 1584.98 ) LPos=( 189.19, -376.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, -1443.84, 1582.55 ) LPos=( 177.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, -1443.84, 1582.55 ) LPos=( 183.44, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 189.19, -1443.84, 1582.55 ) LPos=( 189.19, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 171.94, -1445.37, 1580.12 ) LPos=( 171.94, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 183.44, -1445.37, 1580.12 ) LPos=( 183.44, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 171.94, -1448.44, 1575.25 ) LPos=( 171.94, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, -1448.44, 1575.25 ) LPos=( 174.81, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 183.44, -1448.44, 1575.25 ) LPos=( 183.44, -388.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 202.81, -1433.52, 1598.95 ) LPos=( 202.81, -360.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1443.84, 1582.55 ) LPos=( 202.81, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 208.56, -1445.37, 1580.12 ) LPos=( 208.56, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1449.97, 1572.82 ) LPos=( 220.06, -391.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 236.56, -1424.32, 1613.54 ) LPos=( 236.56, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1439.24, 1589.85 ) LPos=( 248.06, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 258.81, -1424.32, 1613.54 ) LPos=( 258.81, -343.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 255.94, -1446.90, 1577.69 ) LPos=( 255.94, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 255.94, -1445.37, 1580.12 ) LPos=( 255.94, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 258.81, -1446.90, 1577.69 ) LPos=( 258.81, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 258.81, -1445.37, 1580.12 ) LPos=( 258.81, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 258.81, -1440.78, 1587.42 ) LPos=( 258.81, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 261.69, -1445.37, 1580.12 ) LPos=( 261.69, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, -1443.84, 1582.55 ) LPos=( 261.69, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 270.31, -1445.37, 1580.12 ) LPos=( 270.31, -382.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 360.06, -1439.24, 1589.85 ) LPos=( 360.06, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 351.44, -1443.84, 1582.55 ) LPos=( 351.44, -379.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:094,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 401.69, -1440.78, 1587.42 ) LPos=( 401.69, -374.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:095,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 466.31, -1439.24, 1589.85 ) LPos=( 466.31, -371.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:095,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 612.06, -1446.90, 1577.69 ) LPos=( 612.06, -385.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -535.94, -1409.14, 1637.66 ) LPos=( -535.94, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -544.56, -1412.20, 1632.79 ) LPos=( -544.56, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -510.81, -1397.28, 1656.49 ) LPos=( -510.81, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -519.44, -1418.33, 1623.06 ) LPos=( -519.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -507.94, -1419.86, 1620.63 ) LPos=( -507.94, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -482.81, -1394.22, 1661.35 ) LPos=( -482.81, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -491.44, -1400.34, 1651.62 ) LPos=( -491.44, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -491.44, -1403.41, 1646.76 ) LPos=( -491.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -491.44, -1410.67, 1635.23 ) LPos=( -491.44, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -479.94, -1412.20, 1632.79 ) LPos=( -479.94, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -482.81, -1415.27, 1627.93 ) LPos=( -482.81, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -423.94, -1403.41, 1646.76 ) LPos=( -423.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -435.44, -1397.28, 1656.49 ) LPos=( -435.44, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -438.31, -1394.22, 1661.35 ) LPos=( -438.31, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -426.81, -1415.27, 1627.93 ) LPos=( -426.81, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -438.31, -1416.80, 1625.50 ) LPos=( -438.31, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -426.81, -1416.80, 1625.50 ) LPos=( -426.81, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -435.44, -1419.86, 1620.63 ) LPos=( -435.44, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -432.56, -1419.86, 1620.63 ) LPos=( -432.56, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -426.81, -1419.86, 1620.63 ) LPos=( -426.81, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -398.81, -1404.94, 1644.32 ) LPos=( -398.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -401.69, -1404.94, 1644.32 ) LPos=( -401.69, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -407.44, -1404.94, 1644.32 ) LPos=( -407.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -410.31, -1404.94, 1644.32 ) LPos=( -410.31, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -398.81, -1403.41, 1646.76 ) LPos=( -398.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -407.44, -1398.81, 1654.05 ) LPos=( -407.44, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -401.69, -1395.75, 1658.92 ) LPos=( -401.69, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -413.19, -1409.14, 1637.66 ) LPos=( -413.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -410.31, -1409.14, 1637.66 ) LPos=( -410.31, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -407.44, -1415.27, 1627.93 ) LPos=( -407.44, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -370.81, -1395.75, 1658.92 ) LPos=( -370.81, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -388.06, -1400.34, 1651.62 ) LPos=( -388.06, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -382.31, -1409.14, 1637.66 ) LPos=( -382.31, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -388.06, -1412.20, 1632.79 ) LPos=( -388.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -382.31, -1418.33, 1623.06 ) LPos=( -382.31, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -342.81, -1403.41, 1646.76 ) LPos=( -342.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -348.56, -1401.88, 1649.19 ) LPos=( -348.56, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -345.69, -1400.34, 1651.62 ) LPos=( -345.69, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -339.94, -1398.81, 1654.05 ) LPos=( -339.94, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -354.31, -1410.67, 1635.23 ) LPos=( -354.31, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, -1404.94, 1644.32 ) LPos=( -311.94, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -314.81, -1404.94, 1644.32 ) LPos=( -314.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -320.56, -1403.41, 1646.76 ) LPos=( -320.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -326.31, -1398.81, 1654.05 ) LPos=( -326.31, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -326.31, -1401.88, 1649.19 ) LPos=( -326.31, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -329.19, -1397.28, 1656.49 ) LPos=( -329.19, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -329.19, -1403.41, 1646.76 ) LPos=( -329.19, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -332.06, -1394.22, 1661.35 ) LPos=( -332.06, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -332.06, -1400.34, 1651.62 ) LPos=( -332.06, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -314.81, -1409.14, 1637.66 ) LPos=( -314.81, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -323.44, -1415.27, 1627.93 ) LPos=( -323.44, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -311.94, -1416.80, 1625.50 ) LPos=( -311.94, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -323.44, -1418.33, 1623.06 ) LPos=( -323.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -283.94, -1404.94, 1644.32 ) LPos=( -283.94, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -292.56, -1404.94, 1644.32 ) LPos=( -292.56, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -295.44, -1404.94, 1644.32 ) LPos=( -295.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -301.19, -1394.22, 1661.35 ) LPos=( -301.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -304.06, -1394.22, 1661.35 ) LPos=( -304.06, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -304.06, -1409.14, 1637.66 ) LPos=( -304.06, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -301.19, -1409.14, 1637.66 ) LPos=( -301.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -292.56, -1413.73, 1630.36 ) LPos=( -292.56, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -289.69, -1416.80, 1625.50 ) LPos=( -289.69, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -255.94, -1398.81, 1654.05 ) LPos=( -255.94, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -255.94, -1400.34, 1651.62 ) LPos=( -255.94, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -261.69, -1400.34, 1651.62 ) LPos=( -261.69, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -242.31, -1400.34, 1651.62 ) LPos=( -242.31, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -245.19, -1400.34, 1651.62 ) LPos=( -245.19, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -248.06, -1400.34, 1651.62 ) LPos=( -248.06, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -239.44, -1418.33, 1623.06 ) LPos=( -239.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -227.94, -1409.14, 1637.66 ) LPos=( -227.94, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -199.94, -1403.41, 1646.76 ) LPos=( -199.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -202.81, -1400.34, 1651.62 ) LPos=( -202.81, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -202.81, -1401.88, 1649.19 ) LPos=( -202.81, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -202.81, -1404.94, 1644.32 ) LPos=( -202.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, -1404.94, 1644.32 ) LPos=( -205.69, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1403.41, 1646.76 ) LPos=( -214.31, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -217.19, -1403.41, 1646.76 ) LPos=( -217.19, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -211.44, -1409.14, 1637.66 ) LPos=( -211.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -208.56, -1409.14, 1637.66 ) LPos=( -208.56, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, -1410.67, 1635.23 ) LPos=( -214.31, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -208.56, -1410.67, 1635.23 ) LPos=( -208.56, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -214.31, -1412.20, 1632.79 ) LPos=( -214.31, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -174.81, -1403.41, 1646.76 ) LPos=( -174.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -180.56, -1403.41, 1646.76 ) LPos=( -180.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -183.44, -1403.41, 1646.76 ) LPos=( -183.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -180.56, -1401.88, 1649.19 ) LPos=( -180.56, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1401.88, 1649.19 ) LPos=( -183.44, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -189.19, -1401.88, 1649.19 ) LPos=( -189.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -186.31, -1398.81, 1654.05 ) LPos=( -186.31, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -177.69, -1394.22, 1661.35 ) LPos=( -177.69, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -192.06, -1412.20, 1632.79 ) LPos=( -192.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -189.19, -1415.27, 1627.93 ) LPos=( -189.19, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, -1413.73, 1630.36 ) LPos=( -186.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -183.44, -1418.33, 1623.06 ) LPos=( -183.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -183.44, -1416.80, 1625.50 ) LPos=( -183.44, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -146.81, -1398.81, 1654.05 ) LPos=( -146.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -152.56, -1401.88, 1649.19 ) LPos=( -152.56, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, -1403.41, 1646.76 ) LPos=( -152.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, -1401.88, 1649.19 ) LPos=( -155.44, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -155.44, -1403.41, 1646.76 ) LPos=( -155.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, -1401.88, 1649.19 ) LPos=( -161.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -164.06, -1401.88, 1649.19 ) LPos=( -164.06, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -164.06, -1403.41, 1646.76 ) LPos=( -164.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, -1412.20, 1632.79 ) LPos=( -127.44, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, -1409.14, 1637.66 ) LPos=( -118.81, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -99.44, -1403.41, 1646.76 ) LPos=( -99.44, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1397.28, 1656.49 ) LPos=( -102.31, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, -1400.34, 1651.62 ) LPos=( -105.19, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, -1403.41, 1646.76 ) LPos=( -108.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, -1409.14, 1637.66 ) LPos=( -102.31, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -93.69, -1409.14, 1637.66 ) LPos=( -93.69, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -108.06, -1412.20, 1632.79 ) LPos=( -108.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -105.19, -1412.20, 1632.79 ) LPos=( -105.19, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -105.19, -1413.73, 1630.36 ) LPos=( -105.19, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1413.73, 1630.36 ) LPos=( -102.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -99.44, -1413.73, 1630.36 ) LPos=( -99.44, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -108.06, -1415.27, 1627.93 ) LPos=( -108.06, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, -1416.80, 1625.50 ) LPos=( -108.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1416.80, 1625.50 ) LPos=( -102.31, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, -1401.88, 1649.19 ) LPos=( -65.69, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, -1400.34, 1651.62 ) LPos=( -68.56, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, -1398.81, 1654.05 ) LPos=( -62.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -71.44, -1398.81, 1654.05 ) LPos=( -71.44, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, -1397.28, 1656.49 ) LPos=( -62.81, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -65.69, -1397.28, 1656.49 ) LPos=( -65.69, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -74.31, -1397.28, 1656.49 ) LPos=( -74.31, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -68.56, -1395.75, 1658.92 ) LPos=( -68.56, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1394.22, 1661.35 ) LPos=( -77.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -80.06, -1415.27, 1627.93 ) LPos=( -80.06, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -74.31, -1415.27, 1627.93 ) LPos=( -74.31, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1413.73, 1630.36 ) LPos=( -71.44, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -31.94, -1403.41, 1646.76 ) LPos=( -31.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -34.81, -1397.28, 1656.49 ) LPos=( -34.81, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, -1404.94, 1644.32 ) LPos=( -43.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, -1404.94, 1644.32 ) LPos=( -46.31, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, -1401.88, 1649.19 ) LPos=( -49.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1404.94, 1644.32 ) LPos=( -49.19, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, -1401.88, 1649.19 ) LPos=( -52.06, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1413.73, 1630.36 ) LPos=( -49.19, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -46.31, -1413.73, 1630.36 ) LPos=( -46.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -40.56, -1413.73, 1630.36 ) LPos=( -40.56, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, -1415.27, 1627.93 ) LPos=( -37.69, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -34.81, -1418.33, 1623.06 ) LPos=( -34.81, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, -1419.86, 1620.63 ) LPos=( -46.31, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, -1419.86, 1620.63 ) LPos=( -43.44, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, -1419.86, 1620.63 ) LPos=( -34.81, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -21.19, -1394.22, 1661.35 ) LPos=( -21.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -24.06, -1418.33, 1623.06 ) LPos=( -24.06, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -24.06, -1410.67, 1635.23 ) LPos=( -24.06, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1409.14, 1637.66 ) LPos=( -21.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -15.44, -1419.86, 1620.63 ) LPos=( -15.44, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1409.14, 1637.66 ) LPos=( -15.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1419.86, 1620.63 ) LPos=( -9.69, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, -1416.80, 1625.50 ) LPos=( -3.94, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3.94, -1413.73, 1630.36 ) LPos=( -3.94, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, -1401.88, 1649.19 ) LPos=( 24.06, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, -1404.94, 1644.32 ) LPos=( 15.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, -1404.94, 1644.32 ) LPos=( 12.56, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, -1401.88, 1649.19 ) LPos=( 9.69, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 15.44, -1409.14, 1637.66 ) LPos=( 15.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, -1410.67, 1635.23 ) LPos=( 9.69, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, -1412.20, 1632.79 ) LPos=( 18.31, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 18.31, -1413.73, 1630.36 ) LPos=( 18.31, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 9.69, -1415.27, 1627.93 ) LPos=( 9.69, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 40.56, -1404.94, 1644.32 ) LPos=( 40.56, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, -1404.94, 1644.32 ) LPos=( 31.94, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 52.06, -1403.41, 1646.76 ) LPos=( 52.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, -1403.41, 1646.76 ) LPos=( 49.19, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 31.94, -1403.41, 1646.76 ) LPos=( 31.94, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 43.44, -1401.88, 1649.19 ) LPos=( 43.44, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 37.69, -1400.34, 1651.62 ) LPos=( 37.69, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, -1400.34, 1651.62 ) LPos=( 34.81, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1400.34, 1651.62 ) LPos=( 31.94, -298.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 49.19, -1394.22, 1661.35 ) LPos=( 49.19, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 43.44, -1394.22, 1661.35 ) LPos=( 43.44, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 31.94, -1394.22, 1661.35 ) LPos=( 31.94, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, -1409.14, 1637.66 ) LPos=( 34.81, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 37.69, -1416.80, 1625.50 ) LPos=( 37.69, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 37.69, -1413.73, 1630.36 ) LPos=( 37.69, -323.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 40.56, -1419.86, 1620.63 ) LPos=( 40.56, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 40.56, -1415.27, 1627.93 ) LPos=( 40.56, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, -1418.33, 1623.06 ) LPos=( 43.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1415.27, 1627.93 ) LPos=( 43.44, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, -1412.20, 1632.79 ) LPos=( 52.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, -1398.81, 1654.05 ) LPos=( 68.56, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 68.56, -1403.41, 1646.76 ) LPos=( 68.56, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 62.81, -1398.81, 1654.05 ) LPos=( 62.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 62.81, -1403.41, 1646.76 ) LPos=( 62.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, -1394.22, 1661.35 ) LPos=( 59.94, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 59.94, -1395.75, 1658.92 ) LPos=( 59.94, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, -1397.28, 1656.49 ) LPos=( 59.94, -292.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1401.88, 1649.19 ) LPos=( 59.94, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 77.19, -1409.14, 1637.66 ) LPos=( 77.19, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 77.19, -1410.67, 1635.23 ) LPos=( 77.19, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1412.20, 1632.79 ) LPos=( 74.31, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 59.94, -1415.27, 1627.93 ) LPos=( 59.94, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 80.06, -1416.80, 1625.50 ) LPos=( 80.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, -1418.33, 1623.06 ) LPos=( 65.69, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 77.19, -1419.86, 1620.63 ) LPos=( 77.19, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1403.41, 1646.76 ) LPos=( 90.81, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 90.81, -1398.81, 1654.05 ) LPos=( 90.81, -295.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 90.81, -1412.20, 1632.79 ) LPos=( 90.81, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, -1412.20, 1632.79 ) LPos=( 93.69, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, -1418.33, 1623.06 ) LPos=( 99.44, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 121.69, -1394.22, 1661.35 ) LPos=( 121.69, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1416.80, 1625.50 ) LPos=( 115.94, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 146.81, -1404.94, 1644.32 ) LPos=( 146.81, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 183.44, -1395.75, 1658.92 ) LPos=( 183.44, -289.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1404.94, 1644.32 ) LPos=( 217.19, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 214.31, -1404.94, 1644.32 ) LPos=( 214.31, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 205.69, -1416.80, 1625.50 ) LPos=( 205.69, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, -1412.20, 1632.79 ) LPos=( 220.06, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, -1410.67, 1635.23 ) LPos=( 227.94, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 230.81, -1410.67, 1635.23 ) LPos=( 230.81, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 236.56, -1416.80, 1625.50 ) LPos=( 236.56, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 248.06, -1416.80, 1625.50 ) LPos=( 248.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 276.06, -1403.41, 1646.76 ) LPos=( 276.06, -303.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 301.19, -1401.88, 1649.19 ) LPos=( 301.19, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, -1419.86, 1620.63 ) LPos=( 283.94, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 286.81, -1419.86, 1620.63 ) LPos=( 286.81, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 314.81, -1416.80, 1625.50 ) LPos=( 314.81, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 317.69, -1415.27, 1627.93 ) LPos=( 317.69, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 320.56, -1418.33, 1623.06 ) LPos=( 320.56, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1419.86, 1620.63 ) LPos=( 332.06, -334.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 332.06, -1416.80, 1625.50 ) LPos=( 332.06, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 351.44, -1404.94, 1644.32 ) LPos=( 351.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 339.94, -1409.14, 1637.66 ) LPos=( 339.94, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 348.56, -1410.67, 1635.23 ) LPos=( 348.56, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 360.06, -1410.67, 1635.23 ) LPos=( 360.06, -317.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 357.19, -1412.20, 1632.79 ) LPos=( 357.19, -320.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 348.56, -1415.27, 1627.93 ) LPos=( 348.56, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 348.56, -1416.80, 1625.50 ) LPos=( 348.56, -329.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1418.33, 1623.06 ) LPos=( 342.81, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 376.56, -1409.14, 1637.66 ) LPos=( 376.56, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 379.44, -1409.14, 1637.66 ) LPos=( 379.44, -314.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 407.44, -1404.94, 1644.32 ) LPos=( 407.44, -306.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:100,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 426.81, -1394.22, 1661.35 ) LPos=( 426.81, -286.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:101,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 451.94, -1401.88, 1649.19 ) LPos=( 451.94, -301.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:101,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 457.69, -1418.33, 1623.06 ) LPos=( 457.69, -331.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:101,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 566.81, -1415.27, 1627.93 ) LPos=( 566.81, -326.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -591.94, -1368.70, 1701.86 ) LPos=( -591.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -600.56, -1374.83, 1692.13 ) LPos=( -600.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -584.06, -1373.30, 1694.57 ) LPos=( -584.06, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -538.81, -1374.83, 1692.13 ) LPos=( -538.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -513.69, -1367.17, 1704.30 ) LPos=( -513.69, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -513.69, -1364.11, 1709.16 ) LPos=( -513.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -485.69, -1371.77, 1697.00 ) LPos=( -485.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -460.56, -1373.30, 1694.57 ) LPos=( -460.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -463.44, -1367.17, 1704.30 ) LPos=( -463.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -463.44, -1385.16, 1675.74 ) LPos=( -463.44, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -460.56, -1380.56, 1683.04 ) LPos=( -460.56, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -457.69, -1382.09, 1680.60 ) LPos=( -457.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -454.81, -1383.63, 1678.17 ) LPos=( -454.81, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -454.81, -1382.09, 1680.60 ) LPos=( -454.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -451.94, -1385.16, 1675.74 ) LPos=( -451.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -429.69, -1364.11, 1709.16 ) LPos=( -429.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -444.06, -1379.03, 1685.47 ) LPos=( -444.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -401.69, -1365.64, 1706.73 ) LPos=( -401.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -404.56, -1364.11, 1709.16 ) LPos=( -404.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -416.06, -1383.63, 1678.17 ) LPos=( -416.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -401.69, -1386.69, 1673.31 ) LPos=( -401.69, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -395.94, -1383.63, 1678.17 ) LPos=( -395.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -379.44, -1365.64, 1706.73 ) LPos=( -379.44, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -388.06, -1367.17, 1704.30 ) LPos=( -388.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -382.31, -1379.03, 1685.47 ) LPos=( -382.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -373.69, -1379.03, 1685.47 ) LPos=( -373.69, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -370.81, -1379.03, 1685.47 ) LPos=( -370.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -376.56, -1380.56, 1683.04 ) LPos=( -376.56, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -373.69, -1380.56, 1683.04 ) LPos=( -373.69, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -367.94, -1380.56, 1683.04 ) LPos=( -367.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -373.69, -1382.09, 1680.60 ) LPos=( -373.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -367.94, -1383.63, 1678.17 ) LPos=( -367.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -360.06, -1386.69, 1673.31 ) LPos=( -360.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -357.19, -1386.69, 1673.31 ) LPos=( -357.19, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -357.19, -1383.63, 1678.17 ) LPos=( -357.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -311.94, -1364.11, 1709.16 ) LPos=( -311.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -311.94, -1365.64, 1706.73 ) LPos=( -311.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, -1374.83, 1692.13 ) LPos=( -311.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -311.94, -1379.03, 1685.47 ) LPos=( -311.94, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -320.56, -1383.63, 1678.17 ) LPos=( -320.56, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -320.56, -1388.22, 1670.87 ) LPos=( -320.56, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -286.81, -1388.22, 1670.87 ) LPos=( -286.81, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, -1379.03, 1685.47 ) LPos=( -258.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -233.69, -1365.64, 1706.73 ) LPos=( -233.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1364.11, 1709.16 ) LPos=( -227.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -230.81, -1364.11, 1709.16 ) LPos=( -230.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -236.56, -1364.11, 1709.16 ) LPos=( -236.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -248.06, -1386.69, 1673.31 ) LPos=( -248.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, -1385.16, 1675.74 ) LPos=( -227.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -199.94, -1365.64, 1706.73 ) LPos=( -199.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -202.81, -1364.11, 1709.16 ) LPos=( -202.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -205.69, -1365.64, 1706.73 ) LPos=( -205.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -205.69, -1367.17, 1704.30 ) LPos=( -205.69, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -208.56, -1370.24, 1699.43 ) LPos=( -208.56, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -208.56, -1373.30, 1694.57 ) LPos=( -208.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -211.44, -1374.83, 1692.13 ) LPos=( -211.44, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1373.30, 1694.57 ) LPos=( -214.31, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -220.06, -1368.70, 1701.86 ) LPos=( -220.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -211.44, -1389.75, 1668.44 ) LPos=( -211.44, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -171.94, -1364.11, 1709.16 ) LPos=( -171.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, -1364.11, 1709.16 ) LPos=( -174.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -186.31, -1364.11, 1709.16 ) LPos=( -186.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, -1380.56, 1683.04 ) LPos=( -186.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -186.31, -1379.03, 1685.47 ) LPos=( -186.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -183.44, -1379.03, 1685.47 ) LPos=( -183.44, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -180.56, -1382.09, 1680.60 ) LPos=( -180.56, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -177.69, -1379.03, 1685.47 ) LPos=( -177.69, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -174.81, -1379.03, 1685.47 ) LPos=( -174.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, -1382.09, 1680.60 ) LPos=( -171.94, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -171.94, -1380.56, 1683.04 ) LPos=( -171.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, -1371.77, 1697.00 ) LPos=( -155.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, -1371.77, 1697.00 ) LPos=( -161.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, -1380.56, 1683.04 ) LPos=( -164.06, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, -1380.56, 1683.04 ) LPos=( -158.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -155.44, -1380.56, 1683.04 ) LPos=( -155.44, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -143.94, -1380.56, 1683.04 ) LPos=( -143.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -161.19, -1382.09, 1680.60 ) LPos=( -161.19, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, -1382.09, 1680.60 ) LPos=( -158.31, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, -1383.63, 1678.17 ) LPos=( -155.44, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -146.81, -1385.16, 1675.74 ) LPos=( -146.81, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, -1385.16, 1675.74 ) LPos=( -143.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -146.81, -1389.75, 1668.44 ) LPos=( -146.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -115.94, -1374.83, 1692.13 ) LPos=( -115.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, -1373.30, 1694.57 ) LPos=( -118.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, -1371.77, 1697.00 ) LPos=( -121.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -118.81, -1370.24, 1699.43 ) LPos=( -118.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, -1368.70, 1701.86 ) LPos=( -127.44, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, -1368.70, 1701.86 ) LPos=( -130.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -124.56, -1365.64, 1706.73 ) LPos=( -124.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, -1365.64, 1706.73 ) LPos=( -133.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, -1364.11, 1709.16 ) LPos=( -124.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, -1364.11, 1709.16 ) LPos=( -136.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, -1379.03, 1685.47 ) LPos=( -136.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1380.56, 1683.04 ) LPos=( -133.19, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, -1379.03, 1685.47 ) LPos=( -133.19, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -130.31, -1379.03, 1685.47 ) LPos=( -130.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -127.44, -1379.03, 1685.47 ) LPos=( -127.44, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -124.56, -1379.03, 1685.47 ) LPos=( -124.56, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -121.69, -1385.16, 1675.74 ) LPos=( -121.69, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, -1389.75, 1668.44 ) LPos=( -118.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, -1385.16, 1675.74 ) LPos=( -115.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, -1364.11, 1709.16 ) LPos=( -87.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, -1368.70, 1701.86 ) LPos=( -87.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -87.94, -1373.30, 1694.57 ) LPos=( -87.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -90.81, -1367.17, 1704.30 ) LPos=( -90.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -90.81, -1368.70, 1701.86 ) LPos=( -90.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -90.81, -1371.77, 1697.00 ) LPos=( -90.81, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, -1373.30, 1694.57 ) LPos=( -90.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, -1374.83, 1692.13 ) LPos=( -90.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -93.69, -1370.24, 1699.43 ) LPos=( -93.69, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1371.77, 1697.00 ) LPos=( -93.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, -1373.30, 1694.57 ) LPos=( -93.69, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, -1374.83, 1692.13 ) LPos=( -93.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -96.56, -1364.11, 1709.16 ) LPos=( -96.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -96.56, -1365.64, 1706.73 ) LPos=( -96.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -96.56, -1367.17, 1704.30 ) LPos=( -96.56, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -99.44, -1365.64, 1706.73 ) LPos=( -99.44, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -99.44, -1370.24, 1699.43 ) LPos=( -99.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -102.31, -1365.64, 1706.73 ) LPos=( -102.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, -1368.70, 1701.86 ) LPos=( -102.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -102.31, -1370.24, 1699.43 ) LPos=( -102.31, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, -1371.77, 1697.00 ) LPos=( -102.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, -1370.24, 1699.43 ) LPos=( -105.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1371.77, 1697.00 ) LPos=( -105.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, -1371.77, 1697.00 ) LPos=( -108.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, -1373.30, 1694.57 ) LPos=( -108.06, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -108.06, -1374.83, 1692.13 ) LPos=( -108.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, -1379.03, 1685.47 ) LPos=( -102.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -99.44, -1379.03, 1685.47 ) LPos=( -99.44, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -93.69, -1379.03, 1685.47 ) LPos=( -93.69, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, -1379.03, 1685.47 ) LPos=( -90.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -99.44, -1380.56, 1683.04 ) LPos=( -99.44, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, -1380.56, 1683.04 ) LPos=( -93.69, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -90.81, -1382.09, 1680.60 ) LPos=( -90.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1383.63, 1678.17 ) LPos=( -102.31, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -99.44, -1383.63, 1678.17 ) LPos=( -99.44, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1383.63, 1678.17 ) LPos=( -96.56, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, -1383.63, 1678.17 ) LPos=( -93.69, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -87.94, -1383.63, 1678.17 ) LPos=( -87.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -105.19, -1385.16, 1675.74 ) LPos=( -105.19, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, -1385.16, 1675.74 ) LPos=( -93.69, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -108.06, -1386.69, 1673.31 ) LPos=( -108.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1386.69, 1673.31 ) LPos=( -102.31, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, -1388.22, 1670.87 ) LPos=( -105.19, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -99.44, -1388.22, 1670.87 ) LPos=( -99.44, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, -1389.75, 1668.44 ) LPos=( -102.31, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, -1374.83, 1692.13 ) LPos=( -59.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1374.83, 1692.13 ) LPos=( -62.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, -1374.83, 1692.13 ) LPos=( -68.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, -1374.83, 1692.13 ) LPos=( -71.44, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, -1374.83, 1692.13 ) LPos=( -74.31, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1374.83, 1692.13 ) LPos=( -80.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -65.69, -1373.30, 1694.57 ) LPos=( -65.69, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, -1373.30, 1694.57 ) LPos=( -71.44, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, -1371.77, 1697.00 ) LPos=( -65.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -68.56, -1371.77, 1697.00 ) LPos=( -68.56, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1371.77, 1697.00 ) LPos=( -74.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -77.19, -1371.77, 1697.00 ) LPos=( -77.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, -1371.77, 1697.00 ) LPos=( -80.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, -1370.24, 1699.43 ) LPos=( -80.06, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, -1368.70, 1701.86 ) LPos=( -65.69, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -74.31, -1368.70, 1701.86 ) LPos=( -74.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1368.70, 1701.86 ) LPos=( -80.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, -1367.17, 1704.30 ) LPos=( -59.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, -1367.17, 1704.30 ) LPos=( -62.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -77.19, -1367.17, 1704.30 ) LPos=( -77.19, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -59.94, -1365.64, 1706.73 ) LPos=( -59.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, -1364.11, 1709.16 ) LPos=( -62.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1364.11, 1709.16 ) LPos=( -77.19, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, -1389.75, 1668.44 ) LPos=( -80.06, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1388.22, 1670.87 ) LPos=( -80.06, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -80.06, -1386.69, 1673.31 ) LPos=( -80.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, -1382.09, 1680.60 ) LPos=( -80.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1379.03, 1685.47 ) LPos=( -80.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -77.19, -1389.75, 1668.44 ) LPos=( -77.19, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -77.19, -1383.63, 1678.17 ) LPos=( -77.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, -1382.09, 1680.60 ) LPos=( -77.19, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -74.31, -1389.75, 1668.44 ) LPos=( -74.31, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1383.63, 1678.17 ) LPos=( -71.44, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, -1388.22, 1670.87 ) LPos=( -65.69, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, -1382.09, 1680.60 ) LPos=( -65.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, -1388.22, 1670.87 ) LPos=( -62.81, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, -1383.63, 1678.17 ) LPos=( -62.81, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, -1383.63, 1678.17 ) LPos=( -59.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, -1380.56, 1683.04 ) LPos=( -59.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -31.94, -1370.24, 1699.43 ) LPos=( -31.94, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, -1371.77, 1697.00 ) LPos=( -31.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, -1364.11, 1709.16 ) LPos=( -34.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -34.81, -1367.17, 1704.30 ) LPos=( -34.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, -1374.83, 1692.13 ) LPos=( -34.81, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1364.11, 1709.16 ) LPos=( -37.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1371.77, 1697.00 ) LPos=( -37.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, -1373.30, 1694.57 ) LPos=( -40.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, -1374.83, 1692.13 ) LPos=( -40.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, -1367.17, 1704.30 ) LPos=( -43.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -43.44, -1370.24, 1699.43 ) LPos=( -43.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, -1371.77, 1697.00 ) LPos=( -43.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -46.31, -1365.64, 1706.73 ) LPos=( -46.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, -1367.17, 1704.30 ) LPos=( -46.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -46.31, -1370.24, 1699.43 ) LPos=( -46.31, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1371.77, 1697.00 ) LPos=( -46.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1365.64, 1706.73 ) LPos=( -49.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, -1367.17, 1704.30 ) LPos=( -49.19, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, -1371.77, 1697.00 ) LPos=( -49.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1374.83, 1692.13 ) LPos=( -49.19, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, -1364.11, 1709.16 ) LPos=( -52.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, -1365.64, 1706.73 ) LPos=( -52.06, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -52.06, -1373.30, 1694.57 ) LPos=( -52.06, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1374.83, 1692.13 ) LPos=( -52.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, -1380.56, 1683.04 ) LPos=( -37.69, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1380.56, 1683.04 ) LPos=( -34.81, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, -1382.09, 1680.60 ) LPos=( -49.19, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, -1382.09, 1680.60 ) LPos=( -43.44, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, -1382.09, 1680.60 ) LPos=( -34.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -31.94, -1382.09, 1680.60 ) LPos=( -31.94, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1383.63, 1678.17 ) LPos=( -49.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, -1388.22, 1670.87 ) LPos=( -31.94, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, -1374.83, 1692.13 ) LPos=( -9.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, -1373.30, 1694.57 ) LPos=( -6.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, -1373.30, 1694.57 ) LPos=( -9.69, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1373.30, 1694.57 ) LPos=( -21.19, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, -1371.77, 1697.00 ) LPos=( -15.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, -1371.77, 1697.00 ) LPos=( -18.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -21.19, -1371.77, 1697.00 ) LPos=( -21.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, -1371.77, 1697.00 ) LPos=( -24.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -6.81, -1370.24, 1699.43 ) LPos=( -6.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, -1368.70, 1701.86 ) LPos=( -6.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, -1368.70, 1701.86 ) LPos=( -9.69, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1368.70, 1701.86 ) LPos=( -12.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3.94, -1367.17, 1704.30 ) LPos=( -3.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -18.31, -1367.17, 1704.30 ) LPos=( -18.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3.94, -1365.64, 1706.73 ) LPos=( -3.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, -1365.64, 1706.73 ) LPos=( -12.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -18.31, -1365.64, 1706.73 ) LPos=( -18.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -12.56, -1364.11, 1709.16 ) LPos=( -12.56, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, -1382.09, 1680.60 ) LPos=( -24.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1379.03, 1685.47 ) LPos=( -21.19, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -15.44, -1380.56, 1683.04 ) LPos=( -15.44, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -12.56, -1380.56, 1683.04 ) LPos=( -12.56, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -6.81, -1389.75, 1668.44 ) LPos=( -6.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, -1367.17, 1704.30 ) LPos=( 24.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, -1374.83, 1692.13 ) LPos=( 24.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, -1365.64, 1706.73 ) LPos=( 21.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 21.19, -1370.24, 1699.43 ) LPos=( 21.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, -1364.11, 1709.16 ) LPos=( 18.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1368.70, 1701.86 ) LPos=( 12.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, -1364.11, 1709.16 ) LPos=( 6.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, -1370.24, 1699.43 ) LPos=( 6.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 6.81, -1371.77, 1697.00 ) LPos=( 6.81, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 6.81, -1373.30, 1694.57 ) LPos=( 6.81, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1364.11, 1709.16 ) LPos=( 3.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, -1379.03, 1685.47 ) LPos=( 3.94, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, -1379.03, 1685.47 ) LPos=( 18.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, -1380.56, 1683.04 ) LPos=( 6.81, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, -1382.09, 1680.60 ) LPos=( 3.94, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 9.69, -1382.09, 1680.60 ) LPos=( 9.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, -1383.63, 1678.17 ) LPos=( 24.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 49.19, -1374.83, 1692.13 ) LPos=( 49.19, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, -1374.83, 1692.13 ) LPos=( 37.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 43.44, -1373.30, 1694.57 ) LPos=( 43.44, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 31.94, -1373.30, 1694.57 ) LPos=( 31.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, -1371.77, 1697.00 ) LPos=( 46.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1370.24, 1699.43 ) LPos=( 31.94, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, -1368.70, 1701.86 ) LPos=( 52.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, -1368.70, 1701.86 ) LPos=( 46.31, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 34.81, -1368.70, 1701.86 ) LPos=( 34.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 46.31, -1367.17, 1704.30 ) LPos=( 46.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 31.94, -1367.17, 1704.30 ) LPos=( 31.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, -1365.64, 1706.73 ) LPos=( 49.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 46.31, -1365.64, 1706.73 ) LPos=( 46.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, -1365.64, 1706.73 ) LPos=( 40.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 46.31, -1388.22, 1670.87 ) LPos=( 46.31, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, -1383.63, 1678.17 ) LPos=( 52.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, -1382.09, 1680.60 ) LPos=( 52.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, -1365.64, 1706.73 ) LPos=( 80.06, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 80.06, -1370.24, 1699.43 ) LPos=( 80.06, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1374.83, 1692.13 ) LPos=( 80.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, -1370.24, 1699.43 ) LPos=( 77.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1371.77, 1697.00 ) LPos=( 77.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, -1367.17, 1704.30 ) LPos=( 74.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, -1364.11, 1709.16 ) LPos=( 71.44, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 71.44, -1370.24, 1699.43 ) LPos=( 71.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, -1367.17, 1704.30 ) LPos=( 68.56, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 68.56, -1373.30, 1694.57 ) LPos=( 68.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 65.69, -1370.24, 1699.43 ) LPos=( 65.69, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, -1374.83, 1692.13 ) LPos=( 65.69, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, -1364.11, 1709.16 ) LPos=( 62.81, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 59.94, -1365.64, 1706.73 ) LPos=( 59.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, -1367.17, 1704.30 ) LPos=( 59.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 59.94, -1368.70, 1701.86 ) LPos=( 59.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, -1379.03, 1685.47 ) LPos=( 62.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1379.03, 1685.47 ) LPos=( 80.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 74.31, -1380.56, 1683.04 ) LPos=( 74.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1383.63, 1678.17 ) LPos=( 80.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 80.06, -1385.16, 1675.74 ) LPos=( 80.06, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, -1386.69, 1673.31 ) LPos=( 71.44, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 74.31, -1386.69, 1673.31 ) LPos=( 74.31, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 77.19, -1386.69, 1673.31 ) LPos=( 77.19, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 65.69, -1388.22, 1670.87 ) LPos=( 65.69, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, -1389.75, 1668.44 ) LPos=( 62.81, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 65.69, -1389.75, 1668.44 ) LPos=( 65.69, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 68.56, -1389.75, 1668.44 ) LPos=( 68.56, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 99.44, -1374.83, 1692.13 ) LPos=( 99.44, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, -1373.30, 1694.57 ) LPos=( 87.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 108.06, -1371.77, 1697.00 ) LPos=( 108.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, -1371.77, 1697.00 ) LPos=( 105.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1371.77, 1697.00 ) LPos=( 102.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 105.19, -1368.70, 1701.86 ) LPos=( 105.19, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 105.19, -1365.64, 1706.73 ) LPos=( 105.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 93.69, -1365.64, 1706.73 ) LPos=( 93.69, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1365.64, 1706.73 ) LPos=( 90.81, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 87.94, -1365.64, 1706.73 ) LPos=( 87.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, -1380.56, 1683.04 ) LPos=( 87.94, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, -1389.75, 1668.44 ) LPos=( 99.44, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 102.31, -1388.22, 1670.87 ) LPos=( 102.31, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1386.69, 1673.31 ) LPos=( 102.31, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 102.31, -1383.63, 1678.17 ) LPos=( 102.31, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, -1383.63, 1678.17 ) LPos=( 105.19, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 105.19, -1380.56, 1683.04 ) LPos=( 105.19, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1379.03, 1685.47 ) LPos=( 105.19, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 108.06, -1382.09, 1680.60 ) LPos=( 108.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 136.06, -1367.17, 1704.30 ) LPos=( 136.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 124.56, -1371.77, 1697.00 ) LPos=( 124.56, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 118.81, -1382.09, 1680.60 ) LPos=( 118.81, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, -1382.09, 1680.60 ) LPos=( 121.69, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1382.09, 1680.60 ) LPos=( 130.31, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 121.69, -1386.69, 1673.31 ) LPos=( 121.69, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 143.94, -1374.83, 1692.13 ) LPos=( 143.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1370.24, 1699.43 ) LPos=( 161.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 158.31, -1370.24, 1699.43 ) LPos=( 158.31, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1370.24, 1699.43 ) LPos=( 152.56, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 146.81, -1370.24, 1699.43 ) LPos=( 146.81, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 152.56, -1368.70, 1701.86 ) LPos=( 152.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1365.64, 1706.73 ) LPos=( 143.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 164.06, -1380.56, 1683.04 ) LPos=( 164.06, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, -1374.83, 1692.13 ) LPos=( 192.06, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 180.56, -1365.64, 1706.73 ) LPos=( 180.56, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, -1371.77, 1697.00 ) LPos=( 171.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, -1379.03, 1685.47 ) LPos=( 171.94, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 183.44, -1382.09, 1680.60 ) LPos=( 183.44, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 171.94, -1383.63, 1678.17 ) LPos=( 171.94, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 177.69, -1389.75, 1668.44 ) LPos=( 177.69, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 220.06, -1371.77, 1697.00 ) LPos=( 220.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 214.31, -1371.77, 1697.00 ) LPos=( 214.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 199.94, -1371.77, 1697.00 ) LPos=( 199.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 217.19, -1368.70, 1701.86 ) LPos=( 217.19, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, -1368.70, 1701.86 ) LPos=( 211.44, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 208.56, -1368.70, 1701.86 ) LPos=( 208.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 220.06, -1367.17, 1704.30 ) LPos=( 220.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 202.81, -1367.17, 1704.30 ) LPos=( 202.81, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, -1365.64, 1706.73 ) LPos=( 217.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1364.11, 1709.16 ) LPos=( 220.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1383.63, 1678.17 ) LPos=( 202.81, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 217.19, -1386.69, 1673.31 ) LPos=( 217.19, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 220.06, -1382.09, 1680.60 ) LPos=( 220.06, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, -1368.70, 1701.86 ) LPos=( 248.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 245.19, -1365.64, 1706.73 ) LPos=( 245.19, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 245.19, -1367.17, 1704.30 ) LPos=( 245.19, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 245.19, -1368.70, 1701.86 ) LPos=( 245.19, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 245.19, -1370.24, 1699.43 ) LPos=( 245.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 242.31, -1364.11, 1709.16 ) LPos=( 242.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 242.31, -1367.17, 1704.30 ) LPos=( 242.31, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 242.31, -1371.77, 1697.00 ) LPos=( 242.31, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 239.44, -1367.17, 1704.30 ) LPos=( 239.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 239.44, -1371.77, 1697.00 ) LPos=( 239.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 236.56, -1368.70, 1701.86 ) LPos=( 236.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 233.69, -1371.77, 1697.00 ) LPos=( 233.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 230.81, -1368.70, 1701.86 ) LPos=( 230.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 230.81, -1371.77, 1697.00 ) LPos=( 230.81, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 227.94, -1364.11, 1709.16 ) LPos=( 227.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 227.94, -1365.64, 1706.73 ) LPos=( 227.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 227.94, -1367.17, 1704.30 ) LPos=( 227.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1379.03, 1685.47 ) LPos=( 248.06, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 236.56, -1382.09, 1680.60 ) LPos=( 236.56, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 227.94, -1385.16, 1675.74 ) LPos=( 227.94, -269.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 270.31, -1373.30, 1694.57 ) LPos=( 270.31, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 267.44, -1373.30, 1694.57 ) LPos=( 267.44, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 276.06, -1368.70, 1701.86 ) LPos=( 276.06, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, -1368.70, 1701.86 ) LPos=( 264.56, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 258.81, -1368.70, 1701.86 ) LPos=( 258.81, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 267.44, -1367.17, 1704.30 ) LPos=( 267.44, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 264.56, -1367.17, 1704.30 ) LPos=( 264.56, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 255.94, -1367.17, 1704.30 ) LPos=( 255.94, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 255.94, -1365.64, 1706.73 ) LPos=( 255.94, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 276.06, -1364.11, 1709.16 ) LPos=( 276.06, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 261.69, -1364.11, 1709.16 ) LPos=( 261.69, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 255.94, -1364.11, 1709.16 ) LPos=( 255.94, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 258.81, -1379.03, 1685.47 ) LPos=( 258.81, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 267.44, -1382.09, 1680.60 ) LPos=( 267.44, -263.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 276.06, -1383.63, 1678.17 ) LPos=( 276.06, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 276.06, -1380.56, 1683.04 ) LPos=( 276.06, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 304.06, -1367.17, 1704.30 ) LPos=( 304.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 301.19, -1371.77, 1697.00 ) LPos=( 301.19, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 298.31, -1364.11, 1709.16 ) LPos=( 298.31, -230.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 292.56, -1373.30, 1694.57 ) LPos=( 292.56, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 292.56, -1374.83, 1692.13 ) LPos=( 292.56, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 283.94, -1371.77, 1697.00 ) LPos=( 283.94, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 283.94, -1373.30, 1694.57 ) LPos=( 283.94, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 283.94, -1374.83, 1692.13 ) LPos=( 283.94, -250.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 301.19, -1389.75, 1668.44 ) LPos=( 301.19, -278.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 323.44, -1371.77, 1697.00 ) LPos=( 323.44, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 317.69, -1371.77, 1697.00 ) LPos=( 317.69, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 332.06, -1370.24, 1699.43 ) LPos=( 332.06, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 323.44, -1370.24, 1699.43 ) LPos=( 323.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 317.69, -1370.24, 1699.43 ) LPos=( 317.69, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 332.06, -1367.17, 1704.30 ) LPos=( 332.06, -235.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 332.06, -1365.64, 1706.73 ) LPos=( 332.06, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1365.64, 1706.73 ) LPos=( 342.81, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 360.06, -1386.69, 1673.31 ) LPos=( 360.06, -272.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 367.94, -1368.70, 1701.86 ) LPos=( 367.94, -238.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 382.31, -1380.56, 1683.04 ) LPos=( 382.31, -261.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, -1379.03, 1685.47 ) LPos=( 382.31, -258.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 401.69, -1383.63, 1678.17 ) LPos=( 401.69, -266.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:106,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 423.94, -1388.22, 1670.87 ) LPos=( 423.94, -275.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 525.19, -1370.24, 1699.43 ) LPos=( 525.19, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 547.44, -1370.24, 1699.43 ) LPos=( 547.44, -241.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 584.06, -1371.77, 1697.00 ) LPos=( 584.06, -244.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 581.19, -1373.30, 1694.57 ) LPos=( 581.19, -247.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:107,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 606.31, -1365.64, 1706.73 ) LPos=( 606.31, -233.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -591.94, -1340.13, 1747.24 ) LPos=( -591.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -563.94, -1356.58, 1721.11 ) LPos=( -563.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -507.94, -1353.52, 1725.98 ) LPos=( -507.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -507.94, -1348.92, 1733.28 ) LPos=( -507.94, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -454.81, -1344.73, 1739.94 ) LPos=( -454.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -451.94, -1340.13, 1747.24 ) LPos=( -451.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -463.44, -1359.65, 1716.25 ) LPos=( -463.44, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -457.69, -1359.65, 1716.25 ) LPos=( -457.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -454.81, -1355.05, 1723.55 ) LPos=( -454.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -423.94, -1337.07, 1752.11 ) LPos=( -423.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -432.56, -1334.00, 1756.97 ) LPos=( -432.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -438.31, -1337.07, 1752.11 ) LPos=( -438.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -444.06, -1340.13, 1747.24 ) LPos=( -444.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -410.31, -1358.11, 1718.68 ) LPos=( -410.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -410.31, -1356.58, 1721.11 ) LPos=( -410.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -404.56, -1353.52, 1725.98 ) LPos=( -404.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -401.69, -1353.52, 1725.98 ) LPos=( -401.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -367.94, -1337.07, 1752.11 ) LPos=( -367.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -370.81, -1335.53, 1754.54 ) LPos=( -370.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -382.31, -1353.52, 1725.98 ) LPos=( -382.31, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -370.81, -1355.05, 1723.55 ) LPos=( -370.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -348.56, -1344.73, 1739.94 ) LPos=( -348.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -339.94, -1335.53, 1754.54 ) LPos=( -339.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -342.81, -1335.53, 1754.54 ) LPos=( -342.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -348.56, -1334.00, 1756.97 ) LPos=( -348.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -360.06, -1358.11, 1718.68 ) LPos=( -360.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -348.56, -1358.11, 1718.68 ) LPos=( -348.56, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -348.56, -1350.45, 1730.85 ) LPos=( -348.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -342.81, -1356.58, 1721.11 ) LPos=( -342.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -342.81, -1350.45, 1730.85 ) LPos=( -342.81, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -326.31, -1343.19, 1742.38 ) LPos=( -326.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -326.31, -1344.73, 1739.94 ) LPos=( -326.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -323.44, -1348.92, 1733.28 ) LPos=( -323.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -317.69, -1350.45, 1730.85 ) LPos=( -317.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -314.81, -1356.58, 1721.11 ) LPos=( -314.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -317.69, -1359.65, 1716.25 ) LPos=( -317.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -311.94, -1359.65, 1716.25 ) LPos=( -311.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -283.94, -1344.73, 1739.94 ) LPos=( -283.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -286.81, -1341.66, 1744.81 ) LPos=( -286.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -292.56, -1337.07, 1752.11 ) LPos=( -292.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -295.44, -1334.00, 1756.97 ) LPos=( -295.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -304.06, -1356.58, 1721.11 ) LPos=( -304.06, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -289.69, -1359.65, 1716.25 ) LPos=( -289.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -286.81, -1356.58, 1721.11 ) LPos=( -286.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -255.94, -1334.00, 1756.97 ) LPos=( -255.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -255.94, -1344.73, 1739.94 ) LPos=( -255.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -258.81, -1338.60, 1749.67 ) LPos=( -258.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -255.94, -1351.99, 1728.41 ) LPos=( -255.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -270.31, -1358.11, 1718.68 ) LPos=( -270.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -230.81, -1343.19, 1742.38 ) LPos=( -230.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -248.06, -1343.19, 1742.38 ) LPos=( -248.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -236.56, -1341.66, 1744.81 ) LPos=( -236.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -236.56, -1340.13, 1747.24 ) LPos=( -236.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1334.00, 1756.97 ) LPos=( -227.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -248.06, -1358.11, 1718.68 ) LPos=( -248.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -242.31, -1351.99, 1728.41 ) LPos=( -242.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -239.44, -1358.11, 1718.68 ) LPos=( -239.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -230.81, -1348.92, 1733.28 ) LPos=( -230.81, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -199.94, -1334.00, 1756.97 ) LPos=( -199.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -199.94, -1343.19, 1742.38 ) LPos=( -199.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -202.81, -1335.53, 1754.54 ) LPos=( -202.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -205.69, -1335.53, 1754.54 ) LPos=( -205.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -205.69, -1344.73, 1739.94 ) LPos=( -205.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -208.56, -1343.19, 1742.38 ) LPos=( -208.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -220.06, -1334.00, 1756.97 ) LPos=( -220.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -220.06, -1348.92, 1733.28 ) LPos=( -220.06, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -220.06, -1350.45, 1730.85 ) LPos=( -220.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -217.19, -1350.45, 1730.85 ) LPos=( -217.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -199.94, -1350.45, 1730.85 ) LPos=( -199.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -199.94, -1351.99, 1728.41 ) LPos=( -199.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -174.81, -1344.73, 1739.94 ) LPos=( -174.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -180.56, -1344.73, 1739.94 ) LPos=( -180.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -186.31, -1344.73, 1739.94 ) LPos=( -186.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, -1344.73, 1739.94 ) LPos=( -192.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -180.56, -1343.19, 1742.38 ) LPos=( -180.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -192.06, -1343.19, 1742.38 ) LPos=( -192.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -171.94, -1341.66, 1744.81 ) LPos=( -171.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -180.56, -1341.66, 1744.81 ) LPos=( -180.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1341.66, 1744.81 ) LPos=( -183.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, -1341.66, 1744.81 ) LPos=( -186.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1338.60, 1749.67 ) LPos=( -180.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -189.19, -1338.60, 1749.67 ) LPos=( -189.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, -1338.60, 1749.67 ) LPos=( -192.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -177.69, -1337.07, 1752.11 ) LPos=( -177.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -186.31, -1337.07, 1752.11 ) LPos=( -186.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -171.94, -1335.53, 1754.54 ) LPos=( -171.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -180.56, -1335.53, 1754.54 ) LPos=( -180.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -174.81, -1334.00, 1756.97 ) LPos=( -174.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -186.31, -1334.00, 1756.97 ) LPos=( -186.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -192.06, -1356.58, 1721.11 ) LPos=( -192.06, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -189.19, -1355.05, 1723.55 ) LPos=( -189.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1353.52, 1725.98 ) LPos=( -189.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, -1356.58, 1721.11 ) LPos=( -186.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -186.31, -1355.05, 1723.55 ) LPos=( -186.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -177.69, -1350.45, 1730.85 ) LPos=( -177.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, -1356.58, 1721.11 ) LPos=( -171.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -143.94, -1337.07, 1752.11 ) LPos=( -143.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, -1343.19, 1742.38 ) LPos=( -143.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -146.81, -1341.66, 1744.81 ) LPos=( -146.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -149.69, -1334.00, 1756.97 ) LPos=( -149.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -149.69, -1337.07, 1752.11 ) LPos=( -149.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, -1338.60, 1749.67 ) LPos=( -149.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, -1340.13, 1747.24 ) LPos=( -149.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -152.56, -1334.00, 1756.97 ) LPos=( -152.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -152.56, -1337.07, 1752.11 ) LPos=( -152.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -152.56, -1340.13, 1747.24 ) LPos=( -152.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -152.56, -1344.73, 1739.94 ) LPos=( -152.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -155.44, -1337.07, 1752.11 ) LPos=( -155.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, -1338.60, 1749.67 ) LPos=( -155.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -158.31, -1340.13, 1747.24 ) LPos=( -158.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -161.19, -1340.13, 1747.24 ) LPos=( -161.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -164.06, -1335.53, 1754.54 ) LPos=( -164.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -164.06, -1338.60, 1749.67 ) LPos=( -164.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -164.06, -1340.13, 1747.24 ) LPos=( -164.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -164.06, -1341.66, 1744.81 ) LPos=( -164.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -158.31, -1348.92, 1733.28 ) LPos=( -158.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1348.92, 1733.28 ) LPos=( -155.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -149.69, -1348.92, 1733.28 ) LPos=( -149.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, -1350.45, 1730.85 ) LPos=( -164.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -161.19, -1350.45, 1730.85 ) LPos=( -161.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, -1350.45, 1730.85 ) LPos=( -158.31, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -155.44, -1350.45, 1730.85 ) LPos=( -155.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, -1350.45, 1730.85 ) LPos=( -149.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -155.44, -1351.99, 1728.41 ) LPos=( -155.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -152.56, -1351.99, 1728.41 ) LPos=( -152.56, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -149.69, -1353.52, 1725.98 ) LPos=( -149.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, -1353.52, 1725.98 ) LPos=( -143.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, -1355.05, 1723.55 ) LPos=( -143.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, -1356.58, 1721.11 ) LPos=( -146.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -164.06, -1358.11, 1718.68 ) LPos=( -164.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -146.81, -1358.11, 1718.68 ) LPos=( -146.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -161.19, -1359.65, 1716.25 ) LPos=( -161.19, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -155.44, -1359.65, 1716.25 ) LPos=( -155.44, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -152.56, -1359.65, 1716.25 ) LPos=( -152.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1344.73, 1739.94 ) LPos=( -121.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -130.31, -1344.73, 1739.94 ) LPos=( -130.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1344.73, 1739.94 ) LPos=( -133.19, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -136.06, -1344.73, 1739.94 ) LPos=( -136.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -127.44, -1343.19, 1742.38 ) LPos=( -127.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1343.19, 1742.38 ) LPos=( -133.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -124.56, -1341.66, 1744.81 ) LPos=( -124.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1341.66, 1744.81 ) LPos=( -130.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -136.06, -1341.66, 1744.81 ) LPos=( -136.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -115.94, -1340.13, 1747.24 ) LPos=( -115.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -121.69, -1340.13, 1747.24 ) LPos=( -121.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, -1340.13, 1747.24 ) LPos=( -124.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -118.81, -1338.60, 1749.67 ) LPos=( -118.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -124.56, -1338.60, 1749.67 ) LPos=( -124.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -127.44, -1338.60, 1749.67 ) LPos=( -127.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -130.31, -1338.60, 1749.67 ) LPos=( -130.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -133.19, -1338.60, 1749.67 ) LPos=( -133.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, -1337.07, 1752.11 ) LPos=( -121.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -130.31, -1337.07, 1752.11 ) LPos=( -130.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -133.19, -1337.07, 1752.11 ) LPos=( -133.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -115.94, -1335.53, 1754.54 ) LPos=( -115.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, -1335.53, 1754.54 ) LPos=( -133.19, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -115.94, -1334.00, 1756.97 ) LPos=( -115.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -136.06, -1334.00, 1756.97 ) LPos=( -136.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1351.99, 1728.41 ) LPos=( -130.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, -1353.52, 1725.98 ) LPos=( -127.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -127.44, -1351.99, 1728.41 ) LPos=( -127.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -124.56, -1353.52, 1725.98 ) LPos=( -124.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -124.56, -1350.45, 1730.85 ) LPos=( -124.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -121.69, -1353.52, 1725.98 ) LPos=( -121.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -121.69, -1351.99, 1728.41 ) LPos=( -121.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -121.69, -1350.45, 1730.85 ) LPos=( -121.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -121.69, -1348.92, 1733.28 ) LPos=( -121.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -118.81, -1355.05, 1723.55 ) LPos=( -118.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -115.94, -1355.05, 1723.55 ) LPos=( -115.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -115.94, -1351.99, 1728.41 ) LPos=( -115.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, -1340.13, 1747.24 ) LPos=( -87.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -87.94, -1343.19, 1742.38 ) LPos=( -87.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1344.73, 1739.94 ) LPos=( -87.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, -1340.13, 1747.24 ) LPos=( -90.81, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, -1343.19, 1742.38 ) LPos=( -90.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -90.81, -1344.73, 1739.94 ) LPos=( -90.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -93.69, -1343.19, 1742.38 ) LPos=( -93.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, -1344.73, 1739.94 ) LPos=( -93.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -96.56, -1337.07, 1752.11 ) LPos=( -96.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -96.56, -1338.60, 1749.67 ) LPos=( -96.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -96.56, -1341.66, 1744.81 ) LPos=( -96.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -96.56, -1344.73, 1739.94 ) LPos=( -96.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -99.44, -1334.00, 1756.97 ) LPos=( -99.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -99.44, -1337.07, 1752.11 ) LPos=( -99.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1338.60, 1749.67 ) LPos=( -99.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -102.31, -1334.00, 1756.97 ) LPos=( -102.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1337.07, 1752.11 ) LPos=( -102.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -102.31, -1338.60, 1749.67 ) LPos=( -102.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -102.31, -1340.13, 1747.24 ) LPos=( -102.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -102.31, -1343.19, 1742.38 ) LPos=( -102.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -102.31, -1344.73, 1739.94 ) LPos=( -102.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -105.19, -1334.00, 1756.97 ) LPos=( -105.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -105.19, -1335.53, 1754.54 ) LPos=( -105.19, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -105.19, -1337.07, 1752.11 ) LPos=( -105.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -105.19, -1338.60, 1749.67 ) LPos=( -105.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -105.19, -1340.13, 1747.24 ) LPos=( -105.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1341.66, 1744.81 ) LPos=( -105.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -105.19, -1344.73, 1739.94 ) LPos=( -105.19, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, -1334.00, 1756.97 ) LPos=( -108.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -108.06, -1335.53, 1754.54 ) LPos=( -108.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -108.06, -1338.60, 1749.67 ) LPos=( -108.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -108.06, -1344.73, 1739.94 ) LPos=( -108.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -90.81, -1348.92, 1733.28 ) LPos=( -90.81, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -87.94, -1350.45, 1730.85 ) LPos=( -87.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -102.31, -1351.99, 1728.41 ) LPos=( -102.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1351.99, 1728.41 ) LPos=( -93.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -90.81, -1351.99, 1728.41 ) LPos=( -90.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1353.52, 1725.98 ) LPos=( -102.31, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -96.56, -1353.52, 1725.98 ) LPos=( -96.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -93.69, -1353.52, 1725.98 ) LPos=( -93.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, -1353.52, 1725.98 ) LPos=( -90.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1355.05, 1723.55 ) LPos=( -99.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, -1355.05, 1723.55 ) LPos=( -93.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -90.81, -1355.05, 1723.55 ) LPos=( -90.81, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1356.58, 1721.11 ) LPos=( -102.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -99.44, -1356.58, 1721.11 ) LPos=( -99.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, -1356.58, 1721.11 ) LPos=( -93.69, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -59.94, -1344.73, 1739.94 ) LPos=( -59.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1344.73, 1739.94 ) LPos=( -62.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -65.69, -1344.73, 1739.94 ) LPos=( -65.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -68.56, -1344.73, 1739.94 ) LPos=( -68.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, -1344.73, 1739.94 ) LPos=( -74.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1344.73, 1739.94 ) LPos=( -80.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -59.94, -1343.19, 1742.38 ) LPos=( -59.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, -1343.19, 1742.38 ) LPos=( -62.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, -1343.19, 1742.38 ) LPos=( -71.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -80.06, -1343.19, 1742.38 ) LPos=( -80.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -68.56, -1341.66, 1744.81 ) LPos=( -68.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -71.44, -1341.66, 1744.81 ) LPos=( -71.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1341.66, 1744.81 ) LPos=( -74.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -65.69, -1340.13, 1747.24 ) LPos=( -65.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -68.56, -1340.13, 1747.24 ) LPos=( -68.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1340.13, 1747.24 ) LPos=( -71.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, -1340.13, 1747.24 ) LPos=( -80.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -59.94, -1338.60, 1749.67 ) LPos=( -59.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -59.94, -1337.07, 1752.11 ) LPos=( -59.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -80.06, -1337.07, 1752.11 ) LPos=( -80.06, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -65.69, -1335.53, 1754.54 ) LPos=( -65.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, -1335.53, 1754.54 ) LPos=( -74.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -62.81, -1334.00, 1756.97 ) LPos=( -62.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1334.00, 1756.97 ) LPos=( -77.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -80.06, -1334.00, 1756.97 ) LPos=( -80.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -80.06, -1359.65, 1716.25 ) LPos=( -80.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1358.11, 1718.68 ) LPos=( -80.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -80.06, -1351.99, 1728.41 ) LPos=( -80.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -80.06, -1350.45, 1730.85 ) LPos=( -80.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -77.19, -1356.58, 1721.11 ) LPos=( -77.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -74.31, -1358.11, 1718.68 ) LPos=( -74.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, -1356.58, 1721.11 ) LPos=( -74.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1351.99, 1728.41 ) LPos=( -74.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, -1348.92, 1733.28 ) LPos=( -74.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -71.44, -1358.11, 1718.68 ) LPos=( -71.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -71.44, -1356.58, 1721.11 ) LPos=( -71.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -71.44, -1355.05, 1723.55 ) LPos=( -71.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1353.52, 1725.98 ) LPos=( -71.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -71.44, -1350.45, 1730.85 ) LPos=( -71.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, -1348.92, 1733.28 ) LPos=( -68.56, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -65.69, -1353.52, 1725.98 ) LPos=( -65.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -65.69, -1350.45, 1730.85 ) LPos=( -65.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -62.81, -1358.11, 1718.68 ) LPos=( -62.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, -1353.52, 1725.98 ) LPos=( -62.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -62.81, -1351.99, 1728.41 ) LPos=( -62.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -59.94, -1353.52, 1725.98 ) LPos=( -59.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -59.94, -1351.99, 1728.41 ) LPos=( -59.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -31.94, -1337.07, 1752.11 ) LPos=( -31.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, -1338.60, 1749.67 ) LPos=( -31.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, -1335.53, 1754.54 ) LPos=( -34.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -34.81, -1338.60, 1749.67 ) LPos=( -34.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, -1341.66, 1744.81 ) LPos=( -34.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1343.19, 1742.38 ) LPos=( -34.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, -1344.73, 1739.94 ) LPos=( -34.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1334.00, 1756.97 ) LPos=( -37.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -37.69, -1340.13, 1747.24 ) LPos=( -37.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1341.66, 1744.81 ) LPos=( -37.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -40.56, -1334.00, 1756.97 ) LPos=( -40.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, -1341.66, 1744.81 ) LPos=( -40.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -40.56, -1343.19, 1742.38 ) LPos=( -40.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -40.56, -1344.73, 1739.94 ) LPos=( -40.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, -1334.00, 1756.97 ) LPos=( -43.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -43.44, -1335.53, 1754.54 ) LPos=( -43.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -43.44, -1343.19, 1742.38 ) LPos=( -43.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, -1344.73, 1739.94 ) LPos=( -43.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -46.31, -1334.00, 1756.97 ) LPos=( -46.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -46.31, -1335.53, 1754.54 ) LPos=( -46.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -46.31, -1338.60, 1749.67 ) LPos=( -46.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1341.66, 1744.81 ) LPos=( -46.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, -1344.73, 1739.94 ) LPos=( -46.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -49.19, -1337.07, 1752.11 ) LPos=( -49.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -49.19, -1340.13, 1747.24 ) LPos=( -49.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -49.19, -1343.19, 1742.38 ) LPos=( -49.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -49.19, -1344.73, 1739.94 ) LPos=( -49.19, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -52.06, -1338.60, 1749.67 ) LPos=( -52.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -52.06, -1341.66, 1744.81 ) LPos=( -52.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -52.06, -1343.19, 1742.38 ) LPos=( -52.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1344.73, 1739.94 ) LPos=( -52.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -49.19, -1348.92, 1733.28 ) LPos=( -49.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -49.19, -1350.45, 1730.85 ) LPos=( -49.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, -1350.45, 1730.85 ) LPos=( -43.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -52.06, -1351.99, 1728.41 ) LPos=( -52.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, -1351.99, 1728.41 ) LPos=( -43.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1351.99, 1728.41 ) LPos=( -37.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -37.69, -1353.52, 1725.98 ) LPos=( -37.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -31.94, -1353.52, 1725.98 ) LPos=( -31.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -40.56, -1355.05, 1723.55 ) LPos=( -40.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -37.69, -1355.05, 1723.55 ) LPos=( -37.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, -1355.05, 1723.55 ) LPos=( -31.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -43.44, -1356.58, 1721.11 ) LPos=( -43.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -37.69, -1356.58, 1721.11 ) LPos=( -37.69, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -31.94, -1356.58, 1721.11 ) LPos=( -31.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1358.11, 1718.68 ) LPos=( -49.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1358.11, 1718.68 ) LPos=( -43.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -37.69, -1358.11, 1718.68 ) LPos=( -37.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -34.81, -1358.11, 1718.68 ) LPos=( -34.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -46.31, -1359.65, 1716.25 ) LPos=( -46.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, -1359.65, 1716.25 ) LPos=( -40.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -37.69, -1359.65, 1716.25 ) LPos=( -37.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -31.94, -1359.65, 1716.25 ) LPos=( -31.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -12.56, -1344.73, 1739.94 ) LPos=( -12.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, -1343.19, 1742.38 ) LPos=( -6.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1343.19, 1742.38 ) LPos=( -21.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, -1343.19, 1742.38 ) LPos=( -24.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, -1341.66, 1744.81 ) LPos=( -15.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -18.31, -1341.66, 1744.81 ) LPos=( -18.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, -1341.66, 1744.81 ) LPos=( -24.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, -1340.13, 1747.24 ) LPos=( -12.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, -1340.13, 1747.24 ) LPos=( -15.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, -1340.13, 1747.24 ) LPos=( -18.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, -1340.13, 1747.24 ) LPos=( -21.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -24.06, -1340.13, 1747.24 ) LPos=( -24.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3.94, -1338.60, 1749.67 ) LPos=( -3.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, -1338.60, 1749.67 ) LPos=( -6.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -15.44, -1338.60, 1749.67 ) LPos=( -15.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -18.31, -1338.60, 1749.67 ) LPos=( -18.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1337.07, 1752.11 ) LPos=( -9.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1335.53, 1754.54 ) LPos=( -6.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -12.56, -1335.53, 1754.54 ) LPos=( -12.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, -1335.53, 1754.54 ) LPos=( -15.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, -1334.00, 1756.97 ) LPos=( -3.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, -1334.00, 1756.97 ) LPos=( -6.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -15.44, -1334.00, 1756.97 ) LPos=( -15.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -18.31, -1334.00, 1756.97 ) LPos=( -18.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -21.19, -1358.11, 1718.68 ) LPos=( -21.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -21.19, -1356.58, 1721.11 ) LPos=( -21.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1356.58, 1721.11 ) LPos=( -18.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -15.44, -1355.05, 1723.55 ) LPos=( -15.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -12.56, -1359.65, 1716.25 ) LPos=( -12.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1355.05, 1723.55 ) LPos=( -12.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -12.56, -1353.52, 1725.98 ) LPos=( -12.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, -1358.11, 1718.68 ) LPos=( -9.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -9.69, -1355.05, 1723.55 ) LPos=( -9.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -9.69, -1351.99, 1728.41 ) LPos=( -9.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, -1350.45, 1730.85 ) LPos=( -9.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -9.69, -1348.92, 1733.28 ) LPos=( -9.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, -1359.65, 1716.25 ) LPos=( -3.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, -1337.07, 1752.11 ) LPos=( 24.06, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, -1338.60, 1749.67 ) LPos=( 24.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, -1335.53, 1754.54 ) LPos=( 21.19, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 18.31, -1335.53, 1754.54 ) LPos=( 18.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, -1338.60, 1749.67 ) LPos=( 18.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, -1340.13, 1747.24 ) LPos=( 18.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, -1343.19, 1742.38 ) LPos=( 18.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, -1340.13, 1747.24 ) LPos=( 15.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 15.44, -1343.19, 1742.38 ) LPos=( 15.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, -1335.53, 1754.54 ) LPos=( 12.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 12.56, -1337.07, 1752.11 ) LPos=( 12.56, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, -1340.13, 1747.24 ) LPos=( 12.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, -1341.66, 1744.81 ) LPos=( 9.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, -1334.00, 1756.97 ) LPos=( 6.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3.94, -1344.73, 1739.94 ) LPos=( 3.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3.94, -1348.92, 1733.28 ) LPos=( 3.94, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 12.56, -1348.92, 1733.28 ) LPos=( 12.56, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, -1348.92, 1733.28 ) LPos=( 24.06, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, -1350.45, 1730.85 ) LPos=( 3.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 12.56, -1350.45, 1730.85 ) LPos=( 12.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, -1350.45, 1730.85 ) LPos=( 15.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1350.45, 1730.85 ) LPos=( 18.31, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, -1351.99, 1728.41 ) LPos=( 15.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, -1351.99, 1728.41 ) LPos=( 18.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 6.81, -1353.52, 1725.98 ) LPos=( 6.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, -1353.52, 1725.98 ) LPos=( 9.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, -1353.52, 1725.98 ) LPos=( 15.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 21.19, -1353.52, 1725.98 ) LPos=( 21.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3.94, -1355.05, 1723.55 ) LPos=( 3.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 9.69, -1355.05, 1723.55 ) LPos=( 9.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 15.44, -1356.58, 1721.11 ) LPos=( 15.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, -1356.58, 1721.11 ) LPos=( 21.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 9.69, -1358.11, 1718.68 ) LPos=( 9.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 15.44, -1358.11, 1718.68 ) LPos=( 15.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, -1358.11, 1718.68 ) LPos=( 18.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 9.69, -1359.65, 1716.25 ) LPos=( 9.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 12.56, -1359.65, 1716.25 ) LPos=( 12.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 18.31, -1359.65, 1716.25 ) LPos=( 18.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 52.06, -1344.73, 1739.94 ) LPos=( 52.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 37.69, -1344.73, 1739.94 ) LPos=( 37.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 49.19, -1343.19, 1742.38 ) LPos=( 49.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 31.94, -1343.19, 1742.38 ) LPos=( 31.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, -1341.66, 1744.81 ) LPos=( 52.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1341.66, 1744.81 ) LPos=( 37.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 49.19, -1338.60, 1749.67 ) LPos=( 49.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, -1338.60, 1749.67 ) LPos=( 46.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, -1335.53, 1754.54 ) LPos=( 37.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 34.81, -1335.53, 1754.54 ) LPos=( 34.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 31.94, -1359.65, 1716.25 ) LPos=( 31.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 34.81, -1358.11, 1718.68 ) LPos=( 34.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 34.81, -1351.99, 1728.41 ) LPos=( 34.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, -1358.11, 1718.68 ) LPos=( 40.56, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, -1356.58, 1721.11 ) LPos=( 40.56, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, -1351.99, 1728.41 ) LPos=( 40.56, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 43.44, -1358.11, 1718.68 ) LPos=( 43.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1355.05, 1723.55 ) LPos=( 43.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 43.44, -1351.99, 1728.41 ) LPos=( 43.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 43.44, -1350.45, 1730.85 ) LPos=( 43.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 49.19, -1358.11, 1718.68 ) LPos=( 49.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, -1355.05, 1723.55 ) LPos=( 49.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 52.06, -1351.99, 1728.41 ) LPos=( 52.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 80.06, -1335.53, 1754.54 ) LPos=( 80.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 80.06, -1340.13, 1747.24 ) LPos=( 80.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 80.06, -1341.66, 1744.81 ) LPos=( 80.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 80.06, -1343.19, 1742.38 ) LPos=( 80.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 77.19, -1338.60, 1749.67 ) LPos=( 77.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1341.66, 1744.81 ) LPos=( 77.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, -1337.07, 1752.11 ) LPos=( 74.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, -1338.60, 1749.67 ) LPos=( 74.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 74.31, -1340.13, 1747.24 ) LPos=( 74.31, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, -1334.00, 1756.97 ) LPos=( 71.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 71.44, -1335.53, 1754.54 ) LPos=( 71.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 71.44, -1344.73, 1739.94 ) LPos=( 71.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, -1340.13, 1747.24 ) LPos=( 68.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 65.69, -1335.53, 1754.54 ) LPos=( 65.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 62.81, -1334.00, 1756.97 ) LPos=( 62.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 62.81, -1341.66, 1744.81 ) LPos=( 62.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 59.94, -1334.00, 1756.97 ) LPos=( 59.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1341.66, 1744.81 ) LPos=( 59.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, -1348.92, 1733.28 ) LPos=( 62.81, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, -1348.92, 1733.28 ) LPos=( 68.56, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 71.44, -1348.92, 1733.28 ) LPos=( 71.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 77.19, -1348.92, 1733.28 ) LPos=( 77.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 62.81, -1350.45, 1730.85 ) LPos=( 62.81, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 68.56, -1350.45, 1730.85 ) LPos=( 68.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, -1350.45, 1730.85 ) LPos=( 71.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, -1351.99, 1728.41 ) LPos=( 59.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 77.19, -1351.99, 1728.41 ) LPos=( 77.19, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1351.99, 1728.41 ) LPos=( 80.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, -1353.52, 1725.98 ) LPos=( 65.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, -1355.05, 1723.55 ) LPos=( 65.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, -1355.05, 1723.55 ) LPos=( 68.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 71.44, -1355.05, 1723.55 ) LPos=( 71.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 80.06, -1355.05, 1723.55 ) LPos=( 80.06, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, -1344.73, 1739.94 ) LPos=( 93.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, -1344.73, 1739.94 ) LPos=( 90.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, -1344.73, 1739.94 ) LPos=( 87.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 108.06, -1343.19, 1742.38 ) LPos=( 108.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 105.19, -1343.19, 1742.38 ) LPos=( 105.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, -1343.19, 1742.38 ) LPos=( 102.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, -1343.19, 1742.38 ) LPos=( 96.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 93.69, -1343.19, 1742.38 ) LPos=( 93.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1343.19, 1742.38 ) LPos=( 90.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 87.94, -1343.19, 1742.38 ) LPos=( 87.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 105.19, -1341.66, 1744.81 ) LPos=( 105.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1341.66, 1744.81 ) LPos=( 102.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, -1341.66, 1744.81 ) LPos=( 96.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 90.81, -1341.66, 1744.81 ) LPos=( 90.81, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1340.13, 1747.24 ) LPos=( 96.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 93.69, -1340.13, 1747.24 ) LPos=( 93.69, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, -1340.13, 1747.24 ) LPos=( 90.81, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 108.06, -1338.60, 1749.67 ) LPos=( 108.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 105.19, -1338.60, 1749.67 ) LPos=( 105.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, -1338.60, 1749.67 ) LPos=( 102.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1338.60, 1749.67 ) LPos=( 99.44, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 96.56, -1338.60, 1749.67 ) LPos=( 96.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, -1338.60, 1749.67 ) LPos=( 93.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 90.81, -1338.60, 1749.67 ) LPos=( 90.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 105.19, -1337.07, 1752.11 ) LPos=( 105.19, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1337.07, 1752.11 ) LPos=( 102.31, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, -1337.07, 1752.11 ) LPos=( 99.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 108.06, -1335.53, 1754.54 ) LPos=( 108.06, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, -1335.53, 1754.54 ) LPos=( 102.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1335.53, 1754.54 ) LPos=( 90.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 87.94, -1335.53, 1754.54 ) LPos=( 87.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, -1334.00, 1756.97 ) LPos=( 93.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 90.81, -1334.00, 1756.97 ) LPos=( 90.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 87.94, -1334.00, 1756.97 ) LPos=( 87.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 87.94, -1356.58, 1721.11 ) LPos=( 87.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, -1355.05, 1723.55 ) LPos=( 87.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, -1353.52, 1725.98 ) LPos=( 87.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, -1350.45, 1730.85 ) LPos=( 87.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 90.81, -1359.65, 1716.25 ) LPos=( 90.81, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 96.56, -1355.05, 1723.55 ) LPos=( 96.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1353.52, 1725.98 ) LPos=( 96.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 99.44, -1356.58, 1721.11 ) LPos=( 99.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1355.05, 1723.55 ) LPos=( 99.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 102.31, -1359.65, 1716.25 ) LPos=( 102.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 102.31, -1356.58, 1721.11 ) LPos=( 102.31, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, -1355.05, 1723.55 ) LPos=( 102.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 102.31, -1350.45, 1730.85 ) LPos=( 102.31, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, -1355.05, 1723.55 ) LPos=( 105.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, -1353.52, 1725.98 ) LPos=( 105.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, -1359.65, 1716.25 ) LPos=( 108.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1350.45, 1730.85 ) LPos=( 108.06, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 136.06, -1338.60, 1749.67 ) LPos=( 136.06, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 133.19, -1338.60, 1749.67 ) LPos=( 133.19, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 130.31, -1338.60, 1749.67 ) LPos=( 130.31, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1341.66, 1744.81 ) LPos=( 130.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, -1343.19, 1742.38 ) LPos=( 130.31, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, -1343.19, 1742.38 ) LPos=( 127.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 127.44, -1344.73, 1739.94 ) LPos=( 127.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, -1338.60, 1749.67 ) LPos=( 124.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 124.56, -1343.19, 1742.38 ) LPos=( 124.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1344.73, 1739.94 ) LPos=( 124.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 121.69, -1335.53, 1754.54 ) LPos=( 121.69, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 121.69, -1344.73, 1739.94 ) LPos=( 121.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1335.53, 1754.54 ) LPos=( 118.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 118.81, -1338.60, 1749.67 ) LPos=( 118.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 118.81, -1344.73, 1739.94 ) LPos=( 118.81, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, -1334.00, 1756.97 ) LPos=( 115.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 115.94, -1335.53, 1754.54 ) LPos=( 115.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, -1341.66, 1744.81 ) LPos=( 115.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 115.94, -1344.73, 1739.94 ) LPos=( 115.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 127.44, -1351.99, 1728.41 ) LPos=( 127.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 133.19, -1351.99, 1728.41 ) LPos=( 133.19, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 136.06, -1351.99, 1728.41 ) LPos=( 136.06, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, -1353.52, 1725.98 ) LPos=( 115.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, -1353.52, 1725.98 ) LPos=( 118.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, -1353.52, 1725.98 ) LPos=( 130.31, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 127.44, -1355.05, 1723.55 ) LPos=( 127.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 115.94, -1359.65, 1716.25 ) LPos=( 115.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 164.06, -1344.73, 1739.94 ) LPos=( 164.06, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 149.69, -1344.73, 1739.94 ) LPos=( 149.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 143.94, -1343.19, 1742.38 ) LPos=( 143.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 161.19, -1341.66, 1744.81 ) LPos=( 161.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 164.06, -1340.13, 1747.24 ) LPos=( 164.06, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1340.13, 1747.24 ) LPos=( 161.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 155.44, -1340.13, 1747.24 ) LPos=( 155.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1340.13, 1747.24 ) LPos=( 152.56, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 146.81, -1338.60, 1749.67 ) LPos=( 146.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 149.69, -1337.07, 1752.11 ) LPos=( 149.69, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 143.94, -1337.07, 1752.11 ) LPos=( 143.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 152.56, -1335.53, 1754.54 ) LPos=( 152.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1335.53, 1754.54 ) LPos=( 143.94, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 152.56, -1334.00, 1756.97 ) LPos=( 152.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 149.69, -1334.00, 1756.97 ) LPos=( 149.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 143.94, -1356.58, 1721.11 ) LPos=( 143.94, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 143.94, -1351.99, 1728.41 ) LPos=( 143.94, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 146.81, -1351.99, 1728.41 ) LPos=( 146.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, -1359.65, 1716.25 ) LPos=( 152.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 161.19, -1350.45, 1730.85 ) LPos=( 161.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 192.06, -1343.19, 1742.38 ) LPos=( 192.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 189.19, -1340.13, 1747.24 ) LPos=( 189.19, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 186.31, -1335.53, 1754.54 ) LPos=( 186.31, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 183.44, -1334.00, 1756.97 ) LPos=( 183.44, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 183.44, -1337.07, 1752.11 ) LPos=( 183.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 180.56, -1334.00, 1756.97 ) LPos=( 180.56, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 180.56, -1335.53, 1754.54 ) LPos=( 180.56, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 180.56, -1338.60, 1749.67 ) LPos=( 180.56, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, -1338.60, 1749.67 ) LPos=( 177.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 177.69, -1341.66, 1744.81 ) LPos=( 177.69, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 177.69, -1344.73, 1739.94 ) LPos=( 177.69, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 174.81, -1338.60, 1749.67 ) LPos=( 174.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 171.94, -1340.13, 1747.24 ) LPos=( 171.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 183.44, -1348.92, 1733.28 ) LPos=( 183.44, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 171.94, -1350.45, 1730.85 ) LPos=( 171.94, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 177.69, -1350.45, 1730.85 ) LPos=( 177.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 177.69, -1351.99, 1728.41 ) LPos=( 177.69, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 177.69, -1353.52, 1725.98 ) LPos=( 177.69, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 171.94, -1355.05, 1723.55 ) LPos=( 171.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 183.44, -1356.58, 1721.11 ) LPos=( 183.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 192.06, -1358.11, 1718.68 ) LPos=( 192.06, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, -1359.65, 1716.25 ) LPos=( 174.81, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 180.56, -1359.65, 1716.25 ) LPos=( 180.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 183.44, -1359.65, 1716.25 ) LPos=( 183.44, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 192.06, -1359.65, 1716.25 ) LPos=( 192.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 211.44, -1343.19, 1742.38 ) LPos=( 211.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 220.06, -1341.66, 1744.81 ) LPos=( 220.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, -1341.66, 1744.81 ) LPos=( 217.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 214.31, -1341.66, 1744.81 ) LPos=( 214.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 211.44, -1341.66, 1744.81 ) LPos=( 211.44, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 199.94, -1340.13, 1747.24 ) LPos=( 199.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 205.69, -1338.60, 1749.67 ) LPos=( 205.69, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 202.81, -1338.60, 1749.67 ) LPos=( 202.81, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 199.94, -1338.60, 1749.67 ) LPos=( 199.94, -182.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 211.44, -1335.53, 1754.54 ) LPos=( 211.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 214.31, -1334.00, 1756.97 ) LPos=( 214.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, -1359.65, 1716.25 ) LPos=( 199.94, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 202.81, -1356.58, 1721.11 ) LPos=( 202.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 208.56, -1355.05, 1723.55 ) LPos=( 208.56, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 211.44, -1356.58, 1721.11 ) LPos=( 211.44, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 214.31, -1359.65, 1716.25 ) LPos=( 214.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 214.31, -1348.92, 1733.28 ) LPos=( 214.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, -1358.11, 1718.68 ) LPos=( 217.19, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 217.19, -1350.45, 1730.85 ) LPos=( 217.19, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, -1343.19, 1742.38 ) LPos=( 248.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 239.44, -1344.73, 1739.94 ) LPos=( 239.44, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 236.56, -1344.73, 1739.94 ) LPos=( 236.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 233.69, -1334.00, 1756.97 ) LPos=( 233.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 230.81, -1334.00, 1756.97 ) LPos=( 230.81, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 230.81, -1343.19, 1742.38 ) LPos=( 230.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 227.94, -1340.13, 1747.24 ) LPos=( 227.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 227.94, -1341.66, 1744.81 ) LPos=( 227.94, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 227.94, -1344.73, 1739.94 ) LPos=( 227.94, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 233.69, -1348.92, 1733.28 ) LPos=( 233.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 236.56, -1350.45, 1730.85 ) LPos=( 236.56, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 230.81, -1353.52, 1725.98 ) LPos=( 230.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 236.56, -1353.52, 1725.98 ) LPos=( 236.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 239.44, -1353.52, 1725.98 ) LPos=( 239.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 248.06, -1353.52, 1725.98 ) LPos=( 248.06, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 227.94, -1355.05, 1723.55 ) LPos=( 227.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 239.44, -1355.05, 1723.55 ) LPos=( 239.44, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 242.31, -1355.05, 1723.55 ) LPos=( 242.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 236.56, -1356.58, 1721.11 ) LPos=( 236.56, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 239.44, -1358.11, 1718.68 ) LPos=( 239.44, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 233.69, -1359.65, 1716.25 ) LPos=( 233.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 236.56, -1359.65, 1716.25 ) LPos=( 236.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 261.69, -1343.19, 1742.38 ) LPos=( 261.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 255.94, -1343.19, 1742.38 ) LPos=( 255.94, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 270.31, -1341.66, 1744.81 ) LPos=( 270.31, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 264.56, -1341.66, 1744.81 ) LPos=( 264.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 276.06, -1334.00, 1756.97 ) LPos=( 276.06, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 255.94, -1355.05, 1723.55 ) LPos=( 255.94, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 255.94, -1353.52, 1725.98 ) LPos=( 255.94, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 261.69, -1350.45, 1730.85 ) LPos=( 261.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 264.56, -1358.11, 1718.68 ) LPos=( 264.56, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 270.31, -1359.65, 1716.25 ) LPos=( 270.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 273.19, -1359.65, 1716.25 ) LPos=( 273.19, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 273.19, -1356.58, 1721.11 ) LPos=( 273.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 273.19, -1353.52, 1725.98 ) LPos=( 273.19, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 304.06, -1343.19, 1742.38 ) LPos=( 304.06, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 301.19, -1334.00, 1756.97 ) LPos=( 301.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 295.44, -1337.07, 1752.11 ) LPos=( 295.44, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 295.44, -1340.13, 1747.24 ) LPos=( 295.44, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 292.56, -1344.73, 1739.94 ) LPos=( 292.56, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 286.81, -1340.13, 1747.24 ) LPos=( 286.81, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 301.19, -1348.92, 1733.28 ) LPos=( 301.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 295.44, -1350.45, 1730.85 ) LPos=( 295.44, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 286.81, -1353.52, 1725.98 ) LPos=( 286.81, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 292.56, -1353.52, 1725.98 ) LPos=( 292.56, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 286.81, -1356.58, 1721.11 ) LPos=( 286.81, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 289.69, -1358.11, 1718.68 ) LPos=( 289.69, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 289.69, -1359.65, 1716.25 ) LPos=( 289.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 326.31, -1344.73, 1739.94 ) LPos=( 326.31, -193.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, -1358.11, 1718.68 ) LPos=( 314.81, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 317.69, -1350.45, 1730.85 ) LPos=( 317.69, -204.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 326.31, -1358.11, 1718.68 ) LPos=( 326.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1359.65, 1716.25 ) LPos=( 332.06, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 357.19, -1334.00, 1756.97 ) LPos=( 357.19, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 351.44, -1343.19, 1742.38 ) LPos=( 351.44, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 342.81, -1343.19, 1742.38 ) LPos=( 342.81, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 354.31, -1348.92, 1733.28 ) LPos=( 354.31, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 360.06, -1348.92, 1733.28 ) LPos=( 360.06, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 348.56, -1351.99, 1728.41 ) LPos=( 348.56, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 351.44, -1351.99, 1728.41 ) LPos=( 351.44, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 354.31, -1351.99, 1728.41 ) LPos=( 354.31, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 360.06, -1353.52, 1725.98 ) LPos=( 360.06, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 357.19, -1356.58, 1721.11 ) LPos=( 357.19, -216.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 339.94, -1358.11, 1718.68 ) LPos=( 339.94, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 354.31, -1358.11, 1718.68 ) LPos=( 354.31, -218.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 348.56, -1359.65, 1716.25 ) LPos=( 348.56, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 354.31, -1359.65, 1716.25 ) LPos=( 354.31, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 385.19, -1343.19, 1742.38 ) LPos=( 385.19, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 376.56, -1343.19, 1742.38 ) LPos=( 376.56, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 373.69, -1343.19, 1742.38 ) LPos=( 373.69, -190.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 367.94, -1340.13, 1747.24 ) LPos=( 367.94, -185.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 388.06, -1337.07, 1752.11 ) LPos=( 388.06, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 379.44, -1335.53, 1754.54 ) LPos=( 379.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 373.69, -1334.00, 1756.97 ) LPos=( 373.69, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 370.81, -1351.99, 1728.41 ) LPos=( 370.81, -207.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 373.69, -1355.05, 1723.55 ) LPos=( 373.69, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 379.44, -1353.52, 1725.98 ) LPos=( 379.44, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 388.06, -1353.52, 1725.98 ) LPos=( 388.06, -210.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 416.06, -1341.66, 1744.81 ) LPos=( 416.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 407.44, -1335.53, 1754.54 ) LPos=( 407.44, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 398.81, -1335.53, 1754.54 ) LPos=( 398.81, -176.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 395.94, -1334.00, 1756.97 ) LPos=( 395.94, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 413.19, -1355.05, 1723.55 ) LPos=( 413.19, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:112,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 401.69, -1359.65, 1716.25 ) LPos=( 401.69, -221.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 497.19, -1341.66, 1744.81 ) LPos=( 497.19, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 553.19, -1348.92, 1733.28 ) LPos=( 553.19, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 584.06, -1341.66, 1744.81 ) LPos=( 584.06, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 563.94, -1337.07, 1752.11 ) LPos=( 563.94, -179.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 569.69, -1348.92, 1733.28 ) LPos=( 569.69, -201.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 600.56, -1341.66, 1744.81 ) LPos=( 600.56, -188.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 606.31, -1334.00, 1756.97 ) LPos=( 606.31, -173.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:113,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 606.31, -1355.05, 1723.55 ) LPos=( 606.31, -213.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -606.31, -1310.02, 1795.05 ) LPos=( -606.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -507.94, -1310.02, 1795.05 ) LPos=( -507.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -500.06, -1324.94, 1771.36 ) LPos=( -500.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:114,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -454.81, -1314.62, 1787.75 ) LPos=( -454.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -423.94, -1305.43, 1802.35 ) LPos=( -423.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -429.69, -1305.43, 1802.35 ) LPos=( -429.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -429.69, -1306.96, 1799.92 ) LPos=( -429.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -435.44, -1305.43, 1802.35 ) LPos=( -435.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -398.81, -1303.89, 1804.78 ) LPos=( -398.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -407.44, -1320.35, 1778.66 ) LPos=( -407.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -401.69, -1326.47, 1768.92 ) LPos=( -401.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -395.94, -1328.01, 1766.49 ) LPos=( -395.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -379.44, -1326.47, 1768.92 ) LPos=( -379.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -388.06, -1328.01, 1766.49 ) LPos=( -388.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -376.56, -1328.01, 1766.49 ) LPos=( -376.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -373.69, -1328.01, 1766.49 ) LPos=( -373.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -367.94, -1329.54, 1764.06 ) LPos=( -367.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -339.94, -1310.02, 1795.05 ) LPos=( -339.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -332.06, -1320.35, 1778.66 ) LPos=( -332.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -329.19, -1324.94, 1771.36 ) LPos=( -329.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -311.94, -1324.94, 1771.36 ) LPos=( -311.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -332.06, -1326.47, 1768.92 ) LPos=( -332.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -323.44, -1326.47, 1768.92 ) LPos=( -323.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -311.94, -1328.01, 1766.49 ) LPos=( -311.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -289.69, -1329.54, 1764.06 ) LPos=( -289.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -255.94, -1303.89, 1804.78 ) LPos=( -255.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -261.69, -1314.62, 1787.75 ) LPos=( -261.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -267.44, -1318.81, 1781.09 ) LPos=( -267.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -258.81, -1318.81, 1781.09 ) LPos=( -258.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -255.94, -1318.81, 1781.09 ) LPos=( -255.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -258.81, -1323.41, 1773.79 ) LPos=( -258.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -258.81, -1324.94, 1771.36 ) LPos=( -258.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -261.69, -1326.47, 1768.92 ) LPos=( -261.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -258.81, -1328.01, 1766.49 ) LPos=( -258.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -248.06, -1311.55, 1792.62 ) LPos=( -248.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -242.31, -1310.02, 1795.05 ) LPos=( -242.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -248.06, -1310.02, 1795.05 ) LPos=( -248.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -236.56, -1308.49, 1797.48 ) LPos=( -236.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -239.44, -1306.96, 1799.92 ) LPos=( -239.44, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, -1305.43, 1802.35 ) LPos=( -236.56, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, -1305.43, 1802.35 ) LPos=( -245.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -248.06, -1305.43, 1802.35 ) LPos=( -248.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1303.89, 1804.78 ) LPos=( -227.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -242.31, -1303.89, 1804.78 ) LPos=( -242.31, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -242.31, -1318.81, 1781.09 ) LPos=( -242.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -236.56, -1321.88, 1776.22 ) LPos=( -236.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -227.94, -1328.01, 1766.49 ) LPos=( -227.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -199.94, -1303.89, 1804.78 ) LPos=( -199.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -199.94, -1306.96, 1799.92 ) LPos=( -199.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -199.94, -1308.49, 1797.48 ) LPos=( -199.94, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -199.94, -1314.62, 1787.75 ) LPos=( -199.94, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -202.81, -1310.02, 1795.05 ) LPos=( -202.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, -1311.55, 1792.62 ) LPos=( -205.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -208.56, -1308.49, 1797.48 ) LPos=( -208.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -208.56, -1310.02, 1795.05 ) LPos=( -208.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -208.56, -1314.62, 1787.75 ) LPos=( -208.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -211.44, -1311.55, 1792.62 ) LPos=( -211.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -211.44, -1313.09, 1790.19 ) LPos=( -211.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -214.31, -1313.09, 1790.19 ) LPos=( -214.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -214.31, -1314.62, 1787.75 ) LPos=( -214.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -217.19, -1305.43, 1802.35 ) LPos=( -217.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -217.19, -1311.55, 1792.62 ) LPos=( -217.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -220.06, -1305.43, 1802.35 ) LPos=( -220.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -220.06, -1308.49, 1797.48 ) LPos=( -220.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -220.06, -1311.55, 1792.62 ) LPos=( -220.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -220.06, -1318.81, 1781.09 ) LPos=( -220.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, -1318.81, 1781.09 ) LPos=( -214.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -211.44, -1318.81, 1781.09 ) LPos=( -211.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -208.56, -1318.81, 1781.09 ) LPos=( -208.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, -1320.35, 1778.66 ) LPos=( -214.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -211.44, -1320.35, 1778.66 ) LPos=( -211.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -208.56, -1320.35, 1778.66 ) LPos=( -208.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -202.81, -1320.35, 1778.66 ) LPos=( -202.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -199.94, -1320.35, 1778.66 ) LPos=( -199.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -211.44, -1321.88, 1776.22 ) LPos=( -211.44, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -208.56, -1321.88, 1776.22 ) LPos=( -208.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, -1321.88, 1776.22 ) LPos=( -205.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -208.56, -1323.41, 1773.79 ) LPos=( -208.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -205.69, -1323.41, 1773.79 ) LPos=( -205.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -208.56, -1324.94, 1771.36 ) LPos=( -208.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -205.69, -1324.94, 1771.36 ) LPos=( -205.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -202.81, -1324.94, 1771.36 ) LPos=( -202.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -208.56, -1326.47, 1768.92 ) LPos=( -208.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -202.81, -1326.47, 1768.92 ) LPos=( -202.81, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -199.94, -1326.47, 1768.92 ) LPos=( -199.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -211.44, -1328.01, 1766.49 ) LPos=( -211.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -208.56, -1328.01, 1766.49 ) LPos=( -208.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -202.81, -1328.01, 1766.49 ) LPos=( -202.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -217.19, -1329.54, 1764.06 ) LPos=( -217.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -211.44, -1329.54, 1764.06 ) LPos=( -211.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -202.81, -1329.54, 1764.06 ) LPos=( -202.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -174.81, -1314.62, 1787.75 ) LPos=( -174.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -192.06, -1313.09, 1790.19 ) LPos=( -192.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -174.81, -1311.55, 1792.62 ) LPos=( -174.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1311.55, 1792.62 ) LPos=( -183.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -192.06, -1311.55, 1792.62 ) LPos=( -192.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -192.06, -1310.02, 1795.05 ) LPos=( -192.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -177.69, -1306.96, 1799.92 ) LPos=( -177.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -189.19, -1306.96, 1799.92 ) LPos=( -189.19, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -171.94, -1305.43, 1802.35 ) LPos=( -171.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -186.31, -1305.43, 1802.35 ) LPos=( -186.31, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -180.56, -1303.89, 1804.78 ) LPos=( -180.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -177.69, -1329.54, 1764.06 ) LPos=( -177.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -177.69, -1324.94, 1771.36 ) LPos=( -177.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -146.81, -1311.55, 1792.62 ) LPos=( -146.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, -1308.49, 1797.48 ) LPos=( -149.69, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -149.69, -1311.55, 1792.62 ) LPos=( -149.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -152.56, -1308.49, 1797.48 ) LPos=( -152.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -152.56, -1310.02, 1795.05 ) LPos=( -152.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, -1313.09, 1790.19 ) LPos=( -152.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -152.56, -1314.62, 1787.75 ) LPos=( -152.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -155.44, -1305.43, 1802.35 ) LPos=( -155.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, -1308.49, 1797.48 ) LPos=( -155.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -155.44, -1310.02, 1795.05 ) LPos=( -155.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -155.44, -1313.09, 1790.19 ) LPos=( -155.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, -1306.96, 1799.92 ) LPos=( -158.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -161.19, -1306.96, 1799.92 ) LPos=( -161.19, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -161.19, -1310.02, 1795.05 ) LPos=( -161.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -161.19, -1311.55, 1792.62 ) LPos=( -161.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, -1303.89, 1804.78 ) LPos=( -164.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -164.06, -1305.43, 1802.35 ) LPos=( -164.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -164.06, -1314.62, 1787.75 ) LPos=( -164.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, -1318.81, 1781.09 ) LPos=( -164.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -158.31, -1318.81, 1781.09 ) LPos=( -158.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1318.81, 1781.09 ) LPos=( -155.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -152.56, -1318.81, 1781.09 ) LPos=( -152.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -149.69, -1318.81, 1781.09 ) LPos=( -149.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -149.69, -1320.35, 1778.66 ) LPos=( -149.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, -1321.88, 1776.22 ) LPos=( -158.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, -1321.88, 1776.22 ) LPos=( -146.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -155.44, -1323.41, 1773.79 ) LPos=( -155.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -143.94, -1323.41, 1773.79 ) LPos=( -143.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -149.69, -1324.94, 1771.36 ) LPos=( -149.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -146.81, -1324.94, 1771.36 ) LPos=( -146.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -143.94, -1324.94, 1771.36 ) LPos=( -143.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, -1326.47, 1768.92 ) LPos=( -146.81, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -149.69, -1328.01, 1766.49 ) LPos=( -149.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -146.81, -1328.01, 1766.49 ) LPos=( -146.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -143.94, -1328.01, 1766.49 ) LPos=( -143.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -164.06, -1329.54, 1764.06 ) LPos=( -164.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -149.69, -1329.54, 1764.06 ) LPos=( -149.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1314.62, 1787.75 ) LPos=( -121.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, -1313.09, 1790.19 ) LPos=( -124.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -118.81, -1311.55, 1792.62 ) LPos=( -118.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -121.69, -1311.55, 1792.62 ) LPos=( -121.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -121.69, -1306.96, 1799.92 ) LPos=( -121.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -121.69, -1305.43, 1802.35 ) LPos=( -121.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -136.06, -1329.54, 1764.06 ) LPos=( -136.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -133.19, -1329.54, 1764.06 ) LPos=( -133.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -133.19, -1326.47, 1768.92 ) LPos=( -133.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -133.19, -1321.88, 1776.22 ) LPos=( -133.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, -1328.01, 1766.49 ) LPos=( -130.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -130.31, -1326.47, 1768.92 ) LPos=( -130.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -130.31, -1324.94, 1771.36 ) LPos=( -130.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -127.44, -1329.54, 1764.06 ) LPos=( -127.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -127.44, -1328.01, 1766.49 ) LPos=( -127.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -127.44, -1326.47, 1768.92 ) LPos=( -127.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -127.44, -1324.94, 1771.36 ) LPos=( -127.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -124.56, -1329.54, 1764.06 ) LPos=( -124.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -118.81, -1320.35, 1778.66 ) LPos=( -118.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, -1318.81, 1781.09 ) LPos=( -118.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -115.94, -1326.47, 1768.92 ) LPos=( -115.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -115.94, -1321.88, 1776.22 ) LPos=( -115.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -87.94, -1303.89, 1804.78 ) LPos=( -87.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -87.94, -1308.49, 1797.48 ) LPos=( -87.94, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -90.81, -1308.49, 1797.48 ) LPos=( -90.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -90.81, -1310.02, 1795.05 ) LPos=( -90.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -93.69, -1310.02, 1795.05 ) LPos=( -93.69, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1311.55, 1792.62 ) LPos=( -93.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -93.69, -1314.62, 1787.75 ) LPos=( -93.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -102.31, -1310.02, 1795.05 ) LPos=( -102.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -105.19, -1303.89, 1804.78 ) LPos=( -105.19, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -108.06, -1303.89, 1804.78 ) LPos=( -108.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -87.94, -1318.81, 1781.09 ) LPos=( -87.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -90.81, -1320.35, 1778.66 ) LPos=( -90.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -87.94, -1320.35, 1778.66 ) LPos=( -87.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -87.94, -1323.41, 1773.79 ) LPos=( -87.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -96.56, -1324.94, 1771.36 ) LPos=( -96.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -93.69, -1324.94, 1771.36 ) LPos=( -93.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -99.44, -1326.47, 1768.92 ) LPos=( -99.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, -1326.47, 1768.92 ) LPos=( -96.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, -1326.47, 1768.92 ) LPos=( -93.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -102.31, -1329.54, 1764.06 ) LPos=( -102.31, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -99.44, -1329.54, 1764.06 ) LPos=( -99.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1314.62, 1787.75 ) LPos=( -62.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, -1314.62, 1787.75 ) LPos=( -71.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -74.31, -1314.62, 1787.75 ) LPos=( -74.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1314.62, 1787.75 ) LPos=( -80.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -59.94, -1313.09, 1790.19 ) LPos=( -59.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -62.81, -1313.09, 1790.19 ) LPos=( -62.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, -1313.09, 1790.19 ) LPos=( -74.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, -1313.09, 1790.19 ) LPos=( -77.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -65.69, -1311.55, 1792.62 ) LPos=( -65.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1311.55, 1792.62 ) LPos=( -74.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -77.19, -1311.55, 1792.62 ) LPos=( -77.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -59.94, -1310.02, 1795.05 ) LPos=( -59.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1310.02, 1795.05 ) LPos=( -71.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -77.19, -1310.02, 1795.05 ) LPos=( -77.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -80.06, -1310.02, 1795.05 ) LPos=( -80.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1308.49, 1797.48 ) LPos=( -80.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -74.31, -1305.43, 1802.35 ) LPos=( -74.31, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, -1303.89, 1804.78 ) LPos=( -65.69, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, -1303.89, 1804.78 ) LPos=( -68.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1328.01, 1766.49 ) LPos=( -80.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -77.19, -1328.01, 1766.49 ) LPos=( -77.19, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, -1321.88, 1776.22 ) LPos=( -77.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -71.44, -1329.54, 1764.06 ) LPos=( -71.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, -1321.88, 1776.22 ) LPos=( -71.44, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -71.44, -1318.81, 1781.09 ) LPos=( -71.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -68.56, -1329.54, 1764.06 ) LPos=( -68.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -68.56, -1328.01, 1766.49 ) LPos=( -68.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -68.56, -1326.47, 1768.92 ) LPos=( -68.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -68.56, -1318.81, 1781.09 ) LPos=( -68.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -65.69, -1329.54, 1764.06 ) LPos=( -65.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -65.69, -1328.01, 1766.49 ) LPos=( -65.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -65.69, -1324.94, 1771.36 ) LPos=( -65.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -65.69, -1318.81, 1781.09 ) LPos=( -65.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -59.94, -1326.47, 1768.92 ) LPos=( -59.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -31.94, -1303.89, 1804.78 ) LPos=( -31.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -31.94, -1305.43, 1802.35 ) LPos=( -31.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -31.94, -1310.02, 1795.05 ) LPos=( -31.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -31.94, -1311.55, 1792.62 ) LPos=( -31.94, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, -1305.43, 1802.35 ) LPos=( -34.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -43.44, -1314.62, 1787.75 ) LPos=( -43.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -46.31, -1313.09, 1790.19 ) LPos=( -46.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -46.31, -1314.62, 1787.75 ) LPos=( -46.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1305.43, 1802.35 ) LPos=( -49.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -49.19, -1308.49, 1797.48 ) LPos=( -49.19, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -52.06, -1306.96, 1799.92 ) LPos=( -52.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1314.62, 1787.75 ) LPos=( -52.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -52.06, -1318.81, 1781.09 ) LPos=( -52.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -40.56, -1318.81, 1781.09 ) LPos=( -40.56, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -34.81, -1318.81, 1781.09 ) LPos=( -34.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -49.19, -1320.35, 1778.66 ) LPos=( -49.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, -1320.35, 1778.66 ) LPos=( -43.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, -1320.35, 1778.66 ) LPos=( -37.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1320.35, 1778.66 ) LPos=( -34.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, -1320.35, 1778.66 ) LPos=( -31.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, -1321.88, 1776.22 ) LPos=( -49.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -40.56, -1321.88, 1776.22 ) LPos=( -40.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1321.88, 1776.22 ) LPos=( -37.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, -1321.88, 1776.22 ) LPos=( -34.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1323.41, 1773.79 ) LPos=( -49.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -34.81, -1323.41, 1773.79 ) LPos=( -34.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -52.06, -1324.94, 1771.36 ) LPos=( -52.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -31.94, -1324.94, 1771.36 ) LPos=( -31.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1328.01, 1766.49 ) LPos=( -43.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -37.69, -1328.01, 1766.49 ) LPos=( -37.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -34.81, -1328.01, 1766.49 ) LPos=( -34.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -52.06, -1329.54, 1764.06 ) LPos=( -52.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, -1329.54, 1764.06 ) LPos=( -43.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -40.56, -1329.54, 1764.06 ) LPos=( -40.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, -1329.54, 1764.06 ) LPos=( -34.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -31.94, -1329.54, 1764.06 ) LPos=( -31.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -12.56, -1314.62, 1787.75 ) LPos=( -12.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -15.44, -1314.62, 1787.75 ) LPos=( -15.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -24.06, -1314.62, 1787.75 ) LPos=( -24.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -9.69, -1313.09, 1790.19 ) LPos=( -9.69, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -15.44, -1313.09, 1790.19 ) LPos=( -15.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -18.31, -1313.09, 1790.19 ) LPos=( -18.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, -1313.09, 1790.19 ) LPos=( -24.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -21.19, -1311.55, 1792.62 ) LPos=( -21.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -6.81, -1310.02, 1795.05 ) LPos=( -6.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -12.56, -1310.02, 1795.05 ) LPos=( -12.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -18.31, -1310.02, 1795.05 ) LPos=( -18.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -6.81, -1308.49, 1797.48 ) LPos=( -6.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1308.49, 1797.48 ) LPos=( -12.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -15.44, -1308.49, 1797.48 ) LPos=( -15.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -18.31, -1308.49, 1797.48 ) LPos=( -18.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -6.81, -1306.96, 1799.92 ) LPos=( -6.81, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -9.69, -1306.96, 1799.92 ) LPos=( -9.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -12.56, -1306.96, 1799.92 ) LPos=( -12.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3.94, -1305.43, 1802.35 ) LPos=( -3.94, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1305.43, 1802.35 ) LPos=( -6.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -9.69, -1305.43, 1802.35 ) LPos=( -9.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -15.44, -1305.43, 1802.35 ) LPos=( -15.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -6.81, -1303.89, 1804.78 ) LPos=( -6.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -24.06, -1326.47, 1768.92 ) LPos=( -24.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -24.06, -1321.88, 1776.22 ) LPos=( -24.06, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -21.19, -1324.94, 1771.36 ) LPos=( -21.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -21.19, -1323.41, 1773.79 ) LPos=( -21.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1320.35, 1778.66 ) LPos=( -21.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1318.81, 1781.09 ) LPos=( -21.19, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, -1329.54, 1764.06 ) LPos=( -18.31, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1326.47, 1768.92 ) LPos=( -18.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -18.31, -1324.94, 1771.36 ) LPos=( -18.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -18.31, -1323.41, 1773.79 ) LPos=( -18.31, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -18.31, -1320.35, 1778.66 ) LPos=( -18.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -15.44, -1323.41, 1773.79 ) LPos=( -15.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1318.81, 1781.09 ) LPos=( -15.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, -1321.88, 1776.22 ) LPos=( -12.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1329.54, 1764.06 ) LPos=( -9.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -9.69, -1328.01, 1766.49 ) LPos=( -9.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1328.01, 1766.49 ) LPos=( -6.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, -1326.47, 1768.92 ) LPos=( -3.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3.94, -1318.81, 1781.09 ) LPos=( -3.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 24.06, -1303.89, 1804.78 ) LPos=( 24.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 24.06, -1305.43, 1802.35 ) LPos=( 24.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 24.06, -1306.96, 1799.92 ) LPos=( 24.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, -1310.02, 1795.05 ) LPos=( 24.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 24.06, -1311.55, 1792.62 ) LPos=( 24.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 24.06, -1313.09, 1790.19 ) LPos=( 24.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 21.19, -1310.02, 1795.05 ) LPos=( 21.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 21.19, -1311.55, 1792.62 ) LPos=( 21.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, -1313.09, 1790.19 ) LPos=( 21.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 18.31, -1303.89, 1804.78 ) LPos=( 18.31, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 18.31, -1306.96, 1799.92 ) LPos=( 18.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, -1308.49, 1797.48 ) LPos=( 18.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, -1310.02, 1795.05 ) LPos=( 18.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, -1313.09, 1790.19 ) LPos=( 18.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 18.31, -1314.62, 1787.75 ) LPos=( 18.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 15.44, -1303.89, 1804.78 ) LPos=( 15.44, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 15.44, -1305.43, 1802.35 ) LPos=( 15.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, -1314.62, 1787.75 ) LPos=( 15.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 12.56, -1313.09, 1790.19 ) LPos=( 12.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, -1314.62, 1787.75 ) LPos=( 12.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 9.69, -1308.49, 1797.48 ) LPos=( 9.69, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 9.69, -1311.55, 1792.62 ) LPos=( 9.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 6.81, -1303.89, 1804.78 ) LPos=( 6.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 6.81, -1308.49, 1797.48 ) LPos=( 6.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, -1310.02, 1795.05 ) LPos=( 6.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 6.81, -1311.55, 1792.62 ) LPos=( 6.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3.94, -1306.96, 1799.92 ) LPos=( 3.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, -1318.81, 1781.09 ) LPos=( 9.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 18.31, -1318.81, 1781.09 ) LPos=( 18.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 21.19, -1318.81, 1781.09 ) LPos=( 21.19, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 24.06, -1318.81, 1781.09 ) LPos=( 24.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, -1320.35, 1778.66 ) LPos=( 6.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1320.35, 1778.66 ) LPos=( 18.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, -1320.35, 1778.66 ) LPos=( 21.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1321.88, 1776.22 ) LPos=( 6.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 18.31, -1321.88, 1776.22 ) LPos=( 18.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 21.19, -1321.88, 1776.22 ) LPos=( 21.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 9.69, -1323.41, 1773.79 ) LPos=( 9.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 24.06, -1323.41, 1773.79 ) LPos=( 24.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, -1324.94, 1771.36 ) LPos=( 6.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1324.94, 1771.36 ) LPos=( 12.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 18.31, -1324.94, 1771.36 ) LPos=( 18.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, -1324.94, 1771.36 ) LPos=( 21.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 24.06, -1324.94, 1771.36 ) LPos=( 24.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3.94, -1326.47, 1768.92 ) LPos=( 3.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, -1326.47, 1768.92 ) LPos=( 12.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, -1326.47, 1768.92 ) LPos=( 18.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 21.19, -1326.47, 1768.92 ) LPos=( 21.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 9.69, -1328.01, 1766.49 ) LPos=( 9.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, -1328.01, 1766.49 ) LPos=( 12.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, -1328.01, 1766.49 ) LPos=( 18.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 21.19, -1328.01, 1766.49 ) LPos=( 21.19, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1329.54, 1764.06 ) LPos=( 3.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 9.69, -1329.54, 1764.06 ) LPos=( 9.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 15.44, -1329.54, 1764.06 ) LPos=( 15.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 46.31, -1314.62, 1787.75 ) LPos=( 46.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 34.81, -1314.62, 1787.75 ) LPos=( 34.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 31.94, -1314.62, 1787.75 ) LPos=( 31.94, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, -1313.09, 1790.19 ) LPos=( 34.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 52.06, -1311.55, 1792.62 ) LPos=( 52.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 46.31, -1311.55, 1792.62 ) LPos=( 46.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1311.55, 1792.62 ) LPos=( 37.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 34.81, -1311.55, 1792.62 ) LPos=( 34.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 52.06, -1310.02, 1795.05 ) LPos=( 52.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, -1310.02, 1795.05 ) LPos=( 34.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1310.02, 1795.05 ) LPos=( 31.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 52.06, -1308.49, 1797.48 ) LPos=( 52.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, -1305.43, 1802.35 ) LPos=( 37.69, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 31.94, -1329.54, 1764.06 ) LPos=( 31.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 31.94, -1324.94, 1771.36 ) LPos=( 31.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 31.94, -1323.41, 1773.79 ) LPos=( 31.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 31.94, -1321.88, 1776.22 ) LPos=( 31.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, -1323.41, 1773.79 ) LPos=( 34.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 34.81, -1318.81, 1781.09 ) LPos=( 34.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 37.69, -1328.01, 1766.49 ) LPos=( 37.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 37.69, -1326.47, 1768.92 ) LPos=( 37.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 37.69, -1321.88, 1776.22 ) LPos=( 37.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 40.56, -1326.47, 1768.92 ) LPos=( 40.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 40.56, -1321.88, 1776.22 ) LPos=( 40.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 43.44, -1326.47, 1768.92 ) LPos=( 43.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1324.94, 1771.36 ) LPos=( 43.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 43.44, -1323.41, 1773.79 ) LPos=( 43.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 46.31, -1329.54, 1764.06 ) LPos=( 46.31, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 46.31, -1324.94, 1771.36 ) LPos=( 46.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 46.31, -1323.41, 1773.79 ) LPos=( 46.31, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 49.19, -1329.54, 1764.06 ) LPos=( 49.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, -1324.94, 1771.36 ) LPos=( 49.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 49.19, -1323.41, 1773.79 ) LPos=( 49.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 49.19, -1321.88, 1776.22 ) LPos=( 49.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 49.19, -1320.35, 1778.66 ) LPos=( 49.19, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, -1329.54, 1764.06 ) LPos=( 52.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, -1328.01, 1766.49 ) LPos=( 52.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 80.06, -1310.02, 1795.05 ) LPos=( 80.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1311.55, 1792.62 ) LPos=( 77.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 74.31, -1306.96, 1799.92 ) LPos=( 74.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 74.31, -1308.49, 1797.48 ) LPos=( 74.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 68.56, -1305.43, 1802.35 ) LPos=( 68.56, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, -1306.96, 1799.92 ) LPos=( 68.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 65.69, -1303.89, 1804.78 ) LPos=( 65.69, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 65.69, -1314.62, 1787.75 ) LPos=( 65.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 62.81, -1311.55, 1792.62 ) LPos=( 62.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 59.94, -1310.02, 1795.05 ) LPos=( 59.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 71.44, -1318.81, 1781.09 ) LPos=( 71.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1318.81, 1781.09 ) LPos=( 80.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 62.81, -1320.35, 1778.66 ) LPos=( 62.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 65.69, -1320.35, 1778.66 ) LPos=( 65.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 71.44, -1320.35, 1778.66 ) LPos=( 71.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 59.94, -1321.88, 1776.22 ) LPos=( 59.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, -1323.41, 1773.79 ) LPos=( 62.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 65.69, -1323.41, 1773.79 ) LPos=( 65.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1323.41, 1773.79 ) LPos=( 80.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 62.81, -1324.94, 1771.36 ) LPos=( 62.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, -1324.94, 1771.36 ) LPos=( 65.69, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 62.81, -1326.47, 1768.92 ) LPos=( 62.81, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 71.44, -1326.47, 1768.92 ) LPos=( 71.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 59.94, -1328.01, 1766.49 ) LPos=( 59.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 68.56, -1328.01, 1766.49 ) LPos=( 68.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 105.19, -1314.62, 1787.75 ) LPos=( 105.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, -1314.62, 1787.75 ) LPos=( 90.81, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, -1314.62, 1787.75 ) LPos=( 87.94, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 102.31, -1313.09, 1790.19 ) LPos=( 102.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 96.56, -1313.09, 1790.19 ) LPos=( 96.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 102.31, -1311.55, 1792.62 ) LPos=( 102.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 96.56, -1311.55, 1792.62 ) LPos=( 96.56, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 90.81, -1311.55, 1792.62 ) LPos=( 90.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1310.02, 1795.05 ) LPos=( 96.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 90.81, -1310.02, 1795.05 ) LPos=( 90.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 87.94, -1306.96, 1799.92 ) LPos=( 87.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, -1305.43, 1802.35 ) LPos=( 102.31, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 99.44, -1305.43, 1802.35 ) LPos=( 99.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1305.43, 1802.35 ) LPos=( 90.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, -1324.94, 1771.36 ) LPos=( 87.94, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 87.94, -1323.41, 1773.79 ) LPos=( 87.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 87.94, -1321.88, 1776.22 ) LPos=( 87.94, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 87.94, -1318.81, 1781.09 ) LPos=( 87.94, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 90.81, -1328.01, 1766.49 ) LPos=( 90.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1320.35, 1778.66 ) LPos=( 90.81, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 90.81, -1318.81, 1781.09 ) LPos=( 90.81, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 93.69, -1329.54, 1764.06 ) LPos=( 93.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, -1326.47, 1768.92 ) LPos=( 93.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 93.69, -1323.41, 1773.79 ) LPos=( 93.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 93.69, -1321.88, 1776.22 ) LPos=( 93.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 96.56, -1326.47, 1768.92 ) LPos=( 96.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 99.44, -1329.54, 1764.06 ) LPos=( 99.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 99.44, -1328.01, 1766.49 ) LPos=( 99.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1324.94, 1771.36 ) LPos=( 99.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, -1323.41, 1773.79 ) LPos=( 99.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 99.44, -1320.35, 1778.66 ) LPos=( 99.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 102.31, -1328.01, 1766.49 ) LPos=( 102.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 102.31, -1324.94, 1771.36 ) LPos=( 102.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 102.31, -1321.88, 1776.22 ) LPos=( 102.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 105.19, -1329.54, 1764.06 ) LPos=( 105.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 105.19, -1328.01, 1766.49 ) LPos=( 105.19, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 105.19, -1324.94, 1771.36 ) LPos=( 105.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 105.19, -1323.41, 1773.79 ) LPos=( 105.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 108.06, -1328.01, 1766.49 ) LPos=( 108.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 136.06, -1303.89, 1804.78 ) LPos=( 136.06, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, -1311.55, 1792.62 ) LPos=( 133.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, -1313.09, 1790.19 ) LPos=( 133.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 130.31, -1306.96, 1799.92 ) LPos=( 130.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1311.55, 1792.62 ) LPos=( 130.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 130.31, -1313.09, 1790.19 ) LPos=( 130.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 130.31, -1314.62, 1787.75 ) LPos=( 130.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 127.44, -1306.96, 1799.92 ) LPos=( 127.44, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 127.44, -1308.49, 1797.48 ) LPos=( 127.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 127.44, -1311.55, 1792.62 ) LPos=( 127.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, -1313.09, 1790.19 ) LPos=( 127.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 127.44, -1314.62, 1787.75 ) LPos=( 127.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 124.56, -1303.89, 1804.78 ) LPos=( 124.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 124.56, -1306.96, 1799.92 ) LPos=( 124.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 124.56, -1308.49, 1797.48 ) LPos=( 124.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 124.56, -1310.02, 1795.05 ) LPos=( 124.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1314.62, 1787.75 ) LPos=( 124.56, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, -1311.55, 1792.62 ) LPos=( 121.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1305.43, 1802.35 ) LPos=( 118.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 121.69, -1318.81, 1781.09 ) LPos=( 121.69, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 136.06, -1318.81, 1781.09 ) LPos=( 136.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 121.69, -1320.35, 1778.66 ) LPos=( 121.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 127.44, -1320.35, 1778.66 ) LPos=( 127.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, -1321.88, 1776.22 ) LPos=( 121.69, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 118.81, -1323.41, 1773.79 ) LPos=( 118.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1323.41, 1773.79 ) LPos=( 127.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 133.19, -1323.41, 1773.79 ) LPos=( 133.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 136.06, -1323.41, 1773.79 ) LPos=( 136.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 130.31, -1324.94, 1771.36 ) LPos=( 130.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 133.19, -1324.94, 1771.36 ) LPos=( 133.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1326.47, 1768.92 ) LPos=( 115.94, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 130.31, -1326.47, 1768.92 ) LPos=( 130.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, -1326.47, 1768.92 ) LPos=( 136.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 115.94, -1328.01, 1766.49 ) LPos=( 115.94, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1328.01, 1766.49 ) LPos=( 118.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 121.69, -1328.01, 1766.49 ) LPos=( 121.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 124.56, -1328.01, 1766.49 ) LPos=( 124.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 127.44, -1328.01, 1766.49 ) LPos=( 127.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 130.31, -1328.01, 1766.49 ) LPos=( 130.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 118.81, -1329.54, 1764.06 ) LPos=( 118.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 121.69, -1329.54, 1764.06 ) LPos=( 121.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 155.44, -1314.62, 1787.75 ) LPos=( 155.44, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 164.06, -1313.09, 1790.19 ) LPos=( 164.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 155.44, -1313.09, 1790.19 ) LPos=( 155.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 149.69, -1313.09, 1790.19 ) LPos=( 149.69, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 146.81, -1313.09, 1790.19 ) LPos=( 146.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 143.94, -1313.09, 1790.19 ) LPos=( 143.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 164.06, -1311.55, 1792.62 ) LPos=( 164.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1310.02, 1795.05 ) LPos=( 161.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 158.31, -1310.02, 1795.05 ) LPos=( 158.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 155.44, -1310.02, 1795.05 ) LPos=( 155.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1310.02, 1795.05 ) LPos=( 152.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 152.56, -1308.49, 1797.48 ) LPos=( 152.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 164.06, -1306.96, 1799.92 ) LPos=( 164.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, -1306.96, 1799.92 ) LPos=( 158.31, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 152.56, -1306.96, 1799.92 ) LPos=( 152.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 164.06, -1305.43, 1802.35 ) LPos=( 164.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 152.56, -1303.89, 1804.78 ) LPos=( 152.56, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 152.56, -1324.94, 1771.36 ) LPos=( 152.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, -1321.88, 1776.22 ) LPos=( 152.56, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1328.01, 1766.49 ) LPos=( 155.44, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 155.44, -1324.94, 1771.36 ) LPos=( 155.44, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, -1323.41, 1773.79 ) LPos=( 155.44, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 155.44, -1320.35, 1778.66 ) LPos=( 155.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 155.44, -1318.81, 1781.09 ) LPos=( 155.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 158.31, -1326.47, 1768.92 ) LPos=( 158.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 158.31, -1324.94, 1771.36 ) LPos=( 158.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 161.19, -1326.47, 1768.92 ) LPos=( 161.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 164.06, -1320.35, 1778.66 ) LPos=( 164.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 192.06, -1310.02, 1795.05 ) LPos=( 192.06, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 192.06, -1313.09, 1790.19 ) LPos=( 192.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 189.19, -1305.43, 1802.35 ) LPos=( 189.19, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 189.19, -1311.55, 1792.62 ) LPos=( 189.19, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 186.31, -1310.02, 1795.05 ) LPos=( 186.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 186.31, -1311.55, 1792.62 ) LPos=( 186.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 183.44, -1311.55, 1792.62 ) LPos=( 183.44, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 183.44, -1313.09, 1790.19 ) LPos=( 183.44, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, -1305.43, 1802.35 ) LPos=( 174.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 180.56, -1320.35, 1778.66 ) LPos=( 180.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 192.06, -1321.88, 1776.22 ) LPos=( 192.06, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 192.06, -1324.94, 1771.36 ) LPos=( 192.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 192.06, -1326.47, 1768.92 ) LPos=( 192.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 177.69, -1328.01, 1766.49 ) LPos=( 177.69, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 180.56, -1328.01, 1766.49 ) LPos=( 180.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 171.94, -1329.54, 1764.06 ) LPos=( 171.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1314.62, 1787.75 ) LPos=( 217.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 214.31, -1314.62, 1787.75 ) LPos=( 214.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 214.31, -1313.09, 1790.19 ) LPos=( 214.31, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 208.56, -1313.09, 1790.19 ) LPos=( 208.56, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 214.31, -1310.02, 1795.05 ) LPos=( 214.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 202.81, -1310.02, 1795.05 ) LPos=( 202.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 202.81, -1306.96, 1799.92 ) LPos=( 202.81, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 211.44, -1303.89, 1804.78 ) LPos=( 211.44, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1323.41, 1773.79 ) LPos=( 202.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 211.44, -1318.81, 1781.09 ) LPos=( 211.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1314.62, 1787.75 ) LPos=( 248.06, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 245.19, -1310.02, 1795.05 ) LPos=( 245.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 233.69, -1314.62, 1787.75 ) LPos=( 233.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 233.69, -1320.35, 1778.66 ) LPos=( 233.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 239.44, -1320.35, 1778.66 ) LPos=( 239.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 239.44, -1321.88, 1776.22 ) LPos=( 239.44, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 230.81, -1328.01, 1766.49 ) LPos=( 230.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 236.56, -1328.01, 1766.49 ) LPos=( 236.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 261.69, -1314.62, 1787.75 ) LPos=( 261.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 261.69, -1310.02, 1795.05 ) LPos=( 261.69, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 255.94, -1310.02, 1795.05 ) LPos=( 255.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 264.56, -1308.49, 1797.48 ) LPos=( 264.56, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 273.19, -1306.96, 1799.92 ) LPos=( 273.19, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 267.44, -1306.96, 1799.92 ) LPos=( 267.44, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 264.56, -1306.96, 1799.92 ) LPos=( 264.56, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 267.44, -1305.43, 1802.35 ) LPos=( 267.44, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 264.56, -1305.43, 1802.35 ) LPos=( 264.56, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 255.94, -1323.41, 1773.79 ) LPos=( 255.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 255.94, -1320.35, 1778.66 ) LPos=( 255.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 258.81, -1329.54, 1764.06 ) LPos=( 258.81, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 264.56, -1328.01, 1766.49 ) LPos=( 264.56, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 264.56, -1326.47, 1768.92 ) LPos=( 264.56, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 264.56, -1324.94, 1771.36 ) LPos=( 264.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 264.56, -1323.41, 1773.79 ) LPos=( 264.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 276.06, -1326.47, 1768.92 ) LPos=( 276.06, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 304.06, -1308.49, 1797.48 ) LPos=( 304.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 304.06, -1313.09, 1790.19 ) LPos=( 304.06, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 295.44, -1303.89, 1804.78 ) LPos=( 295.44, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 292.56, -1311.55, 1792.62 ) LPos=( 292.56, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 289.69, -1303.89, 1804.78 ) LPos=( 289.69, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, -1306.96, 1799.92 ) LPos=( 289.69, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 289.69, -1311.55, 1792.62 ) LPos=( 289.69, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 286.81, -1310.02, 1795.05 ) LPos=( 286.81, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 286.81, -1313.09, 1790.19 ) LPos=( 286.81, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 283.94, -1310.02, 1795.05 ) LPos=( 283.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 292.56, -1324.94, 1771.36 ) LPos=( 292.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 298.31, -1324.94, 1771.36 ) LPos=( 298.31, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 304.06, -1324.94, 1771.36 ) LPos=( 304.06, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 295.44, -1326.47, 1768.92 ) LPos=( 295.44, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 329.19, -1314.62, 1787.75 ) LPos=( 329.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 326.31, -1314.62, 1787.75 ) LPos=( 326.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 317.69, -1314.62, 1787.75 ) LPos=( 317.69, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 332.06, -1308.49, 1797.48 ) LPos=( 332.06, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 329.19, -1308.49, 1797.48 ) LPos=( 329.19, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 311.94, -1320.35, 1778.66 ) LPos=( 311.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 314.81, -1324.94, 1771.36 ) LPos=( 314.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 314.81, -1321.88, 1776.22 ) LPos=( 314.81, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 317.69, -1323.41, 1773.79 ) LPos=( 317.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 320.56, -1323.41, 1773.79 ) LPos=( 320.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 323.44, -1318.81, 1781.09 ) LPos=( 323.44, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 326.31, -1321.88, 1776.22 ) LPos=( 326.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1329.54, 1764.06 ) LPos=( 332.06, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 332.06, -1323.41, 1773.79 ) LPos=( 332.06, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 360.06, -1311.55, 1792.62 ) LPos=( 360.06, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 357.19, -1310.02, 1795.05 ) LPos=( 357.19, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 354.31, -1303.89, 1804.78 ) LPos=( 354.31, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1305.43, 1802.35 ) LPos=( 342.81, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 339.94, -1306.96, 1799.92 ) LPos=( 339.94, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 339.94, -1310.02, 1795.05 ) LPos=( 339.94, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 339.94, -1313.09, 1790.19 ) LPos=( 339.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 354.31, -1318.81, 1781.09 ) LPos=( 354.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 351.44, -1320.35, 1778.66 ) LPos=( 351.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 348.56, -1323.41, 1773.79 ) LPos=( 348.56, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 354.31, -1323.41, 1773.79 ) LPos=( 354.31, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 357.19, -1323.41, 1773.79 ) LPos=( 357.19, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 348.56, -1324.94, 1771.36 ) LPos=( 348.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 357.19, -1324.94, 1771.36 ) LPos=( 357.19, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 342.81, -1328.01, 1766.49 ) LPos=( 342.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 360.06, -1328.01, 1766.49 ) LPos=( 360.06, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 348.56, -1329.54, 1764.06 ) LPos=( 348.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 385.19, -1314.62, 1787.75 ) LPos=( 385.19, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 385.19, -1308.49, 1797.48 ) LPos=( 385.19, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 367.94, -1303.89, 1804.78 ) LPos=( 367.94, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 367.94, -1329.54, 1764.06 ) LPos=( 367.94, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 367.94, -1323.41, 1773.79 ) LPos=( 367.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 367.94, -1320.35, 1778.66 ) LPos=( 367.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 373.69, -1323.41, 1773.79 ) LPos=( 373.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 373.69, -1320.35, 1778.66 ) LPos=( 373.69, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 376.56, -1324.94, 1771.36 ) LPos=( 376.56, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 376.56, -1320.35, 1778.66 ) LPos=( 376.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 379.44, -1320.35, 1778.66 ) LPos=( 379.44, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 382.31, -1326.47, 1768.92 ) LPos=( 382.31, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 382.31, -1321.88, 1776.22 ) LPos=( 382.31, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 382.31, -1320.35, 1778.66 ) LPos=( 382.31, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 382.31, -1318.81, 1781.09 ) LPos=( 382.31, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 388.06, -1318.81, 1781.09 ) LPos=( 388.06, -145.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 416.06, -1306.96, 1799.92 ) LPos=( 416.06, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 410.31, -1310.02, 1795.05 ) LPos=( 410.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 401.69, -1310.02, 1795.05 ) LPos=( 401.69, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 398.81, -1303.89, 1804.78 ) LPos=( 398.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 398.81, -1308.49, 1797.48 ) LPos=( 398.81, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 416.06, -1320.35, 1778.66 ) LPos=( 416.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 395.94, -1323.41, 1773.79 ) LPos=( 395.94, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 398.81, -1323.41, 1773.79 ) LPos=( 398.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 413.19, -1326.47, 1768.92 ) LPos=( 413.19, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 410.31, -1328.01, 1766.49 ) LPos=( 410.31, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 401.69, -1329.54, 1764.06 ) LPos=( 401.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 404.56, -1329.54, 1764.06 ) LPos=( 404.56, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 407.44, -1329.54, 1764.06 ) LPos=( 407.44, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 413.19, -1329.54, 1764.06 ) LPos=( 413.19, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 438.31, -1311.55, 1792.62 ) LPos=( 438.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 426.81, -1328.01, 1766.49 ) LPos=( 426.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 426.81, -1324.94, 1771.36 ) LPos=( 426.81, -156.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 466.31, -1314.62, 1787.75 ) LPos=( 466.31, -137.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 451.94, -1313.09, 1790.19 ) LPos=( 451.94, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 451.94, -1320.35, 1778.66 ) LPos=( 451.94, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 472.06, -1320.35, 1778.66 ) LPos=( 472.06, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 469.19, -1321.88, 1776.22 ) LPos=( 469.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 454.81, -1323.41, 1773.79 ) LPos=( 454.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 454.81, -1328.01, 1766.49 ) LPos=( 454.81, -162.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 494.31, -1310.02, 1795.05 ) LPos=( 494.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 482.81, -1306.96, 1799.92 ) LPos=( 482.81, -122.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 500.06, -1305.43, 1802.35 ) LPos=( 500.06, -120.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 482.81, -1303.89, 1804.78 ) LPos=( 482.81, -117.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 485.69, -1323.41, 1773.79 ) LPos=( 485.69, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 510.81, -1311.55, 1792.62 ) LPos=( 510.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 550.31, -1310.02, 1795.05 ) LPos=( 550.31, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 544.56, -1310.02, 1795.05 ) LPos=( 544.56, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 547.44, -1308.49, 1797.48 ) LPos=( 547.44, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 538.81, -1323.41, 1773.79 ) LPos=( 538.81, -153.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 541.69, -1329.54, 1764.06 ) LPos=( 541.69, -165.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 541.69, -1326.47, 1768.92 ) LPos=( 541.69, -159.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 544.56, -1320.35, 1778.66 ) LPos=( 544.56, -148.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 553.19, -1321.88, 1776.22 ) LPos=( 553.19, -150.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 581.19, -1313.09, 1790.19 ) LPos=( 581.19, -134.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 578.31, -1308.49, 1797.48 ) LPos=( 578.31, -125.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 575.44, -1310.02, 1795.05 ) LPos=( 575.44, -128.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 606.31, -1311.55, 1792.62 ) LPos=( 606.31, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 594.81, -1311.55, 1792.62 ) LPos=( 594.81, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 591.94, -1311.55, 1792.62 ) LPos=( 591.94, -131.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -566.81, -1273.79, 1852.59 ) LPos=( -566.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -584.06, -1273.79, 1852.59 ) LPos=( -584.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -513.69, -1284.51, 1835.56 ) LPos=( -513.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -460.56, -1279.91, 1842.86 ) LPos=( -460.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:120,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -457.69, -1299.43, 1811.87 ) LPos=( -457.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -429.69, -1279.91, 1842.86 ) LPos=( -429.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -444.06, -1276.85, 1847.73 ) LPos=( -444.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -438.31, -1293.30, 1821.60 ) LPos=( -438.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -432.56, -1299.43, 1811.87 ) LPos=( -432.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -404.56, -1278.38, 1845.29 ) LPos=( -404.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -401.69, -1273.79, 1852.59 ) LPos=( -401.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -388.06, -1291.77, 1824.03 ) LPos=( -388.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -354.31, -1299.43, 1811.87 ) LPos=( -354.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -323.44, -1284.51, 1835.56 ) LPos=( -323.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -295.44, -1273.79, 1852.59 ) LPos=( -295.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -258.81, -1273.79, 1852.59 ) LPos=( -258.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -261.69, -1279.91, 1842.86 ) LPos=( -261.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -264.56, -1279.91, 1842.86 ) LPos=( -264.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -270.31, -1276.85, 1847.73 ) LPos=( -270.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -276.06, -1275.32, 1850.16 ) LPos=( -276.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -273.19, -1291.77, 1824.03 ) LPos=( -273.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -276.06, -1294.83, 1819.17 ) LPos=( -276.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -261.69, -1299.43, 1811.87 ) LPos=( -261.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -245.19, -1284.51, 1835.56 ) LPos=( -245.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -248.06, -1284.51, 1835.56 ) LPos=( -248.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -227.94, -1279.91, 1842.86 ) LPos=( -227.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -227.94, -1276.85, 1847.73 ) LPos=( -227.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -242.31, -1276.85, 1847.73 ) LPos=( -242.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -236.56, -1275.32, 1850.16 ) LPos=( -236.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -245.19, -1275.32, 1850.16 ) LPos=( -245.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -239.44, -1273.79, 1852.59 ) LPos=( -239.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -242.31, -1273.79, 1852.59 ) LPos=( -242.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -245.19, -1273.79, 1852.59 ) LPos=( -245.19, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -248.06, -1273.79, 1852.59 ) LPos=( -248.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -242.31, -1299.43, 1811.87 ) LPos=( -242.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -239.44, -1299.43, 1811.87 ) LPos=( -239.44, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -236.56, -1299.43, 1811.87 ) LPos=( -236.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -236.56, -1293.30, 1821.60 ) LPos=( -236.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -233.69, -1299.43, 1811.87 ) LPos=( -233.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -233.69, -1297.90, 1814.30 ) LPos=( -233.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -230.81, -1293.30, 1821.60 ) LPos=( -230.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -227.94, -1299.43, 1811.87 ) LPos=( -227.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -227.94, -1297.90, 1814.30 ) LPos=( -227.94, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -227.94, -1294.83, 1819.17 ) LPos=( -227.94, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -227.94, -1291.77, 1824.03 ) LPos=( -227.94, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -199.94, -1276.85, 1847.73 ) LPos=( -199.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -202.81, -1281.45, 1840.43 ) LPos=( -202.81, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -205.69, -1281.45, 1840.43 ) LPos=( -205.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -211.44, -1279.91, 1842.86 ) LPos=( -211.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -211.44, -1284.51, 1835.56 ) LPos=( -211.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -214.31, -1288.71, 1828.90 ) LPos=( -214.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -211.44, -1288.71, 1828.90 ) LPos=( -211.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -205.69, -1288.71, 1828.90 ) LPos=( -205.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -214.31, -1290.24, 1826.47 ) LPos=( -214.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -217.19, -1291.77, 1824.03 ) LPos=( -217.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -214.31, -1291.77, 1824.03 ) LPos=( -214.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -211.44, -1294.83, 1819.17 ) LPos=( -211.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -202.81, -1294.83, 1819.17 ) LPos=( -202.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -202.81, -1296.37, 1816.73 ) LPos=( -202.81, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -199.94, -1296.37, 1816.73 ) LPos=( -199.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -202.81, -1297.90, 1814.30 ) LPos=( -202.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -217.19, -1299.43, 1811.87 ) LPos=( -217.19, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -189.19, -1284.51, 1835.56 ) LPos=( -189.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -192.06, -1284.51, 1835.56 ) LPos=( -192.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -183.44, -1282.98, 1838.00 ) LPos=( -183.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -189.19, -1282.98, 1838.00 ) LPos=( -189.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -183.44, -1281.45, 1840.43 ) LPos=( -183.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, -1279.91, 1842.86 ) LPos=( -183.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1278.38, 1845.29 ) LPos=( -180.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -186.31, -1278.38, 1845.29 ) LPos=( -186.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -192.06, -1278.38, 1845.29 ) LPos=( -192.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -177.69, -1275.32, 1850.16 ) LPos=( -177.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -192.06, -1299.43, 1811.87 ) LPos=( -192.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1293.30, 1821.60 ) LPos=( -189.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -189.19, -1288.71, 1828.90 ) LPos=( -189.19, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -186.31, -1297.90, 1814.30 ) LPos=( -186.31, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -186.31, -1296.37, 1816.73 ) LPos=( -186.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -186.31, -1294.83, 1819.17 ) LPos=( -186.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, -1293.30, 1821.60 ) LPos=( -186.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -186.31, -1290.24, 1826.47 ) LPos=( -186.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -183.44, -1299.43, 1811.87 ) LPos=( -183.44, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -183.44, -1294.83, 1819.17 ) LPos=( -183.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, -1293.30, 1821.60 ) LPos=( -183.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -183.44, -1290.24, 1826.47 ) LPos=( -183.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -180.56, -1296.37, 1816.73 ) LPos=( -180.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1294.83, 1819.17 ) LPos=( -180.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -180.56, -1293.30, 1821.60 ) LPos=( -180.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -180.56, -1291.77, 1824.03 ) LPos=( -180.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -177.69, -1297.90, 1814.30 ) LPos=( -177.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -174.81, -1297.90, 1814.30 ) LPos=( -174.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -171.94, -1296.37, 1816.73 ) LPos=( -171.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -171.94, -1294.83, 1819.17 ) LPos=( -171.94, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -143.94, -1281.45, 1840.43 ) LPos=( -143.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -143.94, -1282.98, 1838.00 ) LPos=( -143.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, -1284.51, 1835.56 ) LPos=( -143.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -149.69, -1275.32, 1850.16 ) LPos=( -149.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -149.69, -1282.98, 1838.00 ) LPos=( -149.69, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -152.56, -1273.79, 1852.59 ) LPos=( -152.56, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -152.56, -1282.98, 1838.00 ) LPos=( -152.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -155.44, -1279.91, 1842.86 ) LPos=( -155.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -155.44, -1281.45, 1840.43 ) LPos=( -155.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -155.44, -1284.51, 1835.56 ) LPos=( -155.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -158.31, -1275.32, 1850.16 ) LPos=( -158.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -158.31, -1276.85, 1847.73 ) LPos=( -158.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -158.31, -1281.45, 1840.43 ) LPos=( -158.31, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -158.31, -1282.98, 1838.00 ) LPos=( -158.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -161.19, -1273.79, 1852.59 ) LPos=( -161.19, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -161.19, -1282.98, 1838.00 ) LPos=( -161.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -161.19, -1284.51, 1835.56 ) LPos=( -161.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -164.06, -1278.38, 1845.29 ) LPos=( -164.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -164.06, -1279.91, 1842.86 ) LPos=( -164.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -164.06, -1288.71, 1828.90 ) LPos=( -164.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -155.44, -1288.71, 1828.90 ) LPos=( -155.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -149.69, -1288.71, 1828.90 ) LPos=( -149.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -146.81, -1288.71, 1828.90 ) LPos=( -146.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -143.94, -1288.71, 1828.90 ) LPos=( -143.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -164.06, -1290.24, 1826.47 ) LPos=( -164.06, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -161.19, -1290.24, 1826.47 ) LPos=( -161.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -158.31, -1290.24, 1826.47 ) LPos=( -158.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -155.44, -1290.24, 1826.47 ) LPos=( -155.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -161.19, -1291.77, 1824.03 ) LPos=( -161.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -158.31, -1291.77, 1824.03 ) LPos=( -158.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -149.69, -1291.77, 1824.03 ) LPos=( -149.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, -1291.77, 1824.03 ) LPos=( -146.81, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -161.19, -1293.30, 1821.60 ) LPos=( -161.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -161.19, -1294.83, 1819.17 ) LPos=( -161.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -155.44, -1294.83, 1819.17 ) LPos=( -155.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -152.56, -1294.83, 1819.17 ) LPos=( -152.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -155.44, -1296.37, 1816.73 ) LPos=( -155.44, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -155.44, -1297.90, 1814.30 ) LPos=( -155.44, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -149.69, -1297.90, 1814.30 ) LPos=( -149.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -152.56, -1299.43, 1811.87 ) LPos=( -152.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1284.51, 1835.56 ) LPos=( -121.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -124.56, -1284.51, 1835.56 ) LPos=( -124.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -127.44, -1284.51, 1835.56 ) LPos=( -127.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -130.31, -1284.51, 1835.56 ) LPos=( -130.31, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1284.51, 1835.56 ) LPos=( -133.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -115.94, -1282.98, 1838.00 ) LPos=( -115.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, -1282.98, 1838.00 ) LPos=( -118.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -136.06, -1282.98, 1838.00 ) LPos=( -136.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -115.94, -1281.45, 1840.43 ) LPos=( -115.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -133.19, -1281.45, 1840.43 ) LPos=( -133.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -115.94, -1279.91, 1842.86 ) LPos=( -115.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -118.81, -1279.91, 1842.86 ) LPos=( -118.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -124.56, -1279.91, 1842.86 ) LPos=( -124.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, -1279.91, 1842.86 ) LPos=( -127.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -133.19, -1279.91, 1842.86 ) LPos=( -133.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -127.44, -1276.85, 1847.73 ) LPos=( -127.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -121.69, -1275.32, 1850.16 ) LPos=( -121.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -124.56, -1275.32, 1850.16 ) LPos=( -124.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, -1275.32, 1850.16 ) LPos=( -130.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -133.19, -1275.32, 1850.16 ) LPos=( -133.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -136.06, -1294.83, 1819.17 ) LPos=( -136.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -136.06, -1291.77, 1824.03 ) LPos=( -136.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1290.24, 1826.47 ) LPos=( -133.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -121.69, -1291.77, 1824.03 ) LPos=( -121.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -118.81, -1288.71, 1828.90 ) LPos=( -118.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -115.94, -1288.71, 1828.90 ) LPos=( -115.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -87.94, -1279.91, 1842.86 ) LPos=( -87.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, -1278.38, 1845.29 ) LPos=( -93.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -93.69, -1279.91, 1842.86 ) LPos=( -93.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -93.69, -1281.45, 1840.43 ) LPos=( -93.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -99.44, -1284.51, 1835.56 ) LPos=( -99.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1276.85, 1847.73 ) LPos=( -102.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, -1281.45, 1840.43 ) LPos=( -102.31, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -105.19, -1281.45, 1840.43 ) LPos=( -105.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -108.06, -1276.85, 1847.73 ) LPos=( -108.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, -1279.91, 1842.86 ) LPos=( -108.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -108.06, -1281.45, 1840.43 ) LPos=( -108.06, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -102.31, -1288.71, 1828.90 ) LPos=( -102.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -105.19, -1290.24, 1826.47 ) LPos=( -105.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -99.44, -1290.24, 1826.47 ) LPos=( -99.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -96.56, -1290.24, 1826.47 ) LPos=( -96.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -93.69, -1290.24, 1826.47 ) LPos=( -93.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, -1291.77, 1824.03 ) LPos=( -99.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -87.94, -1291.77, 1824.03 ) LPos=( -87.94, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -90.81, -1293.30, 1821.60 ) LPos=( -90.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -102.31, -1294.83, 1819.17 ) LPos=( -102.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -99.44, -1294.83, 1819.17 ) LPos=( -99.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -90.81, -1294.83, 1819.17 ) LPos=( -90.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -87.94, -1294.83, 1819.17 ) LPos=( -87.94, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -102.31, -1296.37, 1816.73 ) LPos=( -102.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -96.56, -1296.37, 1816.73 ) LPos=( -96.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -93.69, -1296.37, 1816.73 ) LPos=( -93.69, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -90.81, -1296.37, 1816.73 ) LPos=( -90.81, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -96.56, -1297.90, 1814.30 ) LPos=( -96.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -93.69, -1297.90, 1814.30 ) LPos=( -93.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -87.94, -1299.43, 1811.87 ) LPos=( -87.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -71.44, -1284.51, 1835.56 ) LPos=( -71.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -77.19, -1284.51, 1835.56 ) LPos=( -77.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1284.51, 1835.56 ) LPos=( -80.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -65.69, -1282.98, 1838.00 ) LPos=( -65.69, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -71.44, -1282.98, 1838.00 ) LPos=( -71.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -74.31, -1282.98, 1838.00 ) LPos=( -74.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, -1282.98, 1838.00 ) LPos=( -77.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -80.06, -1282.98, 1838.00 ) LPos=( -80.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -80.06, -1281.45, 1840.43 ) LPos=( -80.06, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -65.69, -1279.91, 1842.86 ) LPos=( -65.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -62.81, -1278.38, 1845.29 ) LPos=( -62.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -65.69, -1278.38, 1845.29 ) LPos=( -65.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -68.56, -1278.38, 1845.29 ) LPos=( -68.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -77.19, -1278.38, 1845.29 ) LPos=( -77.19, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1278.38, 1845.29 ) LPos=( -80.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -62.81, -1276.85, 1847.73 ) LPos=( -62.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -65.69, -1273.79, 1852.59 ) LPos=( -65.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -68.56, -1273.79, 1852.59 ) LPos=( -68.56, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -71.44, -1273.79, 1852.59 ) LPos=( -71.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -74.31, -1273.79, 1852.59 ) LPos=( -74.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -80.06, -1288.71, 1828.90 ) LPos=( -80.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -77.19, -1291.77, 1824.03 ) LPos=( -77.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -77.19, -1290.24, 1826.47 ) LPos=( -77.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -74.31, -1296.37, 1816.73 ) LPos=( -74.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -74.31, -1294.83, 1819.17 ) LPos=( -74.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -74.31, -1291.77, 1824.03 ) LPos=( -74.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -74.31, -1288.71, 1828.90 ) LPos=( -74.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -71.44, -1296.37, 1816.73 ) LPos=( -71.44, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -71.44, -1293.30, 1821.60 ) LPos=( -71.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -71.44, -1291.77, 1824.03 ) LPos=( -71.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -71.44, -1290.24, 1826.47 ) LPos=( -71.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -68.56, -1296.37, 1816.73 ) LPos=( -68.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -68.56, -1291.77, 1824.03 ) LPos=( -68.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -65.69, -1290.24, 1826.47 ) LPos=( -65.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -62.81, -1299.43, 1811.87 ) LPos=( -62.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -62.81, -1291.77, 1824.03 ) LPos=( -62.81, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -59.94, -1299.43, 1811.87 ) LPos=( -59.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -59.94, -1290.24, 1826.47 ) LPos=( -59.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -59.94, -1288.71, 1828.90 ) LPos=( -59.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -31.94, -1278.38, 1845.29 ) LPos=( -31.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -31.94, -1282.98, 1838.00 ) LPos=( -31.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -31.94, -1284.51, 1835.56 ) LPos=( -31.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -34.81, -1273.79, 1852.59 ) LPos=( -34.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -34.81, -1275.32, 1850.16 ) LPos=( -34.81, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -34.81, -1279.91, 1842.86 ) LPos=( -34.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -34.81, -1281.45, 1840.43 ) LPos=( -34.81, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -34.81, -1282.98, 1838.00 ) LPos=( -34.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -34.81, -1284.51, 1835.56 ) LPos=( -34.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -37.69, -1273.79, 1852.59 ) LPos=( -37.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -37.69, -1275.32, 1850.16 ) LPos=( -37.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -37.69, -1276.85, 1847.73 ) LPos=( -37.69, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -37.69, -1279.91, 1842.86 ) LPos=( -37.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -40.56, -1281.45, 1840.43 ) LPos=( -40.56, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -43.44, -1273.79, 1852.59 ) LPos=( -43.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -43.44, -1275.32, 1850.16 ) LPos=( -43.44, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -43.44, -1276.85, 1847.73 ) LPos=( -43.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -43.44, -1281.45, 1840.43 ) LPos=( -43.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -46.31, -1273.79, 1852.59 ) LPos=( -46.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -46.31, -1281.45, 1840.43 ) LPos=( -46.31, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -49.19, -1281.45, 1840.43 ) LPos=( -49.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -52.06, -1275.32, 1850.16 ) LPos=( -52.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -52.06, -1284.51, 1835.56 ) LPos=( -52.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -37.69, -1290.24, 1826.47 ) LPos=( -37.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -31.94, -1290.24, 1826.47 ) LPos=( -31.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -49.19, -1291.77, 1824.03 ) LPos=( -49.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -43.44, -1291.77, 1824.03 ) LPos=( -43.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -40.56, -1291.77, 1824.03 ) LPos=( -40.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -37.69, -1291.77, 1824.03 ) LPos=( -37.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -52.06, -1293.30, 1821.60 ) LPos=( -52.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -49.19, -1293.30, 1821.60 ) LPos=( -49.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -43.44, -1293.30, 1821.60 ) LPos=( -43.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -34.81, -1293.30, 1821.60 ) LPos=( -34.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -46.31, -1294.83, 1819.17 ) LPos=( -46.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -46.31, -1296.37, 1816.73 ) LPos=( -46.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -43.44, -1296.37, 1816.73 ) LPos=( -43.44, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -31.94, -1296.37, 1816.73 ) LPos=( -31.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -43.44, -1297.90, 1814.30 ) LPos=( -43.44, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -31.94, -1297.90, 1814.30 ) LPos=( -31.94, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -37.69, -1299.43, 1811.87 ) LPos=( -37.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -34.81, -1299.43, 1811.87 ) LPos=( -34.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -9.69, -1284.51, 1835.56 ) LPos=( -9.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -12.56, -1282.98, 1838.00 ) LPos=( -12.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -24.06, -1282.98, 1838.00 ) LPos=( -24.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -15.44, -1281.45, 1840.43 ) LPos=( -15.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -9.69, -1279.91, 1842.86 ) LPos=( -9.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -21.19, -1279.91, 1842.86 ) LPos=( -21.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -24.06, -1278.38, 1845.29 ) LPos=( -24.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -24.06, -1276.85, 1847.73 ) LPos=( -24.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -24.06, -1273.79, 1852.59 ) LPos=( -24.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -24.06, -1294.83, 1819.17 ) LPos=( -24.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, -1293.30, 1821.60 ) LPos=( -24.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -21.19, -1294.83, 1819.17 ) LPos=( -21.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -21.19, -1293.30, 1821.60 ) LPos=( -21.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -21.19, -1290.24, 1826.47 ) LPos=( -21.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -21.19, -1288.71, 1828.90 ) LPos=( -21.19, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -12.56, -1299.43, 1811.87 ) LPos=( -12.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -12.56, -1297.90, 1814.30 ) LPos=( -12.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -12.56, -1296.37, 1816.73 ) LPos=( -12.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -12.56, -1290.24, 1826.47 ) LPos=( -12.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -9.69, -1299.43, 1811.87 ) LPos=( -9.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -6.81, -1297.90, 1814.30 ) LPos=( -6.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -6.81, -1293.30, 1821.60 ) LPos=( -6.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3.94, -1296.37, 1816.73 ) LPos=( -3.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, -1278.38, 1845.29 ) LPos=( 24.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 21.19, -1275.32, 1850.16 ) LPos=( 21.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 21.19, -1276.85, 1847.73 ) LPos=( 21.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 18.31, -1278.38, 1845.29 ) LPos=( 18.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 18.31, -1282.98, 1838.00 ) LPos=( 18.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 15.44, -1276.85, 1847.73 ) LPos=( 15.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 15.44, -1278.38, 1845.29 ) LPos=( 15.44, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 15.44, -1284.51, 1835.56 ) LPos=( 15.44, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 12.56, -1275.32, 1850.16 ) LPos=( 12.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1278.38, 1845.29 ) LPos=( 12.56, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 12.56, -1279.91, 1842.86 ) LPos=( 12.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 12.56, -1282.98, 1838.00 ) LPos=( 12.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 12.56, -1284.51, 1835.56 ) LPos=( 12.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 9.69, -1273.79, 1852.59 ) LPos=( 9.69, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 6.81, -1278.38, 1845.29 ) LPos=( 6.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 6.81, -1279.91, 1842.86 ) LPos=( 6.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 6.81, -1284.51, 1835.56 ) LPos=( 6.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1273.79, 1852.59 ) LPos=( 3.94, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3.94, -1284.51, 1835.56 ) LPos=( 3.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 6.81, -1288.71, 1828.90 ) LPos=( 6.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 9.69, -1288.71, 1828.90 ) LPos=( 9.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 15.44, -1288.71, 1828.90 ) LPos=( 15.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, -1290.24, 1826.47 ) LPos=( 3.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 9.69, -1290.24, 1826.47 ) LPos=( 9.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 15.44, -1290.24, 1826.47 ) LPos=( 15.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1290.24, 1826.47 ) LPos=( 18.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 21.19, -1290.24, 1826.47 ) LPos=( 21.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1291.77, 1824.03 ) LPos=( 6.81, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 12.56, -1291.77, 1824.03 ) LPos=( 12.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 15.44, -1291.77, 1824.03 ) LPos=( 15.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 24.06, -1291.77, 1824.03 ) LPos=( 24.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 6.81, -1293.30, 1821.60 ) LPos=( 6.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 18.31, -1293.30, 1821.60 ) LPos=( 18.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 6.81, -1294.83, 1819.17 ) LPos=( 6.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 12.56, -1294.83, 1819.17 ) LPos=( 12.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 18.31, -1294.83, 1819.17 ) LPos=( 18.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 21.19, -1294.83, 1819.17 ) LPos=( 21.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 12.56, -1296.37, 1816.73 ) LPos=( 12.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, -1296.37, 1816.73 ) LPos=( 18.31, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, -1296.37, 1816.73 ) LPos=( 24.06, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 9.69, -1297.90, 1814.30 ) LPos=( 9.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 12.56, -1297.90, 1814.30 ) LPos=( 12.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 18.31, -1297.90, 1814.30 ) LPos=( 18.31, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3.94, -1299.43, 1811.87 ) LPos=( 3.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 6.81, -1299.43, 1811.87 ) LPos=( 6.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 12.56, -1299.43, 1811.87 ) LPos=( 12.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 34.81, -1282.98, 1838.00 ) LPos=( 34.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 31.94, -1281.45, 1840.43 ) LPos=( 31.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 34.81, -1279.91, 1842.86 ) LPos=( 34.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 31.94, -1279.91, 1842.86 ) LPos=( 31.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 46.31, -1278.38, 1845.29 ) LPos=( 46.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 43.44, -1278.38, 1845.29 ) LPos=( 43.44, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 37.69, -1278.38, 1845.29 ) LPos=( 37.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 34.81, -1278.38, 1845.29 ) LPos=( 34.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 31.94, -1278.38, 1845.29 ) LPos=( 31.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 37.69, -1276.85, 1847.73 ) LPos=( 37.69, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 34.81, -1276.85, 1847.73 ) LPos=( 34.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 52.06, -1275.32, 1850.16 ) LPos=( 52.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 40.56, -1275.32, 1850.16 ) LPos=( 40.56, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 37.69, -1275.32, 1850.16 ) LPos=( 37.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, -1293.30, 1821.60 ) LPos=( 34.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 37.69, -1294.83, 1819.17 ) LPos=( 37.69, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 40.56, -1297.90, 1814.30 ) LPos=( 40.56, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 40.56, -1294.83, 1819.17 ) LPos=( 40.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 46.31, -1297.90, 1814.30 ) LPos=( 46.31, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 52.06, -1299.43, 1811.87 ) LPos=( 52.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 52.06, -1297.90, 1814.30 ) LPos=( 52.06, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 52.06, -1294.83, 1819.17 ) LPos=( 52.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 52.06, -1293.30, 1821.60 ) LPos=( 52.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 80.06, -1278.38, 1845.29 ) LPos=( 80.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 80.06, -1284.51, 1835.56 ) LPos=( 80.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 77.19, -1276.85, 1847.73 ) LPos=( 77.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 77.19, -1279.91, 1842.86 ) LPos=( 77.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 77.19, -1281.45, 1840.43 ) LPos=( 77.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 71.44, -1273.79, 1852.59 ) LPos=( 71.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 68.56, -1276.85, 1847.73 ) LPos=( 68.56, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 68.56, -1279.91, 1842.86 ) LPos=( 68.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 68.56, -1282.98, 1838.00 ) LPos=( 68.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 65.69, -1282.98, 1838.00 ) LPos=( 65.69, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 59.94, -1276.85, 1847.73 ) LPos=( 59.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1281.45, 1840.43 ) LPos=( 59.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 59.94, -1282.98, 1838.00 ) LPos=( 59.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 59.94, -1284.51, 1835.56 ) LPos=( 59.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 62.81, -1288.71, 1828.90 ) LPos=( 62.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 68.56, -1288.71, 1828.90 ) LPos=( 68.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1291.77, 1824.03 ) LPos=( 80.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 62.81, -1293.30, 1821.60 ) LPos=( 62.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 74.31, -1293.30, 1821.60 ) LPos=( 74.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1293.30, 1821.60 ) LPos=( 80.06, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 80.06, -1294.83, 1819.17 ) LPos=( 80.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 80.06, -1297.90, 1814.30 ) LPos=( 80.06, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 62.81, -1299.43, 1811.87 ) LPos=( 62.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 93.69, -1284.51, 1835.56 ) LPos=( 93.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 90.81, -1284.51, 1835.56 ) LPos=( 90.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 108.06, -1279.91, 1842.86 ) LPos=( 108.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, -1278.38, 1845.29 ) LPos=( 102.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 93.69, -1278.38, 1845.29 ) LPos=( 93.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 99.44, -1276.85, 1847.73 ) LPos=( 99.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 96.56, -1276.85, 1847.73 ) LPos=( 96.56, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 90.81, -1276.85, 1847.73 ) LPos=( 90.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 102.31, -1275.32, 1850.16 ) LPos=( 102.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 90.81, -1275.32, 1850.16 ) LPos=( 90.81, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 102.31, -1273.79, 1852.59 ) LPos=( 102.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 87.94, -1273.79, 1852.59 ) LPos=( 87.94, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 87.94, -1299.43, 1811.87 ) LPos=( 87.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 87.94, -1290.24, 1826.47 ) LPos=( 87.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 93.69, -1288.71, 1828.90 ) LPos=( 93.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 96.56, -1293.30, 1821.60 ) LPos=( 96.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 99.44, -1294.83, 1819.17 ) LPos=( 99.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, -1293.30, 1821.60 ) LPos=( 99.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 99.44, -1288.71, 1828.90 ) LPos=( 99.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 102.31, -1299.43, 1811.87 ) LPos=( 102.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 105.19, -1296.37, 1816.73 ) LPos=( 105.19, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 105.19, -1291.77, 1824.03 ) LPos=( 105.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1288.71, 1828.90 ) LPos=( 105.19, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 108.06, -1299.43, 1811.87 ) LPos=( 108.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 133.19, -1279.91, 1842.86 ) LPos=( 133.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 133.19, -1284.51, 1835.56 ) LPos=( 133.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 127.44, -1282.98, 1838.00 ) LPos=( 127.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 124.56, -1284.51, 1835.56 ) LPos=( 124.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 121.69, -1281.45, 1840.43 ) LPos=( 121.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 118.81, -1282.98, 1838.00 ) LPos=( 118.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 115.94, -1281.45, 1840.43 ) LPos=( 115.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 115.94, -1282.98, 1838.00 ) LPos=( 115.94, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 118.81, -1288.71, 1828.90 ) LPos=( 118.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 127.44, -1288.71, 1828.90 ) LPos=( 127.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 130.31, -1288.71, 1828.90 ) LPos=( 130.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 133.19, -1290.24, 1826.47 ) LPos=( 133.19, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 121.69, -1291.77, 1824.03 ) LPos=( 121.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, -1291.77, 1824.03 ) LPos=( 124.56, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 121.69, -1293.30, 1821.60 ) LPos=( 121.69, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1293.30, 1821.60 ) LPos=( 127.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 130.31, -1293.30, 1821.60 ) LPos=( 130.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, -1294.83, 1819.17 ) LPos=( 136.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 115.94, -1296.37, 1816.73 ) LPos=( 115.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 136.06, -1296.37, 1816.73 ) LPos=( 136.06, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 118.81, -1297.90, 1814.30 ) LPos=( 118.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 124.56, -1299.43, 1811.87 ) LPos=( 124.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 133.19, -1299.43, 1811.87 ) LPos=( 133.19, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 136.06, -1299.43, 1811.87 ) LPos=( 136.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 152.56, -1284.51, 1835.56 ) LPos=( 152.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 146.81, -1282.98, 1838.00 ) LPos=( 146.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 155.44, -1281.45, 1840.43 ) LPos=( 155.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 161.19, -1279.91, 1842.86 ) LPos=( 161.19, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 158.31, -1279.91, 1842.86 ) LPos=( 158.31, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1279.91, 1842.86 ) LPos=( 152.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 164.06, -1278.38, 1845.29 ) LPos=( 164.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 143.94, -1278.38, 1845.29 ) LPos=( 143.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 164.06, -1276.85, 1847.73 ) LPos=( 164.06, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 155.44, -1276.85, 1847.73 ) LPos=( 155.44, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 146.81, -1276.85, 1847.73 ) LPos=( 146.81, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 143.94, -1275.32, 1850.16 ) LPos=( 143.94, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 158.31, -1273.79, 1852.59 ) LPos=( 158.31, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 146.81, -1273.79, 1852.59 ) LPos=( 146.81, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 146.81, -1299.43, 1811.87 ) LPos=( 146.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 146.81, -1294.83, 1819.17 ) LPos=( 146.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 149.69, -1293.30, 1821.60 ) LPos=( 149.69, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 152.56, -1299.43, 1811.87 ) LPos=( 152.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 152.56, -1294.83, 1819.17 ) LPos=( 152.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 152.56, -1293.30, 1821.60 ) LPos=( 152.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 152.56, -1290.24, 1826.47 ) LPos=( 152.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 152.56, -1288.71, 1828.90 ) LPos=( 152.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 155.44, -1297.90, 1814.30 ) LPos=( 155.44, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, -1293.30, 1821.60 ) LPos=( 155.44, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 155.44, -1288.71, 1828.90 ) LPos=( 155.44, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 158.31, -1299.43, 1811.87 ) LPos=( 158.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 183.44, -1279.91, 1842.86 ) LPos=( 183.44, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 177.69, -1278.38, 1845.29 ) LPos=( 177.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 171.94, -1288.71, 1828.90 ) LPos=( 171.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 174.81, -1288.71, 1828.90 ) LPos=( 174.81, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 192.06, -1288.71, 1828.90 ) LPos=( 192.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 174.81, -1294.83, 1819.17 ) LPos=( 174.81, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 174.81, -1297.90, 1814.30 ) LPos=( 174.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 174.81, -1299.43, 1811.87 ) LPos=( 174.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1284.51, 1835.56 ) LPos=( 217.19, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 214.31, -1282.98, 1838.00 ) LPos=( 214.31, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 211.44, -1282.98, 1838.00 ) LPos=( 211.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 202.81, -1282.98, 1838.00 ) LPos=( 202.81, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 217.19, -1281.45, 1840.43 ) LPos=( 217.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 202.81, -1279.91, 1842.86 ) LPos=( 202.81, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, -1278.38, 1845.29 ) LPos=( 211.44, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 205.69, -1278.38, 1845.29 ) LPos=( 205.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 199.94, -1278.38, 1845.29 ) LPos=( 199.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 214.31, -1276.85, 1847.73 ) LPos=( 214.31, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 199.94, -1276.85, 1847.73 ) LPos=( 199.94, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 217.19, -1275.32, 1850.16 ) LPos=( 217.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 205.69, -1275.32, 1850.16 ) LPos=( 205.69, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1273.79, 1852.59 ) LPos=( 220.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 211.44, -1273.79, 1852.59 ) LPos=( 211.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 199.94, -1299.43, 1811.87 ) LPos=( 199.94, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 199.94, -1293.30, 1821.60 ) LPos=( 199.94, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 202.81, -1293.30, 1821.60 ) LPos=( 202.81, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 205.69, -1297.90, 1814.30 ) LPos=( 205.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 205.69, -1290.24, 1826.47 ) LPos=( 205.69, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 208.56, -1294.83, 1819.17 ) LPos=( 208.56, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 208.56, -1290.24, 1826.47 ) LPos=( 208.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 208.56, -1288.71, 1828.90 ) LPos=( 208.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 211.44, -1294.83, 1819.17 ) LPos=( 211.44, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 214.31, -1288.71, 1828.90 ) LPos=( 214.31, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 217.19, -1294.83, 1819.17 ) LPos=( 217.19, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 217.19, -1291.77, 1824.03 ) LPos=( 217.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 220.06, -1299.43, 1811.87 ) LPos=( 220.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 220.06, -1294.83, 1819.17 ) LPos=( 220.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 248.06, -1273.79, 1852.59 ) LPos=( 248.06, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 248.06, -1278.38, 1845.29 ) LPos=( 248.06, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, -1282.98, 1838.00 ) LPos=( 248.06, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 248.06, -1284.51, 1835.56 ) LPos=( 248.06, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 245.19, -1276.85, 1847.73 ) LPos=( 245.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 242.31, -1278.38, 1845.29 ) LPos=( 242.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 239.44, -1281.45, 1840.43 ) LPos=( 239.44, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 236.56, -1276.85, 1847.73 ) LPos=( 236.56, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 236.56, -1279.91, 1842.86 ) LPos=( 236.56, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 236.56, -1284.51, 1835.56 ) LPos=( 236.56, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 233.69, -1281.45, 1840.43 ) LPos=( 233.69, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 227.94, -1278.38, 1845.29 ) LPos=( 227.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 227.94, -1288.71, 1828.90 ) LPos=( 227.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 227.94, -1290.24, 1826.47 ) LPos=( 227.94, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 242.31, -1290.24, 1826.47 ) LPos=( 242.31, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 248.06, -1291.77, 1824.03 ) LPos=( 248.06, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 236.56, -1293.30, 1821.60 ) LPos=( 236.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 245.19, -1293.30, 1821.60 ) LPos=( 245.19, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 239.44, -1299.43, 1811.87 ) LPos=( 239.44, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 276.06, -1279.91, 1842.86 ) LPos=( 276.06, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 276.06, -1275.32, 1850.16 ) LPos=( 276.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, -1275.32, 1850.16 ) LPos=( 273.19, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 270.31, -1275.32, 1850.16 ) LPos=( 270.31, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 255.94, -1273.79, 1852.59 ) LPos=( 255.94, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 261.69, -1293.30, 1821.60 ) LPos=( 261.69, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 261.69, -1288.71, 1828.90 ) LPos=( 261.69, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 270.31, -1291.77, 1824.03 ) LPos=( 270.31, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 273.19, -1291.77, 1824.03 ) LPos=( 273.19, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 301.19, -1282.98, 1838.00 ) LPos=( 301.19, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 298.31, -1278.38, 1845.29 ) LPos=( 298.31, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 292.56, -1281.45, 1840.43 ) LPos=( 292.56, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 289.69, -1276.85, 1847.73 ) LPos=( 289.69, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 289.69, -1278.38, 1845.29 ) LPos=( 289.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 286.81, -1281.45, 1840.43 ) LPos=( 286.81, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 283.94, -1281.45, 1840.43 ) LPos=( 283.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 283.94, -1288.71, 1828.90 ) LPos=( 283.94, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, -1288.71, 1828.90 ) LPos=( 304.06, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 286.81, -1297.90, 1814.30 ) LPos=( 286.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 286.81, -1299.43, 1811.87 ) LPos=( 286.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 301.19, -1299.43, 1811.87 ) LPos=( 301.19, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 304.06, -1299.43, 1811.87 ) LPos=( 304.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 329.19, -1281.45, 1840.43 ) LPos=( 329.19, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 326.31, -1279.91, 1842.86 ) LPos=( 326.31, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 317.69, -1279.91, 1842.86 ) LPos=( 317.69, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 317.69, -1278.38, 1845.29 ) LPos=( 317.69, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 323.44, -1273.79, 1852.59 ) LPos=( 323.44, -60.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 311.94, -1293.30, 1821.60 ) LPos=( 311.94, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 314.81, -1297.90, 1814.30 ) LPos=( 314.81, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 332.06, -1299.43, 1811.87 ) LPos=( 332.06, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 332.06, -1294.83, 1819.17 ) LPos=( 332.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 332.06, -1290.24, 1826.47 ) LPos=( 332.06, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 360.06, -1275.32, 1850.16 ) LPos=( 360.06, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 342.81, -1278.38, 1845.29 ) LPos=( 342.81, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 339.94, -1278.38, 1845.29 ) LPos=( 339.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 339.94, -1279.91, 1842.86 ) LPos=( 339.94, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 351.44, -1291.77, 1824.03 ) LPos=( 351.44, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 345.69, -1296.37, 1816.73 ) LPos=( 345.69, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 348.56, -1296.37, 1816.73 ) LPos=( 348.56, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 376.56, -1282.98, 1838.00 ) LPos=( 376.56, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 376.56, -1281.45, 1840.43 ) LPos=( 376.56, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 382.31, -1279.91, 1842.86 ) LPos=( 382.31, -72.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 367.94, -1278.38, 1845.29 ) LPos=( 367.94, -69.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 382.31, -1294.83, 1819.17 ) LPos=( 382.31, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 382.31, -1293.30, 1821.60 ) LPos=( 382.31, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 385.19, -1296.37, 1816.73 ) LPos=( 385.19, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 401.69, -1284.51, 1835.56 ) LPos=( 401.69, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 407.44, -1290.24, 1826.47 ) LPos=( 407.44, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 401.69, -1291.77, 1824.03 ) LPos=( 401.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 404.56, -1299.43, 1811.87 ) LPos=( 404.56, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 435.44, -1282.98, 1838.00 ) LPos=( 435.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 423.94, -1297.90, 1814.30 ) LPos=( 423.94, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 426.81, -1299.43, 1811.87 ) LPos=( 426.81, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 432.56, -1290.24, 1826.47 ) LPos=( 432.56, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 432.56, -1288.71, 1828.90 ) LPos=( 432.56, -88.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 472.06, -1290.24, 1826.47 ) LPos=( 472.06, -91.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 457.69, -1299.43, 1811.87 ) LPos=( 457.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 510.81, -1275.32, 1850.16 ) LPos=( 510.81, -63.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 510.81, -1284.51, 1835.56 ) LPos=( 510.81, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 507.94, -1284.51, 1835.56 ) LPos=( 507.94, -80.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 528.06, -1294.83, 1819.17 ) LPos=( 528.06, -100.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 507.94, -1296.37, 1816.73 ) LPos=( 507.94, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 525.19, -1296.37, 1816.73 ) LPos=( 525.19, -103.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 513.69, -1297.90, 1814.30 ) LPos=( 513.69, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 522.31, -1299.43, 1811.87 ) LPos=( 522.31, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 541.69, -1291.77, 1824.03 ) LPos=( 541.69, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 575.44, -1282.98, 1838.00 ) LPos=( 575.44, -77.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 563.94, -1291.77, 1824.03 ) LPos=( 563.94, -94.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 569.69, -1299.43, 1811.87 ) LPos=( 569.69, -108.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 591.94, -1281.45, 1840.43 ) LPos=( 591.94, -75.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 609.19, -1276.85, 1847.73 ) LPos=( 609.19, -66.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 600.56, -1293.30, 1821.60 ) LPos=( 600.56, -97.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 612.06, -1297.90, 1814.30 ) LPos=( 612.06, -105.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -591.94, -1254.40, 1883.37 ) LPos=( -591.94, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -594.81, -1251.34, 1888.24 ) LPos=( -594.81, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -535.94, -1245.21, 1897.97 ) LPos=( -535.94, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -550.31, -1258.60, 1876.71 ) LPos=( -550.31, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -541.69, -1258.60, 1876.71 ) LPos=( -541.69, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -528.06, -1263.20, 1869.41 ) LPos=( -528.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -516.56, -1267.79, 1862.11 ) LPos=( -516.56, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:126,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -472.06, -1263.20, 1869.41 ) LPos=( -472.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -429.69, -1269.32, 1859.68 ) LPos=( -429.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -407.44, -1254.40, 1883.37 ) LPos=( -407.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -398.81, -1245.21, 1897.97 ) LPos=( -398.81, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -413.19, -1243.68, 1900.40 ) LPos=( -413.19, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -357.19, -1252.87, 1885.81 ) LPos=( -357.19, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -342.81, -1251.34, 1888.24 ) LPos=( -342.81, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -339.94, -1264.73, 1866.98 ) LPos=( -339.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -320.56, -1243.68, 1900.40 ) LPos=( -320.56, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -326.31, -1246.74, 1895.54 ) LPos=( -326.31, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -332.06, -1249.81, 1890.67 ) LPos=( -332.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -298.31, -1254.40, 1883.37 ) LPos=( -298.31, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -286.81, -1252.87, 1885.81 ) LPos=( -286.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -301.19, -1249.81, 1890.67 ) LPos=( -301.19, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -298.31, -1269.32, 1859.68 ) LPos=( -298.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -273.19, -1260.13, 1874.28 ) LPos=( -273.19, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -267.44, -1260.13, 1874.28 ) LPos=( -267.44, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -261.69, -1267.79, 1862.11 ) LPos=( -261.69, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -227.94, -1252.87, 1885.81 ) LPos=( -227.94, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -233.69, -1249.81, 1890.67 ) LPos=( -233.69, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -248.06, -1267.79, 1862.11 ) LPos=( -248.06, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -248.06, -1263.20, 1869.41 ) LPos=( -248.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -245.19, -1269.32, 1859.68 ) LPos=( -245.19, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -242.31, -1264.73, 1866.98 ) LPos=( -242.31, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -239.44, -1258.60, 1876.71 ) LPos=( -239.44, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -205.69, -1249.81, 1890.67 ) LPos=( -205.69, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -205.69, -1252.87, 1885.81 ) LPos=( -205.69, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -208.56, -1248.27, 1893.10 ) LPos=( -208.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -217.19, -1258.60, 1876.71 ) LPos=( -217.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -217.19, -1264.73, 1866.98 ) LPos=( -217.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -217.19, -1266.26, 1864.54 ) LPos=( -217.19, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1248.27, 1893.10 ) LPos=( -180.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -183.44, -1248.27, 1893.10 ) LPos=( -183.44, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -171.94, -1245.21, 1897.97 ) LPos=( -171.94, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -192.06, -1269.32, 1859.68 ) LPos=( -192.06, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -192.06, -1267.79, 1862.11 ) LPos=( -192.06, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -192.06, -1264.73, 1866.98 ) LPos=( -192.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -189.19, -1267.79, 1862.11 ) LPos=( -189.19, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -189.19, -1263.20, 1869.41 ) LPos=( -189.19, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -186.31, -1267.79, 1862.11 ) LPos=( -186.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -186.31, -1263.20, 1869.41 ) LPos=( -186.31, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -186.31, -1261.66, 1871.84 ) LPos=( -186.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -183.44, -1264.73, 1866.98 ) LPos=( -183.44, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -183.44, -1263.20, 1869.41 ) LPos=( -183.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -180.56, -1264.73, 1866.98 ) LPos=( -180.56, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -177.69, -1261.66, 1871.84 ) LPos=( -177.69, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -171.94, -1261.66, 1871.84 ) LPos=( -171.94, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -149.69, -1248.27, 1893.10 ) LPos=( -149.69, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -149.69, -1249.81, 1890.67 ) LPos=( -149.69, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -146.81, -1261.66, 1871.84 ) LPos=( -146.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -164.06, -1264.73, 1866.98 ) LPos=( -164.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -146.81, -1266.26, 1864.54 ) LPos=( -146.81, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -158.31, -1269.32, 1859.68 ) LPos=( -158.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -143.94, -1269.32, 1859.68 ) LPos=( -143.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -118.81, -1254.40, 1883.37 ) LPos=( -118.81, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -121.69, -1254.40, 1883.37 ) LPos=( -121.69, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -133.19, -1254.40, 1883.37 ) LPos=( -133.19, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -118.81, -1252.87, 1885.81 ) LPos=( -118.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -124.56, -1252.87, 1885.81 ) LPos=( -124.56, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -133.19, -1252.87, 1885.81 ) LPos=( -133.19, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -127.44, -1245.21, 1897.97 ) LPos=( -127.44, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -130.31, -1245.21, 1897.97 ) LPos=( -130.31, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -124.56, -1243.68, 1900.40 ) LPos=( -124.56, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -133.19, -1258.60, 1876.71 ) LPos=( -133.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -130.31, -1267.79, 1862.11 ) LPos=( -130.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -130.31, -1261.66, 1871.84 ) LPos=( -130.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -130.31, -1260.13, 1874.28 ) LPos=( -130.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -127.44, -1263.20, 1869.41 ) LPos=( -127.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -124.56, -1261.66, 1871.84 ) LPos=( -124.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -118.81, -1269.32, 1859.68 ) LPos=( -118.81, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -93.69, -1248.27, 1893.10 ) LPos=( -93.69, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -102.31, -1243.68, 1900.40 ) LPos=( -102.31, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -102.31, -1251.34, 1888.24 ) LPos=( -102.31, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -105.19, -1252.87, 1885.81 ) LPos=( -105.19, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -105.19, -1254.40, 1883.37 ) LPos=( -105.19, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -108.06, -1249.81, 1890.67 ) LPos=( -108.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -108.06, -1252.87, 1885.81 ) LPos=( -108.06, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -96.56, -1258.60, 1876.71 ) LPos=( -96.56, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -99.44, -1261.66, 1871.84 ) LPos=( -99.44, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -96.56, -1261.66, 1871.84 ) LPos=( -96.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -102.31, -1263.20, 1869.41 ) LPos=( -102.31, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -105.19, -1266.26, 1864.54 ) LPos=( -105.19, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -102.31, -1267.79, 1862.11 ) LPos=( -102.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -99.44, -1269.32, 1859.68 ) LPos=( -99.44, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -90.81, -1269.32, 1859.68 ) LPos=( -90.81, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -62.81, -1254.40, 1883.37 ) LPos=( -62.81, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -71.44, -1251.34, 1888.24 ) LPos=( -71.44, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -80.06, -1248.27, 1893.10 ) LPos=( -80.06, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -59.94, -1245.21, 1897.97 ) LPos=( -59.94, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -77.19, -1243.68, 1900.40 ) LPos=( -77.19, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -80.06, -1243.68, 1900.40 ) LPos=( -80.06, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -80.06, -1267.79, 1862.11 ) LPos=( -80.06, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -71.44, -1260.13, 1874.28 ) LPos=( -71.44, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -68.56, -1263.20, 1869.41 ) LPos=( -68.56, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -65.69, -1261.66, 1871.84 ) LPos=( -65.69, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -62.81, -1264.73, 1866.98 ) LPos=( -62.81, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -62.81, -1263.20, 1869.41 ) LPos=( -62.81, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -59.94, -1264.73, 1866.98 ) LPos=( -59.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -40.56, -1248.27, 1893.10 ) LPos=( -40.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -49.19, -1245.21, 1897.97 ) LPos=( -49.19, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -52.06, -1246.74, 1895.54 ) LPos=( -52.06, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -34.81, -1258.60, 1876.71 ) LPos=( -34.81, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -43.44, -1260.13, 1874.28 ) LPos=( -43.44, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -40.56, -1260.13, 1874.28 ) LPos=( -40.56, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -34.81, -1261.66, 1871.84 ) LPos=( -34.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -49.19, -1264.73, 1866.98 ) LPos=( -49.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -43.44, -1269.32, 1859.68 ) LPos=( -43.44, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -6.81, -1252.87, 1885.81 ) LPos=( -6.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3.94, -1251.34, 1888.24 ) LPos=( -3.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -24.06, -1251.34, 1888.24 ) LPos=( -24.06, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -9.69, -1248.27, 1893.10 ) LPos=( -9.69, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -12.56, -1248.27, 1893.10 ) LPos=( -12.56, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -18.31, -1245.21, 1897.97 ) LPos=( -18.31, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -24.06, -1263.20, 1869.41 ) LPos=( -24.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -18.31, -1269.32, 1859.68 ) LPos=( -18.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -18.31, -1266.26, 1864.54 ) LPos=( -18.31, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -18.31, -1264.73, 1866.98 ) LPos=( -18.31, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -15.44, -1258.60, 1876.71 ) LPos=( -15.44, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -12.56, -1261.66, 1871.84 ) LPos=( -12.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -9.69, -1260.13, 1874.28 ) LPos=( -9.69, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -6.81, -1266.26, 1864.54 ) LPos=( -6.81, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -6.81, -1261.66, 1871.84 ) LPos=( -6.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3.94, -1269.32, 1859.68 ) LPos=( -3.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 24.06, -1248.27, 1893.10 ) LPos=( 24.06, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 24.06, -1249.81, 1890.67 ) LPos=( 24.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 21.19, -1248.27, 1893.10 ) LPos=( 21.19, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 18.31, -1249.81, 1890.67 ) LPos=( 18.31, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 15.44, -1249.81, 1890.67 ) LPos=( 15.44, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 9.69, -1254.40, 1883.37 ) LPos=( 9.69, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3.94, -1260.13, 1874.28 ) LPos=( 3.94, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 6.81, -1260.13, 1874.28 ) LPos=( 6.81, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 18.31, -1260.13, 1874.28 ) LPos=( 18.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 24.06, -1260.13, 1874.28 ) LPos=( 24.06, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3.94, -1261.66, 1871.84 ) LPos=( 3.94, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 6.81, -1261.66, 1871.84 ) LPos=( 6.81, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3.94, -1263.20, 1869.41 ) LPos=( 3.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 6.81, -1266.26, 1864.54 ) LPos=( 6.81, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 18.31, -1266.26, 1864.54 ) LPos=( 18.31, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 24.06, -1266.26, 1864.54 ) LPos=( 24.06, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 6.81, -1267.79, 1862.11 ) LPos=( 6.81, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 49.19, -1251.34, 1888.24 ) LPos=( 49.19, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 34.81, -1263.20, 1869.41 ) LPos=( 34.81, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 43.44, -1261.66, 1871.84 ) LPos=( 43.44, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 49.19, -1264.73, 1866.98 ) LPos=( 49.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 49.19, -1260.13, 1874.28 ) LPos=( 49.19, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 49.19, -1258.60, 1876.71 ) LPos=( 49.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 80.06, -1246.74, 1895.54 ) LPos=( 80.06, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 68.56, -1254.40, 1883.37 ) LPos=( 68.56, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 62.81, -1254.40, 1883.37 ) LPos=( 62.81, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 59.94, -1251.34, 1888.24 ) LPos=( 59.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 74.31, -1258.60, 1876.71 ) LPos=( 74.31, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 65.69, -1260.13, 1874.28 ) LPos=( 65.69, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 74.31, -1261.66, 1871.84 ) LPos=( 74.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 80.06, -1261.66, 1871.84 ) LPos=( 80.06, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 77.19, -1263.20, 1869.41 ) LPos=( 77.19, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 80.06, -1263.20, 1869.41 ) LPos=( 80.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 65.69, -1264.73, 1866.98 ) LPos=( 65.69, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 68.56, -1264.73, 1866.98 ) LPos=( 68.56, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 74.31, -1269.32, 1859.68 ) LPos=( 74.31, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 105.19, -1249.81, 1890.67 ) LPos=( 105.19, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 102.31, -1248.27, 1893.10 ) LPos=( 102.31, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 93.69, -1243.68, 1900.40 ) LPos=( 93.69, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 87.94, -1267.79, 1862.11 ) LPos=( 87.94, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 87.94, -1264.73, 1866.98 ) LPos=( 87.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 90.81, -1264.73, 1866.98 ) LPos=( 90.81, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 90.81, -1260.13, 1874.28 ) LPos=( 90.81, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 93.69, -1269.32, 1859.68 ) LPos=( 93.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 93.69, -1266.26, 1864.54 ) LPos=( 93.69, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 96.56, -1258.60, 1876.71 ) LPos=( 96.56, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 99.44, -1263.20, 1869.41 ) LPos=( 99.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 105.19, -1260.13, 1874.28 ) LPos=( 105.19, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 105.19, -1258.60, 1876.71 ) LPos=( 105.19, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 108.06, -1260.13, 1874.28 ) LPos=( 108.06, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 133.19, -1251.34, 1888.24 ) LPos=( 133.19, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1249.81, 1890.67 ) LPos=( 127.44, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 118.81, -1260.13, 1874.28 ) LPos=( 118.81, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 124.56, -1260.13, 1874.28 ) LPos=( 124.56, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 130.31, -1260.13, 1874.28 ) LPos=( 130.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 124.56, -1261.66, 1871.84 ) LPos=( 124.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 130.31, -1261.66, 1871.84 ) LPos=( 130.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 115.94, -1263.20, 1869.41 ) LPos=( 115.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 127.44, -1263.20, 1869.41 ) LPos=( 127.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 133.19, -1264.73, 1866.98 ) LPos=( 133.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 136.06, -1264.73, 1866.98 ) LPos=( 136.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 124.56, -1269.32, 1859.68 ) LPos=( 124.56, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 143.94, -1269.32, 1859.68 ) LPos=( 143.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 143.94, -1264.73, 1866.98 ) LPos=( 143.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 143.94, -1263.20, 1869.41 ) LPos=( 143.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 149.69, -1269.32, 1859.68 ) LPos=( 149.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 149.69, -1264.73, 1866.98 ) LPos=( 149.69, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 149.69, -1263.20, 1869.41 ) LPos=( 149.69, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 149.69, -1260.13, 1874.28 ) LPos=( 149.69, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 152.56, -1261.66, 1871.84 ) LPos=( 152.56, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 155.44, -1263.20, 1869.41 ) LPos=( 155.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 155.44, -1261.66, 1871.84 ) LPos=( 155.44, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 161.19, -1269.32, 1859.68 ) LPos=( 161.19, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 183.44, -1254.40, 1883.37 ) LPos=( 183.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 171.94, -1251.34, 1888.24 ) LPos=( 171.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 189.19, -1263.20, 1869.41 ) LPos=( 189.19, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 217.19, -1254.40, 1883.37 ) LPos=( 217.19, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 220.06, -1252.87, 1885.81 ) LPos=( 220.06, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 202.81, -1258.60, 1876.71 ) LPos=( 202.81, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 214.31, -1266.26, 1864.54 ) LPos=( 214.31, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 248.06, -1252.87, 1885.81 ) LPos=( 248.06, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 239.44, -1251.34, 1888.24 ) LPos=( 239.44, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 236.56, -1251.34, 1888.24 ) LPos=( 236.56, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 233.69, -1266.26, 1864.54 ) LPos=( 233.69, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 239.44, -1266.26, 1864.54 ) LPos=( 239.44, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 245.19, -1269.32, 1859.68 ) LPos=( 245.19, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 267.44, -1251.34, 1888.24 ) LPos=( 267.44, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 264.56, -1251.34, 1888.24 ) LPos=( 264.56, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 255.94, -1251.34, 1888.24 ) LPos=( 255.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 255.94, -1269.32, 1859.68 ) LPos=( 255.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 261.69, -1269.32, 1859.68 ) LPos=( 261.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 273.19, -1267.79, 1862.11 ) LPos=( 273.19, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 301.19, -1245.21, 1897.97 ) LPos=( 301.19, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 304.06, -1258.60, 1876.71 ) LPos=( 304.06, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 298.31, -1260.13, 1874.28 ) LPos=( 298.31, -35.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 298.31, -1261.66, 1871.84 ) LPos=( 298.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 301.19, -1261.66, 1871.84 ) LPos=( 301.19, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 283.94, -1264.73, 1866.98 ) LPos=( 283.94, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 295.44, -1264.73, 1866.98 ) LPos=( 295.44, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 295.44, -1267.79, 1862.11 ) LPos=( 295.44, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 283.94, -1269.32, 1859.68 ) LPos=( 283.94, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 311.94, -1263.20, 1869.41 ) LPos=( 311.94, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 317.69, -1269.32, 1859.68 ) LPos=( 317.69, -52.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 320.56, -1267.79, 1862.11 ) LPos=( 320.56, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 320.56, -1266.26, 1864.54 ) LPos=( 320.56, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 323.44, -1263.20, 1869.41 ) LPos=( 323.44, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 329.19, -1264.73, 1866.98 ) LPos=( 329.19, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 332.06, -1264.73, 1866.98 ) LPos=( 332.06, -43.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 348.56, -1246.74, 1895.54 ) LPos=( 348.56, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 342.81, -1252.87, 1885.81 ) LPos=( 342.81, -21.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 339.94, -1251.34, 1888.24 ) LPos=( 339.94, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 360.06, -1261.66, 1871.84 ) LPos=( 360.06, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 379.44, -1254.40, 1883.37 ) LPos=( 379.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 376.56, -1254.40, 1883.37 ) LPos=( 376.56, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 385.19, -1243.68, 1900.40 ) LPos=( 385.19, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 382.31, -1243.68, 1900.40 ) LPos=( 382.31, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 367.94, -1266.26, 1864.54 ) LPos=( 367.94, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 376.56, -1267.79, 1862.11 ) LPos=( 376.56, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 385.19, -1266.26, 1864.54 ) LPos=( 385.19, -46.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 388.06, -1263.20, 1869.41 ) LPos=( 388.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 416.06, -1249.81, 1890.67 ) LPos=( 416.06, -15.69, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 407.44, -1254.40, 1883.37 ) LPos=( 407.44, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 398.81, -1248.27, 1893.10 ) LPos=( 398.81, -12.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 401.69, -1258.60, 1876.71 ) LPos=( 401.69, -32.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 423.94, -1246.74, 1895.54 ) LPos=( 423.94, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:130,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 432.56, -1243.68, 1900.40 ) LPos=( 432.56, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 466.31, -1243.68, 1900.40 ) LPos=( 466.31, -4.19, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 485.69, -1254.40, 1883.37 ) LPos=( 485.69, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 494.31, -1267.79, 1862.11 ) LPos=( 494.31, -49.44, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 500.06, -1263.20, 1869.41 ) LPos=( 500.06, -40.81, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 513.69, -1245.21, 1897.97 ) LPos=( 513.69, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 550.31, -1254.40, 1883.37 ) LPos=( 550.31, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 544.56, -1246.74, 1895.54 ) LPos=( 544.56, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 563.94, -1246.74, 1895.54 ) LPos=( 563.94, -9.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 612.06, -1254.40, 1883.37 ) LPos=( 612.06, -24.31, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 594.81, -1251.34, 1888.24 ) LPos=( 594.81, -18.56, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 606.31, -1245.21, 1897.97 ) LPos=( 606.31, -7.06, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich1 Bot PD[Mod,NInMod]:131,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 606.31, -1261.66, 1871.84 ) LPos=( 606.31, -37.94, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,00 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3748.73, 632.52, 11009.66 ) LPos=( 49.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3740.02, 588.48, 11025.28 ) LPos=( 31.25, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3740.02, 538.48, 11025.14 ) LPos=( 31.25, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3740.02, 494.48, 11025.01 ) LPos=( 31.25, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3745.83, 488.51, 11014.49 ) LPos=( 43.25, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3748.74, 476.52, 11009.21 ) LPos=( 49.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3731.30, 470.43, 11040.68 ) LPos=( 13.25, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3748.74, 470.52, 11009.19 ) LPos=( 49.25, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3728.39, 464.41, 11045.92 ) LPos=( 7.25, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3731.30, 464.43, 11040.67 ) LPos=( 13.25, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3748.74, 464.52, 11009.17 ) LPos=( 49.25, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3748.74, 450.52, 11009.13 ) LPos=( 49.25, 451.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3731.30, 426.43, 11040.55 ) LPos=( 13.25, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3740.02, 426.48, 11024.81 ) LPos=( 31.25, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3728.40, 414.41, 11045.77 ) LPos=( 7.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3728.40, 408.41, 11045.75 ) LPos=( 7.25, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3731.30, 408.43, 11040.50 ) LPos=( 13.25, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3745.83, 376.51, 11014.16 ) LPos=( 43.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3748.74, 376.52, 11008.91 ) LPos=( 49.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3748.74, 364.52, 11008.88 ) LPos=( 49.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3737.12, 332.46, 11029.78 ) LPos=( 25.25, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3742.93, 332.49, 11019.28 ) LPos=( 37.25, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3742.93, 326.49, 11019.26 ) LPos=( 37.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3731.30, 320.43, 11040.24 ) LPos=( 13.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3740.02, 320.48, 11024.50 ) LPos=( 31.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3728.40, 302.41, 11045.44 ) LPos=( 7.25, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3731.30, 302.43, 11040.19 ) LPos=( 13.25, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3737.12, 296.46, 11029.68 ) LPos=( 25.25, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3728.40, 282.41, 11045.38 ) LPos=( 7.25, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3731.31, 276.43, 11040.11 ) LPos=( 13.25, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3731.31, 264.43, 11040.08 ) LPos=( 13.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3734.21, 252.45, 11034.79 ) LPos=( 19.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3743.27, 212.31, 11018.33 ) LPos=( 37.94, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3747.44, 215.20, 11010.79 ) LPos=( 46.56, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3736.67, 223.77, 11030.28 ) LPos=( 24.31, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3735.27, 226.64, 11032.81 ) LPos=( 21.44, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3747.45, 156.33, 11010.62 ) LPos=( 46.56, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3748.84, 164.96, 11008.13 ) LPos=( 49.44, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3744.66, 167.81, 11015.68 ) LPos=( 40.81, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3741.88, 131.17, 11020.61 ) LPos=( 35.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3747.45, 131.20, 11010.54 ) LPos=( 46.56, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3748.84, 139.84, 11008.05 ) LPos=( 49.44, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3729.71, 145.48, 11042.63 ) LPos=( 9.94, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3731.10, 145.49, 11040.11 ) LPos=( 12.81, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3732.49, 145.50, 11037.60 ) LPos=( 15.69, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3735.28, 145.51, 11032.57 ) LPos=( 21.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3732.49, 142.62, 11037.59 ) LPos=( 15.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3733.88, 142.63, 11035.07 ) LPos=( 18.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3735.28, 142.64, 11032.56 ) LPos=( 21.44, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3736.67, 142.65, 11030.04 ) LPos=( 24.31, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3733.88, 139.76, 11035.07 ) LPos=( 18.56, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3735.28, 139.76, 11032.55 ) LPos=( 21.44, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3736.67, 139.77, 11030.04 ) LPos=( 24.31, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3729.71, 136.86, 11042.60 ) LPos=( 9.94, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3733.88, 136.88, 11035.06 ) LPos=( 18.56, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3735.28, 136.89, 11032.54 ) LPos=( 21.44, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3736.67, 136.90, 11030.03 ) LPos=( 24.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3735.28, 134.01, 11032.53 ) LPos=( 21.44, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3729.71, 131.11, 11042.59 ) LPos=( 9.94, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3726.92, 128.22, 11047.61 ) LPos=( 4.19, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3732.49, 128.25, 11037.55 ) LPos=( 15.69, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3744.66, 103.19, 11015.49 ) LPos=( 40.81, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3741.88, 108.92, 11020.54 ) LPos=( 35.06, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3746.05, 117.57, 11013.02 ) LPos=( 43.69, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3735.28, 108.89, 11032.46 ) LPos=( 21.44, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3729.71, 105.98, 11042.51 ) LPos=( 9.94, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3726.92, 100.22, 11047.53 ) LPos=( 4.19, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3731.10, 83.74, 11039.93 ) LPos=( 12.81, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3736.67, 78.02, 11029.85 ) LPos=( 24.31, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3735.28, 75.14, 11032.36 ) LPos=( 21.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3736.67, 75.15, 11029.85 ) LPos=( 24.31, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3735.28, 72.26, 11032.35 ) LPos=( 21.44, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3747.45, 41.45, 11010.28 ) LPos=( 46.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3744.66, 41.44, 11015.31 ) LPos=( 40.81, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3748.84, 47.21, 11007.78 ) LPos=( 49.44, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3746.06, 58.70, 11012.85 ) LPos=( 43.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3731.10, 44.24, 11039.82 ) LPos=( 12.81, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3740.49, 30.67, 11022.83 ) LPos=( 32.19, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3741.88, 24.93, 11020.29 ) LPos=( 35.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3744.66, 33.56, 11015.29 ) LPos=( 40.81, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3747.45, 33.58, 11010.26 ) LPos=( 46.56, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3736.67, 30.65, 11029.72 ) LPos=( 24.31, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:140,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3732.49, 24.88, 11037.24 ) LPos=( 15.69, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3744.67, -14.56, 11015.15 ) LPos=( 40.81, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3746.06, -5.93, 11012.66 ) LPos=( 43.69, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3740.49, -5.96, 11022.72 ) LPos=( 32.19, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3743.27, -3.07, 11017.70 ) LPos=( 37.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3736.67, -8.85, 11029.60 ) LPos=( 24.31, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3740.49, -39.71, 11022.62 ) LPos=( 32.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3733.89, -22.49, 11034.59 ) LPos=( 18.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3747.45, -59.04, 11009.99 ) LPos=( 46.56, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3740.49, -56.21, 11022.57 ) LPos=( 32.19, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3740.49, -89.96, 11022.47 ) LPos=( 32.19, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3750.24, -81.28, 11004.89 ) LPos=( 52.31, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3743.28, -123.69, 11017.34 ) LPos=( 37.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3741.88, -112.20, 11019.89 ) LPos=( 35.06, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3731.11, -134.51, 11039.29 ) LPos=( 12.81, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3743.28, -182.57, 11017.17 ) LPos=( 37.94, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:141,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3750.24, -162.40, 11004.65 ) LPos=( 52.31, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3745.85, -221.49, 11012.41 ) LPos=( 43.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3748.76, -233.47, 11007.12 ) LPos=( 49.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3742.95, -339.51, 11017.31 ) LPos=( 37.25, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3740.04, -389.52, 11022.41 ) LPos=( 31.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:142,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3728.42, -413.58, 11043.34 ) LPos=( 7.25, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3734.23, -451.55, 11032.73 ) LPos=( 19.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3737.14, -481.54, 11027.39 ) LPos=( 25.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3731.33, -487.57, 11037.87 ) LPos=( 13.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3745.86, -537.49, 11011.48 ) LPos=( 43.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3740.05, -587.52, 11021.83 ) LPos=( 31.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3748.77, -587.47, 11006.08 ) LPos=( 49.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:143,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3748.77, -593.47, 11006.07 ) LPos=( 49.25, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,00 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3755.76, 644.56, 10997.01 ) LPos=( 63.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,01 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3761.57, 600.59, 10986.39 ) LPos=( 75.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,01 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3770.29, 600.64, 10970.64 ) LPos=( 93.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3767.39, 544.62, 10975.73 ) LPos=( 87.75, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3773.20, 506.65, 10965.12 ) LPos=( 99.75, 507.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3761.57, 500.59, 10986.09 ) LPos=( 75.75, 501.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3770.29, 500.64, 10970.35 ) LPos=( 93.75, 501.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3758.67, 494.58, 10991.33 ) LPos=( 69.75, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3767.39, 488.62, 10975.56 ) LPos=( 87.75, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3767.39, 482.62, 10975.54 ) LPos=( 87.75, 483.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3776.11, 476.67, 10959.78 ) LPos=( 105.75, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3761.57, 470.59, 10986.01 ) LPos=( 75.75, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3770.29, 470.64, 10970.26 ) LPos=( 93.75, 471.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3755.76, 444.56, 10996.43 ) LPos=( 63.75, 445.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3755.76, 438.56, 10996.41 ) LPos=( 63.75, 439.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3764.48, 438.61, 10980.66 ) LPos=( 81.75, 439.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3755.76, 426.56, 10996.38 ) LPos=( 63.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3770.30, 426.64, 10970.13 ) LPos=( 93.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3755.76, 420.56, 10996.36 ) LPos=( 63.75, 421.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3755.76, 408.56, 10996.32 ) LPos=( 63.75, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3755.76, 388.56, 10996.26 ) LPos=( 63.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3764.48, 352.61, 10980.41 ) LPos=( 81.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3770.30, 352.64, 10969.91 ) LPos=( 93.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3758.67, 282.58, 10990.70 ) LPos=( 69.75, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3761.58, 276.59, 10985.44 ) LPos=( 75.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3767.39, 276.62, 10974.94 ) LPos=( 87.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3767.39, 270.62, 10974.92 ) LPos=( 87.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3773.21, 270.65, 10964.42 ) LPos=( 99.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3761.25, 209.53, 10985.84 ) LPos=( 75.06, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3758.46, 215.26, 10990.89 ) LPos=( 69.31, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3767.85, 187.31, 10973.86 ) LPos=( 88.69, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.24, 201.70, 10971.38 ) LPos=( 91.56, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3772.03, 184.46, 10966.30 ) LPos=( 97.31, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3776.21, 190.23, 10958.77 ) LPos=( 105.94, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3757.07, 193.01, 10993.34 ) LPos=( 66.44, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3759.86, 193.02, 10988.31 ) LPos=( 72.19, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3776.21, 156.48, 10958.67 ) LPos=( 105.94, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3772.03, 159.34, 10966.23 ) LPos=( 97.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3777.60, 162.24, 10956.18 ) LPos=( 108.81, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3773.42, 167.97, 10963.74 ) LPos=( 100.19, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3757.07, 167.88, 10993.26 ) LPos=( 66.44, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3754.29, 162.12, 10998.28 ) LPos=( 60.69, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3754.29, 159.24, 10998.27 ) LPos=( 60.69, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3767.85, 131.31, 10973.69 ) LPos=( 88.69, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3767.85, 145.69, 10973.73 ) LPos=( 88.69, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3769.24, 128.45, 10971.17 ) LPos=( 91.56, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3769.24, 142.82, 10971.21 ) LPos=( 91.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.24, 145.70, 10971.22 ) LPos=( 91.56, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3770.64, 145.70, 10968.70 ) LPos=( 94.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3772.03, 131.34, 10966.15 ) LPos=( 97.31, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3772.03, 137.09, 10966.16 ) LPos=( 97.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3772.03, 145.71, 10966.19 ) LPos=( 97.31, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3773.42, 142.84, 10963.67 ) LPos=( 100.19, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3773.42, 145.72, 10963.67 ) LPos=( 100.19, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3777.60, 125.62, 10956.07 ) LPos=( 108.81, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3759.86, 145.65, 10988.17 ) LPos=( 72.19, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3762.64, 125.54, 10983.08 ) LPos=( 77.94, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3774.82, 97.60, 10961.02 ) LPos=( 103.06, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3769.25, 100.45, 10971.09 ) LPos=( 91.56, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3770.64, 103.33, 10968.58 ) LPos=( 94.44, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3769.25, 114.82, 10971.13 ) LPos=( 91.56, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3759.86, 117.65, 10988.09 ) LPos=( 72.19, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3755.68, 117.62, 10995.63 ) LPos=( 63.56, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3755.68, 106.12, 10995.60 ) LPos=( 63.56, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3770.64, 75.33, 10968.50 ) LPos=( 94.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3772.03, 69.59, 10965.97 ) LPos=( 97.31, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3772.03, 89.71, 10966.02 ) LPos=( 97.31, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3773.42, 75.34, 10963.47 ) LPos=( 100.19, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3774.82, 72.48, 10960.94 ) LPos=( 103.06, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3776.21, 78.23, 10958.45 ) LPos=( 105.94, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3757.08, 89.63, 10993.04 ) LPos=( 66.44, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3755.68, 86.75, 10995.54 ) LPos=( 63.56, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3759.86, 86.77, 10988.00 ) LPos=( 72.19, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3764.04, 86.79, 10980.45 ) LPos=( 80.81, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3755.68, 83.87, 10995.53 ) LPos=( 63.56, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3758.47, 78.14, 10990.49 ) LPos=( 69.31, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3759.86, 78.15, 10987.97 ) LPos=( 72.19, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3762.65, 78.16, 10982.94 ) LPos=( 77.94, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3757.08, 75.26, 10992.99 ) LPos=( 66.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3755.68, 72.37, 10995.50 ) LPos=( 63.56, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3773.43, 44.47, 10963.38 ) LPos=( 100.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3772.03, 44.46, 10965.89 ) LPos=( 97.31, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3773.43, 47.34, 10963.38 ) LPos=( 100.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3774.82, 50.23, 10960.88 ) LPos=( 103.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3772.03, 53.09, 10965.92 ) LPos=( 97.31, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3767.85, 53.06, 10973.46 ) LPos=( 88.69, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3776.21, 55.98, 10958.38 ) LPos=( 105.94, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3769.25, 55.95, 10970.96 ) LPos=( 91.56, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3777.60, 58.87, 10955.87 ) LPos=( 108.81, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3776.21, 58.86, 10958.39 ) LPos=( 105.94, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3772.03, 58.84, 10965.93 ) LPos=( 97.31, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3770.64, 58.83, 10968.45 ) LPos=( 94.44, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3767.85, 58.81, 10973.48 ) LPos=( 88.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3776.21, 61.73, 10958.40 ) LPos=( 105.94, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3774.82, 61.73, 10960.91 ) LPos=( 103.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3773.42, 61.72, 10963.43 ) LPos=( 100.19, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3772.03, 61.71, 10965.94 ) LPos=( 97.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3767.85, 61.69, 10973.49 ) LPos=( 88.69, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3764.04, 53.04, 10980.35 ) LPos=( 80.81, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3762.65, 53.04, 10982.87 ) LPos=( 77.94, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3759.86, 61.65, 10987.92 ) LPos=( 72.19, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3758.47, 61.64, 10990.44 ) LPos=( 69.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3757.08, 47.26, 10992.91 ) LPos=( 66.44, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.25, 33.70, 10970.89 ) LPos=( 91.56, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3770.64, 16.45, 10968.32 ) LPos=( 94.44, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3772.03, 22.21, 10965.83 ) LPos=( 97.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3774.82, 16.48, 10960.78 ) LPos=( 103.06, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3776.21, 33.73, 10958.31 ) LPos=( 105.94, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3777.60, 16.49, 10955.75 ) LPos=( 108.81, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:146,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3762.65, 16.41, 10982.76 ) LPos=( 77.94, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3773.43, -11.53, 10963.21 ) LPos=( 100.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3764.04, 2.79, 10980.20 ) LPos=( 80.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3759.86, -0.10, 10987.74 ) LPos=( 72.19, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3758.47, -0.11, 10990.26 ) LPos=( 69.31, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3757.08, 2.76, 10992.78 ) LPos=( 66.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3767.86, -30.94, 10973.22 ) LPos=( 88.69, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3769.25, -42.43, 10970.67 ) LPos=( 91.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3770.64, -28.05, 10968.19 ) LPos=( 94.44, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3772.03, -28.04, 10965.68 ) LPos=( 97.31, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3776.21, -39.52, 10958.10 ) LPos=( 105.94, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3758.47, -22.36, 10990.19 ) LPos=( 69.31, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3769.25, -64.68, 10970.60 ) LPos=( 91.56, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3776.21, -56.02, 10958.05 ) LPos=( 105.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3777.61, -53.13, 10955.54 ) LPos=( 108.81, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3767.86, -53.19, 10973.15 ) LPos=( 88.69, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3762.65, -53.21, 10982.56 ) LPos=( 77.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3754.29, -64.76, 10997.61 ) LPos=( 60.69, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3769.25, -89.80, 10970.53 ) LPos=( 91.56, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3769.25, -78.30, 10970.56 ) LPos=( 91.56, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3770.64, -92.67, 10968.00 ) LPos=( 94.44, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3772.04, -92.66, 10965.49 ) LPos=( 97.31, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3764.04, -81.21, 10979.96 ) LPos=( 80.81, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3755.69, -84.13, 10995.04 ) LPos=( 63.56, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3759.87, -86.98, 10987.49 ) LPos=( 72.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3761.26, -89.85, 10984.96 ) LPos=( 75.06, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3759.87, -92.73, 10987.47 ) LPos=( 72.19, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3758.47, -95.61, 10989.98 ) LPos=( 69.31, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3776.22, -126.39, 10957.84 ) LPos=( 105.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3777.61, -123.51, 10955.34 ) LPos=( 108.81, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3777.61, -117.76, 10955.35 ) LPos=( 108.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3773.43, -117.78, 10962.90 ) LPos=( 100.19, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3769.25, -117.80, 10970.45 ) LPos=( 91.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3777.61, -112.01, 10955.37 ) LPos=( 108.81, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3776.22, -112.02, 10957.89 ) LPos=( 105.94, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3757.08, -112.12, 10992.44 ) LPos=( 66.44, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3755.69, -123.63, 10994.92 ) LPos=( 63.56, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3774.82, -142.90, 10960.31 ) LPos=( 103.06, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3776.22, -148.64, 10957.78 ) LPos=( 105.94, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3777.61, -142.88, 10955.28 ) LPos=( 108.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3761.26, -154.47, 10984.77 ) LPos=( 75.06, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3770.65, -182.42, 10967.74 ) LPos=( 94.44, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:147,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3754.30, -199.01, 10997.22 ) LPos=( 60.69, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3767.41, -257.38, 10973.37 ) LPos=( 87.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3773.22, -257.34, 10962.87 ) LPos=( 99.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3761.60, -263.41, 10983.85 ) LPos=( 75.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3773.22, -263.34, 10962.86 ) LPos=( 99.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3776.13, -277.33, 10957.57 ) LPos=( 105.75, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3761.60, -295.41, 10983.76 ) LPos=( 75.75, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3764.50, -313.39, 10978.46 ) LPos=( 81.75, -312.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3758.69, -339.42, 10988.88 ) LPos=( 69.75, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:148,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3770.32, -431.36, 10967.61 ) LPos=( 93.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3764.51, -501.39, 10977.90 ) LPos=( 81.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3764.51, -513.39, 10977.87 ) LPos=( 81.75, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3764.51, -531.39, 10977.82 ) LPos=( 81.75, -530.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3755.79, -599.44, 10993.36 ) LPos=( 63.75, -598.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3773.23, -613.34, 10961.83 ) LPos=( 99.75, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3761.61, -619.40, 10982.81 ) LPos=( 75.75, -618.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3803.47, 612.81, 10910.75 ) LPos=( 162.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3786.03, 556.72, 10942.08 ) LPos=( 126.25, 557.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3794.75, 544.77, 10926.30 ) LPos=( 144.25, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3803.47, 538.81, 10910.53 ) LPos=( 162.25, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3797.66, 532.78, 10921.01 ) LPos=( 150.25, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3794.75, 526.77, 10926.24 ) LPos=( 144.25, 527.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3803.47, 488.81, 10910.39 ) LPos=( 162.25, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3786.04, 476.72, 10941.84 ) LPos=( 126.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:150,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3794.76, 476.77, 10926.10 ) LPos=( 144.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3797.67, 320.78, 10920.39 ) LPos=( 150.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3783.14, 302.71, 10946.58 ) LPos=( 120.25, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3788.95, 296.74, 10936.07 ) LPos=( 132.25, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3803.48, 258.82, 10909.71 ) LPos=( 162.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3803.48, 246.82, 10909.67 ) LPos=( 162.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3804.97, 212.64, 10906.90 ) LPos=( 165.31, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3800.79, 212.61, 10914.44 ) LPos=( 156.69, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3800.79, 218.36, 10914.46 ) LPos=( 156.69, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3799.40, 221.23, 10916.98 ) LPos=( 153.81, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3796.61, 221.22, 10922.01 ) LPos=( 148.06, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3790.01, 215.43, 10933.91 ) LPos=( 134.44, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3799.40, 181.73, 10916.87 ) LPos=( 153.81, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3803.57, 181.75, 10909.32 ) LPos=( 162.44, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3804.97, 184.64, 10906.81 ) LPos=( 165.31, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3804.97, 199.01, 10906.86 ) LPos=( 165.31, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3795.22, 156.58, 10924.34 ) LPos=( 145.19, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3803.58, 162.38, 10909.26 ) LPos=( 162.44, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3804.97, 165.26, 10906.76 ) LPos=( 165.31, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3798.00, 173.85, 10919.36 ) LPos=( 150.94, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3787.23, 153.67, 10938.76 ) LPos=( 128.69, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3795.22, 128.58, 10924.25 ) LPos=( 145.19, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3798.01, 125.72, 10919.22 ) LPos=( 150.94, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3798.01, 140.10, 10919.26 ) LPos=( 150.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3800.79, 137.24, 10914.22 ) LPos=( 156.69, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3802.18, 128.62, 10911.68 ) LPos=( 159.56, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3803.58, 125.75, 10909.16 ) LPos=( 162.44, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3803.58, 131.50, 10909.17 ) LPos=( 162.44, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3803.58, 137.25, 10909.19 ) LPos=( 162.44, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3804.97, 128.64, 10906.65 ) LPos=( 165.31, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3804.97, 134.39, 10906.67 ) LPos=( 165.31, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3804.97, 137.26, 10906.67 ) LPos=( 165.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3781.66, 134.26, 10948.77 ) LPos=( 117.19, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3791.41, 131.44, 10931.15 ) LPos=( 137.31, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3791.41, 128.56, 10931.14 ) LPos=( 137.31, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3800.79, 109.24, 10914.14 ) LPos=( 156.69, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3804.97, 112.14, 10906.60 ) LPos=( 165.31, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3802.18, 117.87, 10911.65 ) LPos=( 159.56, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3795.22, 89.83, 10924.14 ) LPos=( 145.19, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3799.40, 81.23, 10916.57 ) LPos=( 153.81, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3802.19, 72.62, 10911.51 ) LPos=( 159.56, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3784.44, 69.65, 10943.55 ) LPos=( 122.94, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3800.79, 50.36, 10913.96 ) LPos=( 156.69, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3798.01, 53.22, 10919.00 ) LPos=( 150.94, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3791.41, 50.31, 10930.91 ) LPos=( 137.31, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3788.62, 44.55, 10935.93 ) LPos=( 131.56, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3788.62, 41.67, 10935.92 ) LPos=( 131.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3799.40, 25.23, 10916.41 ) LPos=( 153.81, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3799.40, 30.98, 10916.42 ) LPos=( 153.81, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3802.19, 31.00, 10911.39 ) LPos=( 159.56, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3804.97, 25.26, 10906.35 ) LPos=( 165.31, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3788.62, 30.92, 10935.89 ) LPos=( 131.56, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3781.66, 25.14, 10948.45 ) LPos=( 117.19, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3791.41, 25.19, 10930.84 ) LPos=( 137.31, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3799.40, -11.39, 10916.30 ) LPos=( 153.81, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3799.40, 5.86, 10916.35 ) LPos=( 153.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3784.45, -11.47, 10943.31 ) LPos=( 122.94, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3795.23, -30.79, 10923.79 ) LPos=( 145.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3796.62, -27.91, 10921.28 ) LPos=( 148.06, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3798.01, -30.78, 10918.76 ) LPos=( 150.94, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3802.19, -30.75, 10911.21 ) LPos=( 159.56, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3804.97, -39.36, 10906.16 ) LPos=( 165.31, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3804.97, -30.74, 10906.18 ) LPos=( 165.31, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3787.23, -27.96, 10938.23 ) LPos=( 128.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3784.45, -33.72, 10943.24 ) LPos=( 122.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3788.63, -36.58, 10935.69 ) LPos=( 131.56, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3803.58, -70.25, 10908.58 ) LPos=( 162.44, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3799.40, -70.27, 10916.13 ) LPos=( 153.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3798.01, -50.15, 10918.70 ) LPos=( 150.94, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3790.02, -58.82, 10933.11 ) LPos=( 134.44, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3787.23, -67.46, 10938.11 ) LPos=( 128.69, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3785.84, -64.59, 10940.64 ) LPos=( 125.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3784.45, -53.10, 10943.19 ) LPos=( 122.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3784.45, -67.47, 10943.14 ) LPos=( 122.94, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3784.45, -78.22, 10943.11 ) LPos=( 122.94, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3781.66, -98.36, 10948.08 ) LPos=( 117.19, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3799.41, -117.64, 10915.99 ) LPos=( 153.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3802.19, -106.13, 10910.99 ) LPos=( 159.56, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3791.41, -126.31, 10930.40 ) LPos=( 137.31, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3790.02, -120.57, 10932.93 ) LPos=( 134.44, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3788.63, -114.83, 10935.46 ) LPos=( 131.56, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3787.24, -114.83, 10937.98 ) LPos=( 128.69, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3784.45, -109.10, 10943.02 ) LPos=( 122.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3784.45, -117.72, 10943.00 ) LPos=( 122.94, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3784.45, -126.35, 10942.97 ) LPos=( 122.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3783.06, -117.73, 10945.51 ) LPos=( 120.06, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3799.41, -139.89, 10915.92 ) LPos=( 153.81, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3803.58, -137.00, 10908.38 ) LPos=( 162.44, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3787.24, -134.21, 10937.92 ) LPos=( 128.69, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3787.24, -139.96, 10937.90 ) LPos=( 128.69, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3790.02, -139.94, 10932.87 ) LPos=( 134.44, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3790.02, -145.69, 10932.85 ) LPos=( 134.44, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3804.98, -182.24, 10905.74 ) LPos=( 165.31, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3802.19, -182.25, 10910.77 ) LPos=( 159.56, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3802.19, -173.63, 10910.79 ) LPos=( 159.56, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3802.19, -167.88, 10910.81 ) LPos=( 159.56, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3791.42, -182.31, 10930.23 ) LPos=( 137.31, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3795.23, -193.04, 10923.31 ) LPos=( 145.19, -192.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3796.62, -201.66, 10920.77 ) LPos=( 148.06, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3798.02, -207.40, 10918.24 ) LPos=( 150.94, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3799.41, -201.64, 10915.74 ) LPos=( 153.81, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3804.98, -190.11, 10905.71 ) LPos=( 165.31, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:153,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3783.06, -207.48, 10945.25 ) LPos=( 120.06, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3786.06, -227.28, 10939.78 ) LPos=( 126.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3791.87, -233.24, 10929.26 ) LPos=( 138.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3794.78, -245.23, 10923.98 ) LPos=( 144.25, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3797.68, -245.21, 10918.73 ) LPos=( 150.25, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3803.50, -257.18, 10908.20 ) LPos=( 162.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3786.06, -289.28, 10939.60 ) LPos=( 126.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3794.78, -289.23, 10923.85 ) LPos=( 144.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3800.59, -289.20, 10913.35 ) LPos=( 156.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3783.15, -307.29, 10944.79 ) LPos=( 120.25, -306.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3791.88, -407.24, 10928.75 ) LPos=( 138.25, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:154,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3786.06, -431.27, 10939.18 ) LPos=( 126.25, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3797.69, -501.21, 10917.98 ) LPos=( 150.25, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3791.88, -575.24, 10928.26 ) LPos=( 138.25, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3788.98, -625.26, 10933.36 ) LPos=( 132.25, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3794.79, -625.23, 10922.86 ) LPos=( 144.25, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3791.88, -631.24, 10928.09 ) LPos=( 138.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3794.79, -631.23, 10922.85 ) LPos=( 144.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3797.70, -631.21, 10917.60 ) LPos=( 150.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3800.60, -631.20, 10912.35 ) LPos=( 156.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3803.51, -631.18, 10907.10 ) LPos=( 162.25, -630.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3803.51, -637.18, 10907.08 ) LPos=( 162.25, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,00 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.40, 644.87, 10892.91 ) LPos=( 182.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3810.50, 538.85, 10897.85 ) LPos=( 176.75, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3813.40, 538.87, 10892.60 ) LPos=( 182.75, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.40, 532.87, 10892.58 ) LPos=( 182.75, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3822.12, 532.91, 10876.83 ) LPos=( 200.75, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3825.03, 526.93, 10871.57 ) LPos=( 206.75, 527.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3813.40, 520.87, 10892.54 ) LPos=( 182.75, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.03, 520.93, 10871.55 ) LPos=( 206.75, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3810.50, 494.85, 10897.72 ) LPos=( 176.75, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:156,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3810.50, 488.85, 10897.70 ) LPos=( 176.75, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3810.50, 426.85, 10897.52 ) LPos=( 176.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.41, 420.87, 10892.25 ) LPos=( 182.75, 421.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3819.22, 420.90, 10881.75 ) LPos=( 194.75, 421.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3827.94, 394.94, 10865.93 ) LPos=( 212.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3822.13, 370.91, 10876.36 ) LPos=( 200.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3825.03, 370.93, 10871.11 ) LPos=( 206.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3825.04, 326.93, 10870.98 ) LPos=( 206.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3813.41, 314.87, 10891.94 ) LPos=( 182.75, 315.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3827.94, 308.95, 10865.68 ) LPos=( 212.75, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3810.50, 302.85, 10897.15 ) LPos=( 176.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3825.04, 302.93, 10870.91 ) LPos=( 206.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3827.94, 296.95, 10865.64 ) LPos=( 212.75, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3830.85, 296.96, 10860.39 ) LPos=( 218.75, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3822.13, 276.91, 10876.08 ) LPos=( 200.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3813.41, 246.87, 10891.74 ) LPos=( 182.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3816.32, 246.88, 10886.49 ) LPos=( 188.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3819.23, 240.90, 10881.22 ) LPos=( 194.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3814.59, 224.19, 10889.54 ) LPos=( 185.19, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3814.59, 218.44, 10889.52 ) LPos=( 185.19, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3814.59, 209.81, 10889.50 ) LPos=( 185.19, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3809.02, 221.28, 10899.59 ) LPos=( 173.69, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3822.59, 199.10, 10875.03 ) LPos=( 201.69, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3825.37, 190.49, 10869.98 ) LPos=( 207.44, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3826.77, 181.88, 10867.44 ) LPos=( 210.31, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3815.99, 199.07, 10886.95 ) LPos=( 188.06, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3826.77, 159.63, 10867.37 ) LPos=( 210.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3830.94, 162.52, 10859.83 ) LPos=( 218.94, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3817.38, 165.33, 10884.34 ) LPos=( 190.94, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3817.38, 156.70, 10884.31 ) LPos=( 190.94, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3814.60, 159.56, 10889.35 ) LPos=( 185.19, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3813.20, 168.18, 10891.89 ) LPos=( 182.31, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3810.42, 162.41, 10896.91 ) LPos=( 176.56, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3829.55, 125.89, 10862.24 ) LPos=( 216.06, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3832.34, 131.66, 10857.23 ) LPos=( 221.81, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3810.42, 143.04, 10896.85 ) LPos=( 176.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3811.81, 137.30, 10894.32 ) LPos=( 179.44, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3809.03, 131.53, 10899.33 ) LPos=( 173.69, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3809.03, 128.66, 10899.32 ) LPos=( 173.69, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3830.95, 109.40, 10859.68 ) LPos=( 218.94, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3823.98, 117.99, 10872.28 ) LPos=( 204.56, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3814.60, 117.94, 10889.23 ) LPos=( 185.19, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3828.16, 90.01, 10864.65 ) LPos=( 213.19, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3815.99, 81.32, 10886.61 ) LPos=( 188.06, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3818.78, 81.33, 10881.58 ) LPos=( 193.81, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3822.59, 47.61, 10874.59 ) LPos=( 201.69, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3818.78, 44.71, 10881.47 ) LPos=( 193.81, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3818.78, 41.84, 10881.46 ) LPos=( 193.81, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3814.60, 44.69, 10889.01 ) LPos=( 185.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3822.59, 28.23, 10874.53 ) LPos=( 201.69, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3828.16, 16.76, 10864.44 ) LPos=( 213.19, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3829.56, 28.27, 10861.96 ) LPos=( 216.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3809.03, 33.91, 10899.04 ) LPos=( 173.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3818.78, 19.59, 10881.40 ) LPos=( 193.81, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3811.81, 16.67, 10893.96 ) LPos=( 179.44, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3829.56, -11.23, 10861.84 ) LPos=( 216.06, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3826.77, -11.25, 10866.87 ) LPos=( 210.31, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3830.95, -8.35, 10859.33 ) LPos=( 218.94, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3830.95, -5.47, 10859.34 ) LPos=( 218.94, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3822.59, -5.52, 10874.43 ) LPos=( 201.69, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3830.95, 3.15, 10859.37 ) LPos=( 218.94, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3822.59, 3.11, 10874.46 ) LPos=( 201.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3815.99, -5.55, 10886.35 ) LPos=( 188.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3815.99, -14.18, 10886.33 ) LPos=( 188.06, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3813.21, -14.19, 10891.36 ) LPos=( 182.31, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3811.82, -5.58, 10893.90 ) LPos=( 179.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3810.42, -11.33, 10896.40 ) LPos=( 176.56, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3825.38, -27.75, 10869.34 ) LPos=( 207.44, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3832.34, -36.34, 10856.74 ) LPos=( 221.81, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3809.03, -22.09, 10898.88 ) LPos=( 173.69, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3810.42, -22.08, 10896.36 ) LPos=( 176.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3811.82, -22.08, 10893.85 ) LPos=( 179.44, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3809.03, -24.97, 10898.87 ) LPos=( 173.69, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3813.21, -24.94, 10891.33 ) LPos=( 182.31, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3815.99, -24.93, 10886.30 ) LPos=( 188.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3809.03, -27.84, 10898.86 ) LPos=( 173.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3810.42, -27.83, 10896.35 ) LPos=( 176.56, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3814.60, -30.69, 10888.79 ) LPos=( 185.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3817.39, -33.55, 10883.75 ) LPos=( 190.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3815.99, -36.43, 10886.26 ) LPos=( 188.06, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3817.39, -36.42, 10883.75 ) LPos=( 190.94, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3815.99, -42.18, 10886.24 ) LPos=( 188.06, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3826.77, -70.12, 10866.70 ) LPos=( 210.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3832.34, -61.47, 10856.66 ) LPos=( 221.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3832.34, -55.72, 10856.68 ) LPos=( 221.81, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3830.95, -55.72, 10859.19 ) LPos=( 218.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3828.17, -55.74, 10864.22 ) LPos=( 213.19, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3832.34, -52.84, 10856.69 ) LPos=( 221.81, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3818.78, -58.66, 10881.17 ) LPos=( 193.81, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3813.21, -58.69, 10891.23 ) LPos=( 182.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3814.60, -78.06, 10888.65 ) LPos=( 185.19, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3816.00, -83.80, 10886.12 ) LPos=( 188.06, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3814.60, -86.69, 10888.63 ) LPos=( 185.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3816.00, -86.68, 10886.11 ) LPos=( 188.06, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3822.60, -123.27, 10874.09 ) LPos=( 201.69, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3822.60, -120.39, 10874.10 ) LPos=( 201.69, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.38, -106.00, 10869.11 ) LPos=( 207.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3818.78, -126.16, 10880.97 ) LPos=( 193.81, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3817.39, -126.17, 10883.48 ) LPos=( 190.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3816.00, -126.18, 10886.00 ) LPos=( 188.06, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3814.60, -126.19, 10888.51 ) LPos=( 185.19, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3811.82, -134.08, 10893.52 ) LPos=( 179.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3813.21, -139.82, 10890.99 ) LPos=( 182.31, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3811.82, -142.70, 10893.50 ) LPos=( 179.44, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3809.03, -148.47, 10898.51 ) LPos=( 173.69, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3810.43, -151.33, 10895.98 ) LPos=( 176.56, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3822.60, -173.52, 10873.94 ) LPos=( 201.69, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3829.56, -170.61, 10861.37 ) LPos=( 216.06, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3828.17, -164.86, 10863.90 ) LPos=( 213.19, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.38, -162.00, 10868.94 ) LPos=( 207.44, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3816.00, -173.55, 10885.86 ) LPos=( 188.06, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3813.21, -173.57, 10890.89 ) LPos=( 182.31, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3830.96, -204.35, 10858.76 ) LPos=( 218.94, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3832.35, -207.22, 10856.23 ) LPos=( 221.81, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:159,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3832.35, -204.34, 10856.24 ) LPos=( 221.81, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3816.33, -221.11, 10885.12 ) LPos=( 188.75, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3827.96, -239.05, 10864.07 ) LPos=( 212.75, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3822.15, -257.08, 10874.51 ) LPos=( 200.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3825.05, -277.07, 10869.21 ) LPos=( 206.75, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3813.43, -313.13, 10890.10 ) LPos=( 182.75, -312.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3830.87, -375.04, 10858.42 ) LPos=( 218.75, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:160,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3827.96, -425.05, 10863.52 ) LPos=( 212.75, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3825.06, -475.07, 10868.63 ) LPos=( 206.75, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3810.53, -557.14, 10894.63 ) LPos=( 176.75, -556.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3825.06, -637.07, 10868.15 ) LPos=( 206.75, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3810.53, -643.14, 10894.38 ) LPos=( 176.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3813.44, -643.13, 10889.13 ) LPos=( 182.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3816.35, -643.11, 10883.88 ) LPos=( 188.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3819.25, -643.10, 10878.63 ) LPos=( 194.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3816.35, -649.11, 10883.86 ) LPos=( 188.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3819.25, -649.10, 10878.61 ) LPos=( 194.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3822.16, -649.08, 10873.36 ) LPos=( 200.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3822.16, -655.08, 10873.35 ) LPos=( 200.75, -654.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3825.06, -655.07, 10868.10 ) LPos=( 206.75, -654.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3837.86, 613.00, 10848.64 ) LPos=( 233.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3840.77, 613.01, 10843.39 ) LPos=( 239.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3840.77, 601.01, 10843.35 ) LPos=( 239.25, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3840.77, 583.01, 10843.30 ) LPos=( 239.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3843.68, 583.03, 10838.05 ) LPos=( 245.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3837.87, 545.00, 10848.44 ) LPos=( 233.25, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.49, 533.06, 10827.40 ) LPos=( 257.25, 533.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3837.87, 521.00, 10848.37 ) LPos=( 233.25, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:162,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3846.59, 507.04, 10832.58 ) LPos=( 251.25, 507.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.50, 365.06, 10826.91 ) LPos=( 257.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3852.40, 365.08, 10821.66 ) LPos=( 263.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3855.31, 365.09, 10816.41 ) LPos=( 269.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3840.78, 359.01, 10842.64 ) LPos=( 239.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3852.40, 359.08, 10821.64 ) LPos=( 263.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3852.40, 315.08, 10821.52 ) LPos=( 263.25, 315.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3837.87, 309.00, 10847.74 ) LPos=( 233.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3840.78, 309.01, 10842.49 ) LPos=( 239.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3858.22, 309.11, 10811.00 ) LPos=( 275.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3855.31, 297.09, 10816.21 ) LPos=( 269.25, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3849.50, 277.06, 10826.65 ) LPos=( 257.25, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3837.87, 271.00, 10847.63 ) LPos=( 233.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3843.69, 271.03, 10837.13 ) LPos=( 245.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3852.41, 271.08, 10821.39 ) LPos=( 263.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3837.87, 265.00, 10847.61 ) LPos=( 233.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3849.50, 259.06, 10826.60 ) LPos=( 257.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.50, 253.06, 10826.58 ) LPos=( 257.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3852.41, 253.08, 10821.33 ) LPos=( 263.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3837.87, 247.00, 10847.56 ) LPos=( 233.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3858.22, 241.11, 10810.80 ) LPos=( 275.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3854.13, 212.90, 10818.10 ) LPos=( 266.81, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3851.35, 212.88, 10823.13 ) LPos=( 261.06, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3859.70, 215.80, 10808.05 ) LPos=( 278.31, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3854.13, 218.65, 10818.12 ) LPos=( 266.81, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3852.74, 227.27, 10820.66 ) LPos=( 263.94, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3840.57, 215.70, 10842.60 ) LPos=( 238.81, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3837.78, 227.19, 10847.67 ) LPos=( 233.06, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3851.35, 184.88, 10823.05 ) LPos=( 261.06, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3855.53, 196.41, 10815.54 ) LPos=( 269.69, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3855.53, 202.16, 10815.55 ) LPos=( 269.69, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3836.39, 202.05, 10850.11 ) LPos=( 230.19, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3843.36, 202.09, 10837.53 ) LPos=( 244.56, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3843.36, 190.59, 10837.50 ) LPos=( 244.56, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3840.57, 187.70, 10842.52 ) LPos=( 238.81, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3856.92, 162.66, 10812.92 ) LPos=( 272.56, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3859.71, 171.30, 10807.92 ) LPos=( 278.31, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3837.79, 156.81, 10847.46 ) LPos=( 233.06, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3849.96, 131.75, 10825.41 ) LPos=( 258.19, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3854.14, 143.27, 10817.89 ) LPos=( 266.81, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3856.92, 126.04, 10812.81 ) LPos=( 272.56, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3856.92, 131.79, 10812.83 ) LPos=( 272.56, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3856.92, 143.29, 10812.86 ) LPos=( 272.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3859.71, 143.30, 10807.83 ) LPos=( 278.31, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3837.79, 131.69, 10847.39 ) LPos=( 233.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3840.57, 125.95, 10842.34 ) LPos=( 238.81, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3841.97, 125.96, 10839.82 ) LPos=( 241.69, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3849.96, 100.88, 10825.32 ) LPos=( 258.19, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3858.31, 106.67, 10810.24 ) LPos=( 275.44, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3851.35, 106.63, 10822.82 ) LPos=( 261.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3858.31, 112.42, 10810.26 ) LPos=( 275.44, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3856.92, 112.41, 10812.77 ) LPos=( 272.56, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3855.53, 118.16, 10815.31 ) LPos=( 269.69, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3837.79, 106.56, 10847.31 ) LPos=( 233.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3851.35, 90.13, 10822.77 ) LPos=( 261.06, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3855.53, 90.16, 10815.22 ) LPos=( 269.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3856.92, 90.16, 10812.71 ) LPos=( 272.56, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3858.32, 81.55, 10810.17 ) LPos=( 275.44, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3859.71, 87.30, 10807.67 ) LPos=( 278.31, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3844.75, 87.22, 10834.68 ) LPos=( 247.44, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3851.35, 42.01, 10822.63 ) LPos=( 261.06, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3849.96, 59.25, 10825.19 ) LPos=( 258.19, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3851.35, 62.13, 10822.69 ) LPos=( 261.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3846.15, 53.48, 10832.07 ) LPos=( 250.31, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3846.15, 41.98, 10832.03 ) LPos=( 250.31, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3849.96, 28.38, 10825.10 ) LPos=( 258.19, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3855.53, 14.03, 10815.00 ) LPos=( 269.69, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3856.92, 14.04, 10812.48 ) LPos=( 272.56, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3856.92, 16.91, 10812.49 ) LPos=( 272.56, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3856.92, 34.16, 10812.54 ) LPos=( 272.56, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3858.32, 22.67, 10809.99 ) LPos=( 275.44, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3858.32, 25.55, 10810.00 ) LPos=( 275.44, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3837.79, 25.44, 10847.07 ) LPos=( 233.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3843.36, 25.47, 10837.01 ) LPos=( 244.56, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3846.15, 22.61, 10831.98 ) LPos=( 250.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3837.79, 16.81, 10847.05 ) LPos=( 233.06, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3846.15, 13.98, 10831.95 ) LPos=( 250.31, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3855.53, -13.97, 10814.92 ) LPos=( 269.69, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3856.93, -11.09, 10812.41 ) LPos=( 272.56, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3855.53, -8.22, 10814.93 ) LPos=( 269.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3849.96, -8.25, 10825.00 ) LPos=( 258.19, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3852.75, -5.36, 10819.97 ) LPos=( 263.94, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3855.53, -2.47, 10814.95 ) LPos=( 269.69, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3858.32, 0.42, 10809.93 ) LPos=( 275.44, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3843.36, 0.34, 10836.94 ) LPos=( 244.56, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3840.58, -8.30, 10841.95 ) LPos=( 238.81, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3839.18, 0.32, 10844.49 ) LPos=( 235.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3839.18, -2.56, 10844.48 ) LPos=( 235.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3849.96, -39.12, 10824.90 ) LPos=( 258.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3852.75, -24.73, 10819.92 ) LPos=( 263.94, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3855.53, -27.59, 10814.88 ) LPos=( 269.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3856.93, -24.71, 10812.37 ) LPos=( 272.56, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3859.71, -24.70, 10807.34 ) LPos=( 278.31, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3836.40, -30.57, 10849.43 ) LPos=( 230.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3843.36, -42.03, 10836.82 ) LPos=( 244.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3854.14, -69.98, 10817.27 ) LPos=( 266.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3854.14, -64.23, 10817.29 ) LPos=( 266.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3859.71, -61.32, 10807.23 ) LPos=( 278.31, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3859.71, -49.82, 10807.27 ) LPos=( 278.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3843.36, -64.28, 10836.75 ) LPos=( 244.56, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3841.97, -58.54, 10839.28 ) LPos=( 241.69, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3852.75, -77.86, 10819.76 ) LPos=( 263.94, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3858.32, -97.95, 10809.64 ) LPos=( 275.44, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3858.32, -95.08, 10809.65 ) LPos=( 275.44, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3858.32, -92.20, 10809.66 ) LPos=( 275.44, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3859.71, -95.07, 10807.13 ) LPos=( 278.31, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3836.40, -86.57, 10849.26 ) LPos=( 230.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3846.15, -86.52, 10831.65 ) LPos=( 250.31, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3841.97, -95.17, 10839.18 ) LPos=( 241.69, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3839.19, -98.06, 10844.20 ) LPos=( 235.94, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3846.15, -98.02, 10831.62 ) LPos=( 250.31, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3856.93, -125.96, 10812.07 ) LPos=( 272.56, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3856.93, -120.21, 10812.09 ) LPos=( 272.56, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3855.54, -120.22, 10814.61 ) LPos=( 269.69, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3859.71, -117.32, 10807.07 ) LPos=( 278.31, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3858.32, -114.45, 10809.59 ) LPos=( 275.44, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3856.93, -114.46, 10812.11 ) LPos=( 272.56, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3851.36, -114.49, 10822.17 ) LPos=( 261.06, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3859.71, -111.57, 10807.09 ) LPos=( 278.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3854.14, -111.60, 10817.15 ) LPos=( 266.81, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3852.75, -111.61, 10819.66 ) LPos=( 263.94, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3849.96, -108.75, 10824.70 ) LPos=( 258.19, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3858.32, -105.83, 10809.62 ) LPos=( 275.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3844.76, -105.90, 10834.11 ) LPos=( 247.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3843.37, -111.66, 10836.61 ) LPos=( 244.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3841.97, -111.67, 10839.13 ) LPos=( 241.69, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3841.97, -126.04, 10839.08 ) LPos=( 241.69, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3837.79, -114.56, 10846.66 ) LPos=( 233.06, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3852.75, -153.98, 10819.54 ) LPos=( 263.94, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3852.75, -142.48, 10819.57 ) LPos=( 263.94, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3854.14, -142.48, 10817.06 ) LPos=( 266.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3856.93, -145.34, 10812.02 ) LPos=( 272.56, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3856.93, -136.71, 10812.04 ) LPos=( 272.56, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3856.93, -133.84, 10812.05 ) LPos=( 272.56, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3859.71, -148.20, 10806.98 ) LPos=( 278.31, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3840.58, -136.80, 10841.57 ) LPos=( 238.81, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3841.97, -136.79, 10839.05 ) LPos=( 241.69, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3837.80, -145.44, 10846.57 ) LPos=( 233.06, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3846.15, -154.02, 10831.46 ) LPos=( 250.31, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3851.36, -179.12, 10821.98 ) LPos=( 261.06, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3855.54, -170.47, 10814.46 ) LPos=( 269.69, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3851.36, -164.74, 10822.02 ) LPos=( 261.06, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3854.15, -195.60, 10816.90 ) LPos=( 266.81, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3858.32, -204.20, 10809.33 ) LPos=( 275.44, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:165,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3839.19, -210.06, 10843.87 ) LPos=( 235.94, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3858.23, -220.89, 10809.44 ) LPos=( 275.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3855.33, -226.91, 10814.68 ) LPos=( 269.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3858.23, -232.89, 10809.41 ) LPos=( 275.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3843.70, -250.97, 10835.60 ) LPos=( 245.25, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3846.61, -256.95, 10830.33 ) LPos=( 251.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3852.42, -256.92, 10819.84 ) LPos=( 263.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3840.80, -262.98, 10840.81 ) LPos=( 239.25, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3843.70, -276.97, 10835.52 ) LPos=( 245.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3852.42, -276.92, 10819.78 ) LPos=( 263.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3855.33, -276.91, 10814.53 ) LPos=( 269.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3843.70, -282.97, 10835.51 ) LPos=( 245.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3849.52, -282.94, 10825.01 ) LPos=( 257.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3840.80, -288.98, 10840.74 ) LPos=( 239.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3849.52, -288.94, 10824.99 ) LPos=( 257.25, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3837.89, -301.00, 10845.95 ) LPos=( 233.25, -300.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3837.89, -333.00, 10845.86 ) LPos=( 233.25, -332.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:166,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3855.33, -424.91, 10814.09 ) LPos=( 269.25, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3858.24, -450.89, 10808.77 ) LPos=( 275.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3855.33, -480.91, 10813.93 ) LPos=( 269.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3858.24, -480.89, 10808.68 ) LPos=( 275.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3852.43, -486.92, 10819.16 ) LPos=( 263.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3855.33, -486.91, 10813.91 ) LPos=( 269.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3855.34, -500.91, 10813.87 ) LPos=( 269.25, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3858.24, -506.89, 10808.60 ) LPos=( 275.25, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3855.34, -524.91, 10813.80 ) LPos=( 269.25, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3858.24, -536.89, 10808.52 ) LPos=( 275.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3852.43, -574.92, 10818.90 ) LPos=( 263.25, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3849.53, -586.94, 10824.12 ) LPos=( 257.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:167,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3852.43, -618.92, 10818.77 ) LPos=( 263.25, -618.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3865.23, 651.14, 10799.32 ) LPos=( 289.75, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3865.23, 645.14, 10799.30 ) LPos=( 289.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3868.14, 645.16, 10794.05 ) LPos=( 295.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3865.23, 639.14, 10799.28 ) LPos=( 289.75, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3871.04, 639.17, 10788.78 ) LPos=( 301.75, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3868.14, 633.16, 10794.02 ) LPos=( 295.75, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3873.95, 633.19, 10783.52 ) LPos=( 307.75, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3871.05, 601.17, 10788.67 ) LPos=( 301.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3865.23, 589.14, 10799.14 ) LPos=( 289.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3865.24, 489.14, 10798.84 ) LPos=( 289.75, 489.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3868.14, 477.16, 10793.56 ) LPos=( 295.75, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:168,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3868.14, 465.16, 10793.52 ) LPos=( 295.75, 465.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3876.86, 427.21, 10777.66 ) LPos=( 313.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3879.77, 427.22, 10772.42 ) LPos=( 319.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.77, 415.22, 10772.38 ) LPos=( 319.75, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3876.86, 389.21, 10777.55 ) LPos=( 313.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3879.77, 389.22, 10772.30 ) LPos=( 319.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.15, 383.16, 10793.28 ) LPos=( 295.75, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3873.96, 383.19, 10782.78 ) LPos=( 307.75, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3873.96, 365.19, 10782.73 ) LPos=( 307.75, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3873.96, 359.19, 10782.71 ) LPos=( 307.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.77, 359.22, 10772.22 ) LPos=( 319.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3873.96, 353.19, 10782.70 ) LPos=( 307.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3865.24, 327.14, 10798.37 ) LPos=( 289.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.15, 327.16, 10793.12 ) LPos=( 295.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3879.77, 327.22, 10772.12 ) LPos=( 319.75, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.15, 271.16, 10792.95 ) LPos=( 295.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3873.96, 271.19, 10782.46 ) LPos=( 307.75, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3865.24, 265.14, 10798.19 ) LPos=( 289.75, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3865.24, 259.14, 10798.17 ) LPos=( 289.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3879.77, 259.22, 10771.92 ) LPos=( 319.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3885.59, 241.25, 10761.37 ) LPos=( 331.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3884.29, 230.31, 10763.69 ) LPos=( 329.06, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3866.55, 218.71, 10795.70 ) LPos=( 292.44, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3881.50, 187.92, 10768.60 ) LPos=( 323.31, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.89, 199.43, 10766.11 ) LPos=( 326.19, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3863.76, 196.45, 10800.66 ) LPos=( 286.69, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3863.76, 184.95, 10800.63 ) LPos=( 286.69, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3882.90, 154.18, 10765.98 ) LPos=( 326.19, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3882.90, 157.05, 10765.99 ) LPos=( 326.19, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3882.90, 174.30, 10766.04 ) LPos=( 326.19, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3873.51, 165.63, 10782.97 ) LPos=( 306.81, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3865.15, 165.58, 10798.06 ) LPos=( 289.56, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3863.76, 171.32, 10800.59 ) LPos=( 286.69, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3877.33, 140.52, 10776.00 ) LPos=( 314.69, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3877.33, 143.40, 10776.01 ) LPos=( 314.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3882.90, 137.68, 10765.93 ) LPos=( 326.19, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3887.07, 137.70, 10758.39 ) LPos=( 334.81, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.12, 143.37, 10785.42 ) LPos=( 303.94, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3872.12, 140.49, 10785.41 ) LPos=( 303.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3863.76, 137.57, 10800.49 ) LPos=( 286.69, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3867.94, 128.97, 10792.92 ) LPos=( 295.31, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3884.29, 98.18, 10763.30 ) LPos=( 329.06, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3887.08, 103.95, 10758.29 ) LPos=( 334.81, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3880.11, 103.91, 10770.86 ) LPos=( 320.44, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3885.68, 106.82, 10760.81 ) LPos=( 331.94, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.29, 106.81, 10763.33 ) LPos=( 329.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3880.11, 106.79, 10770.87 ) LPos=( 320.44, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.12, 100.99, 10785.29 ) LPos=( 303.94, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3867.94, 103.85, 10792.85 ) LPos=( 295.31, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3877.33, 90.27, 10775.86 ) LPos=( 314.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3878.72, 70.15, 10773.28 ) LPos=( 317.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3878.72, 78.78, 10773.31 ) LPos=( 317.56, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3878.72, 81.65, 10773.31 ) LPos=( 317.56, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3882.90, 75.93, 10765.75 ) LPos=( 326.19, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3873.51, 90.25, 10782.74 ) LPos=( 306.81, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3866.55, 87.34, 10795.31 ) LPos=( 292.44, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3870.73, 84.49, 10787.76 ) LPos=( 301.06, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3872.12, 84.49, 10785.24 ) LPos=( 303.94, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3869.34, 81.60, 10790.26 ) LPos=( 298.19, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3870.73, 81.61, 10787.75 ) LPos=( 301.06, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3873.51, 81.63, 10782.72 ) LPos=( 306.81, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3863.76, 78.70, 10800.32 ) LPos=( 286.69, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3866.55, 78.71, 10795.29 ) LPos=( 292.44, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3873.51, 78.75, 10782.71 ) LPos=( 306.81, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3869.34, 72.98, 10790.24 ) LPos=( 298.19, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3885.68, 42.19, 10760.62 ) LPos=( 331.94, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3881.51, 42.17, 10768.17 ) LPos=( 323.31, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3878.72, 42.15, 10773.20 ) LPos=( 317.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3884.29, 45.06, 10763.15 ) LPos=( 329.06, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3882.90, 45.05, 10765.66 ) LPos=( 326.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3881.51, 45.04, 10768.18 ) LPos=( 323.31, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3880.11, 45.04, 10770.69 ) LPos=( 320.44, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3887.08, 47.95, 10758.12 ) LPos=( 334.81, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3884.29, 47.93, 10763.15 ) LPos=( 329.06, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3882.90, 47.93, 10765.67 ) LPos=( 326.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3881.51, 47.92, 10768.19 ) LPos=( 323.31, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3880.11, 47.91, 10770.70 ) LPos=( 320.44, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.29, 50.81, 10763.16 ) LPos=( 329.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3882.90, 50.80, 10765.68 ) LPos=( 326.19, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3877.33, 53.65, 10775.75 ) LPos=( 314.69, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3880.11, 56.54, 10770.73 ) LPos=( 320.44, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3880.11, 59.41, 10770.73 ) LPos=( 320.44, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3884.29, 62.31, 10763.20 ) LPos=( 329.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3873.51, 50.75, 10782.63 ) LPos=( 306.81, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3869.34, 47.85, 10790.17 ) LPos=( 298.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3867.94, 62.22, 10792.72 ) LPos=( 295.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3865.16, 62.21, 10797.75 ) LPos=( 289.56, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3863.77, 62.20, 10800.27 ) LPos=( 286.69, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3877.33, 14.15, 10775.63 ) LPos=( 314.69, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3877.33, 31.40, 10775.68 ) LPos=( 314.69, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3878.72, 19.90, 10773.13 ) LPos=( 317.56, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3881.51, 22.79, 10768.11 ) LPos=( 323.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3881.51, 28.54, 10768.13 ) LPos=( 323.31, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3882.90, 34.30, 10765.63 ) LPos=( 326.19, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3884.29, 17.06, 10763.06 ) LPos=( 329.06, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3884.29, 19.93, 10763.07 ) LPos=( 329.06, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3884.29, 22.81, 10763.08 ) LPos=( 329.06, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3884.29, 28.56, 10763.10 ) LPos=( 329.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3885.69, 22.82, 10760.57 ) LPos=( 331.94, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3887.08, 19.95, 10758.04 ) LPos=( 334.81, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3887.08, 22.82, 10758.05 ) LPos=( 334.81, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3887.08, 25.70, 10758.06 ) LPos=( 334.81, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3866.55, 34.21, 10795.16 ) LPos=( 292.44, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3867.94, 34.22, 10792.64 ) LPos=( 295.31, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3869.34, 34.23, 10790.13 ) LPos=( 298.19, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3866.55, 28.46, 10795.14 ) LPos=( 292.44, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3870.73, 28.49, 10787.59 ) LPos=( 301.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3865.16, 25.58, 10797.65 ) LPos=( 289.56, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3870.73, 22.74, 10787.58 ) LPos=( 301.06, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3867.94, 14.10, 10792.58 ) LPos=( 295.31, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3869.34, 14.10, 10790.07 ) LPos=( 298.19, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3884.29, -13.82, 10762.97 ) LPos=( 329.06, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3880.12, -13.84, 10770.52 ) LPos=( 320.44, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3877.33, -10.98, 10775.56 ) LPos=( 314.69, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3878.72, -8.10, 10773.05 ) LPos=( 317.56, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3887.08, -5.18, 10757.97 ) LPos=( 334.81, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3882.90, -5.20, 10765.51 ) LPos=( 326.19, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3887.08, -2.30, 10757.98 ) LPos=( 334.81, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3881.51, -2.33, 10768.04 ) LPos=( 323.31, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3887.08, 0.57, 10757.99 ) LPos=( 334.81, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3885.69, 0.57, 10760.50 ) LPos=( 331.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3881.51, 0.54, 10768.05 ) LPos=( 323.31, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3880.12, 0.54, 10770.56 ) LPos=( 320.44, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3887.08, 3.45, 10757.99 ) LPos=( 334.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3884.29, 3.43, 10763.02 ) LPos=( 329.06, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3880.12, 3.41, 10770.57 ) LPos=( 320.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3877.33, 3.40, 10775.60 ) LPos=( 314.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3887.08, 6.32, 10758.00 ) LPos=( 334.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3873.52, 6.25, 10782.50 ) LPos=( 306.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3872.12, 6.24, 10785.01 ) LPos=( 303.94, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3872.12, 3.37, 10785.00 ) LPos=( 303.94, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3872.12, 0.49, 10785.00 ) LPos=( 303.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3872.12, -2.38, 10784.99 ) LPos=( 303.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3872.12, -5.26, 10784.98 ) LPos=( 303.94, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3870.73, 6.24, 10787.53 ) LPos=( 301.06, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3870.73, -8.14, 10787.49 ) LPos=( 301.06, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3869.34, 6.23, 10790.04 ) LPos=( 298.19, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3869.34, 3.35, 10790.04 ) LPos=( 298.19, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3869.34, -11.02, 10789.99 ) LPos=( 298.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3869.34, -13.90, 10789.98 ) LPos=( 298.19, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3867.94, 6.22, 10792.56 ) LPos=( 295.31, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3867.94, 3.35, 10792.55 ) LPos=( 295.31, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3866.55, 6.21, 10795.07 ) LPos=( 292.44, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3866.55, 3.34, 10795.07 ) LPos=( 292.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3866.55, -8.16, 10795.03 ) LPos=( 292.44, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3865.16, 0.46, 10797.57 ) LPos=( 289.56, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3863.77, 3.33, 10800.10 ) LPos=( 286.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3863.77, -2.42, 10800.08 ) LPos=( 286.69, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3877.33, -36.10, 10775.48 ) LPos=( 314.69, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3877.33, -21.73, 10775.53 ) LPos=( 314.69, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3878.72, -30.35, 10772.99 ) LPos=( 317.56, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3878.72, -27.47, 10772.99 ) LPos=( 317.56, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3878.72, -21.72, 10773.01 ) LPos=( 317.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3880.12, -41.84, 10770.44 ) LPos=( 320.44, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3880.12, -38.96, 10770.45 ) LPos=( 320.44, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3880.12, -30.34, 10770.47 ) LPos=( 320.44, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.90, -24.57, 10765.46 ) LPos=( 326.19, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3882.90, -21.70, 10765.47 ) LPos=( 326.19, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3884.29, -36.07, 10762.91 ) LPos=( 329.06, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3884.29, -30.32, 10762.93 ) LPos=( 329.06, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3884.29, -24.57, 10762.94 ) LPos=( 329.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3884.29, -21.69, 10762.95 ) LPos=( 329.06, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3865.16, -21.79, 10797.51 ) LPos=( 289.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3866.55, -21.79, 10794.99 ) LPos=( 292.44, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.12, -24.63, 10784.92 ) LPos=( 303.94, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3873.52, -27.50, 10782.40 ) LPos=( 306.81, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3873.52, -30.37, 10782.39 ) LPos=( 306.81, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3870.73, -33.26, 10787.41 ) LPos=( 301.06, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3872.12, -33.26, 10784.90 ) LPos=( 303.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3884.30, -69.82, 10762.81 ) LPos=( 329.06, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3882.90, -69.82, 10765.32 ) LPos=( 326.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3878.72, -69.84, 10772.87 ) LPos=( 317.56, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3884.30, -66.94, 10762.82 ) LPos=( 329.06, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3877.33, -66.98, 10775.39 ) LPos=( 314.69, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3884.30, -64.07, 10762.83 ) LPos=( 329.06, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3881.51, -64.08, 10767.86 ) LPos=( 323.31, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3880.12, -64.09, 10770.37 ) LPos=( 320.44, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3887.08, -61.18, 10757.80 ) LPos=( 334.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.30, -61.19, 10762.83 ) LPos=( 329.06, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3882.90, -61.20, 10765.35 ) LPos=( 326.19, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3878.72, -61.22, 10772.90 ) LPos=( 317.56, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3877.33, -61.23, 10775.41 ) LPos=( 314.69, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3877.33, -55.48, 10775.43 ) LPos=( 314.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3887.08, -52.55, 10757.83 ) LPos=( 334.81, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3877.33, -49.73, 10775.44 ) LPos=( 314.69, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3873.52, -55.50, 10782.32 ) LPos=( 306.81, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3873.52, -61.25, 10782.30 ) LPos=( 306.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3870.73, -55.51, 10787.35 ) LPos=( 301.06, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3870.73, -58.39, 10787.34 ) LPos=( 301.06, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3869.34, -69.89, 10789.82 ) LPos=( 298.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3867.95, -49.78, 10792.39 ) LPos=( 295.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3867.95, -69.90, 10792.34 ) LPos=( 295.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3866.55, -52.66, 10794.90 ) LPos=( 292.44, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3865.16, -64.17, 10797.38 ) LPos=( 289.56, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3863.77, -69.92, 10799.88 ) LPos=( 286.69, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3877.33, -86.35, 10775.34 ) LPos=( 314.69, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3877.33, -83.48, 10775.35 ) LPos=( 314.69, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3877.33, -80.60, 10775.35 ) LPos=( 314.69, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3878.73, -97.84, 10772.79 ) LPos=( 317.56, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3881.51, -89.21, 10767.78 ) LPos=( 323.31, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3882.90, -97.82, 10765.24 ) LPos=( 326.19, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.90, -80.57, 10765.29 ) LPos=( 326.19, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3884.30, -80.57, 10762.78 ) LPos=( 329.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3884.30, -77.69, 10762.79 ) LPos=( 329.06, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3885.69, -89.18, 10760.24 ) LPos=( 331.94, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3887.08, -94.93, 10757.71 ) LPos=( 334.81, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3887.08, -92.05, 10757.71 ) LPos=( 334.81, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3863.77, -80.67, 10799.85 ) LPos=( 286.69, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3870.73, -80.64, 10787.27 ) LPos=( 301.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3869.34, -83.52, 10789.78 ) LPos=( 298.19, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3867.95, -89.28, 10792.28 ) LPos=( 295.31, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3870.73, -92.14, 10787.24 ) LPos=( 301.06, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3865.16, -95.04, 10797.29 ) LPos=( 289.56, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3887.08, -125.80, 10757.61 ) LPos=( 334.81, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3885.69, -125.81, 10760.13 ) LPos=( 331.94, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3881.51, -125.83, 10767.68 ) LPos=( 323.31, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3877.33, -125.85, 10775.22 ) LPos=( 314.69, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3885.69, -122.93, 10760.14 ) LPos=( 331.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3884.30, -122.94, 10762.65 ) LPos=( 329.06, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3881.51, -117.20, 10767.70 ) LPos=( 323.31, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3878.73, -117.22, 10772.73 ) LPos=( 317.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3887.08, -114.30, 10757.65 ) LPos=( 334.81, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3885.69, -114.31, 10760.16 ) LPos=( 331.94, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3880.12, -114.34, 10770.22 ) LPos=( 320.44, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3881.51, -111.45, 10767.72 ) LPos=( 323.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3880.12, -111.46, 10770.23 ) LPos=( 320.44, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3878.73, -111.47, 10772.75 ) LPos=( 317.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3887.08, -108.55, 10757.67 ) LPos=( 334.81, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3877.33, -108.60, 10775.27 ) LPos=( 314.69, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3887.08, -105.68, 10757.67 ) LPos=( 334.81, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3884.30, -105.69, 10762.70 ) LPos=( 329.06, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3877.33, -105.73, 10775.28 ) LPos=( 314.69, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3872.13, -123.00, 10784.63 ) LPos=( 303.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3869.34, -114.39, 10789.69 ) LPos=( 298.19, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3866.56, -111.53, 10794.73 ) LPos=( 292.44, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3866.56, -114.41, 10794.72 ) LPos=( 292.44, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3865.16, -105.79, 10797.26 ) LPos=( 289.56, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3865.16, -117.29, 10797.23 ) LPos=( 289.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3865.16, -120.17, 10797.22 ) LPos=( 289.56, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3865.16, -123.04, 10797.21 ) LPos=( 289.56, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3865.16, -125.92, 10797.20 ) LPos=( 289.56, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3863.77, -123.05, 10799.72 ) LPos=( 286.69, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3863.77, -125.92, 10799.72 ) LPos=( 286.69, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3877.33, -153.85, 10775.14 ) LPos=( 314.69, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3877.33, -145.23, 10775.16 ) LPos=( 314.69, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3877.33, -139.48, 10775.18 ) LPos=( 314.69, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3887.08, -150.93, 10757.54 ) LPos=( 334.81, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3887.08, -145.18, 10757.56 ) LPos=( 334.81, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3887.08, -142.30, 10757.57 ) LPos=( 334.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3887.08, -139.43, 10757.57 ) LPos=( 334.81, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3866.56, -136.66, 10794.65 ) LPos=( 292.44, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3867.95, -136.65, 10792.14 ) LPos=( 295.31, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3882.91, -181.82, 10765.00 ) LPos=( 326.19, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3880.12, -178.96, 10770.03 ) LPos=( 320.44, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3884.30, -176.06, 10762.50 ) LPos=( 329.06, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3884.30, -173.19, 10762.51 ) LPos=( 329.06, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3884.30, -170.31, 10762.51 ) LPos=( 329.06, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3885.69, -167.43, 10760.01 ) LPos=( 331.94, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3884.30, -164.56, 10762.53 ) LPos=( 329.06, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3878.73, -164.59, 10772.59 ) LPos=( 317.56, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3885.69, -161.68, 10760.02 ) LPos=( 331.94, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3877.34, -161.73, 10775.12 ) LPos=( 314.69, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3877.34, -209.85, 10774.97 ) LPos=( 314.69, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3880.12, -204.09, 10769.96 ) LPos=( 320.44, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3881.51, -209.83, 10767.43 ) LPos=( 323.31, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3882.91, -198.32, 10764.95 ) LPos=( 326.19, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3885.69, -189.68, 10759.94 ) LPos=( 331.94, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3865.17, -189.79, 10797.01 ) LPos=( 289.56, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3865.17, -204.17, 10796.97 ) LPos=( 289.56, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3872.13, -204.13, 10784.40 ) LPos=( 303.94, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3868.16, -220.84, 10791.51 ) LPos=( 295.75, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3871.07, -220.82, 10786.26 ) LPos=( 301.75, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3876.88, -226.79, 10775.74 ) LPos=( 313.75, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3876.88, -232.79, 10775.73 ) LPos=( 313.75, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3873.98, -238.81, 10780.96 ) LPos=( 307.75, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3871.07, -244.82, 10786.19 ) LPos=( 301.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3876.88, -244.79, 10775.69 ) LPos=( 313.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3879.79, -244.78, 10770.44 ) LPos=( 319.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3882.70, -244.76, 10765.19 ) LPos=( 325.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3873.98, -250.81, 10780.92 ) LPos=( 307.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3879.79, -250.78, 10770.43 ) LPos=( 319.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3885.60, -250.75, 10759.93 ) LPos=( 331.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3868.16, -256.84, 10791.40 ) LPos=( 295.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.79, -256.78, 10770.41 ) LPos=( 319.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3882.70, -256.76, 10765.16 ) LPos=( 325.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3885.60, -256.74, 10759.91 ) LPos=( 331.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3865.26, -262.85, 10796.64 ) LPos=( 289.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3871.07, -262.82, 10786.14 ) LPos=( 301.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3885.60, -262.74, 10759.89 ) LPos=( 331.75, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3871.07, -294.82, 10786.04 ) LPos=( 301.75, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3868.17, -344.84, 10791.15 ) LPos=( 295.75, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3868.17, -350.84, 10791.13 ) LPos=( 295.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3879.79, -368.78, 10770.08 ) LPos=( 319.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3871.08, -394.82, 10785.75 ) LPos=( 301.75, -394.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:172,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3868.17, -406.84, 10790.96 ) LPos=( 295.75, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3868.17, -444.84, 10790.85 ) LPos=( 295.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3876.89, -444.79, 10775.10 ) LPos=( 313.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3876.89, -450.79, 10775.09 ) LPos=( 313.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3876.89, -456.79, 10775.07 ) LPos=( 313.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3865.27, -506.85, 10795.92 ) LPos=( 289.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3865.27, -518.85, 10795.88 ) LPos=( 289.75, -518.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3882.70, -518.76, 10764.39 ) LPos=( 325.75, -518.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3865.27, -562.85, 10795.75 ) LPos=( 289.75, -562.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3876.89, -580.79, 10774.71 ) LPos=( 313.75, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3882.71, -592.76, 10764.17 ) LPos=( 325.75, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3879.80, -618.77, 10769.35 ) LPos=( 319.75, -618.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:173,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3885.61, -648.74, 10758.76 ) LPos=( 331.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3912.94, 663.40, 10713.18 ) LPos=( 388.25, 663.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3904.22, 657.35, 10728.91 ) LPos=( 370.25, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3912.94, 651.40, 10713.15 ) LPos=( 388.25, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3907.13, 613.37, 10723.53 ) LPos=( 376.25, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3895.51, 601.30, 10744.49 ) LPos=( 352.25, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3901.32, 601.34, 10734.00 ) LPos=( 364.25, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3898.41, 595.32, 10739.23 ) LPos=( 358.25, 595.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3898.41, 589.32, 10739.21 ) LPos=( 358.25, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3895.51, 451.30, 10744.05 ) LPos=( 352.25, 451.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.42, 433.32, 10738.75 ) LPos=( 358.25, 433.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3901.33, 433.34, 10733.50 ) LPos=( 364.25, 433.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3907.14, 415.37, 10722.95 ) LPos=( 376.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3912.95, 415.40, 10712.45 ) LPos=( 388.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.42, 377.32, 10738.59 ) LPos=( 358.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3904.23, 377.35, 10728.09 ) LPos=( 370.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3892.61, 359.29, 10749.03 ) LPos=( 346.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3912.95, 353.40, 10712.27 ) LPos=( 388.25, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3912.95, 327.40, 10712.19 ) LPos=( 388.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3907.14, 321.37, 10722.68 ) LPos=( 376.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3895.52, 315.31, 10743.65 ) LPos=( 352.25, 315.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3907.14, 309.37, 10722.64 ) LPos=( 376.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3898.42, 271.32, 10738.28 ) LPos=( 358.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.42, 265.32, 10738.26 ) LPos=( 358.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3892.61, 253.29, 10748.72 ) LPos=( 346.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3901.33, 253.34, 10732.97 ) LPos=( 364.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3912.96, 253.40, 10711.98 ) LPos=( 388.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3910.26, 210.32, 10716.72 ) LPos=( 382.69, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3911.66, 216.08, 10714.22 ) LPos=( 385.56, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3914.44, 221.84, 10709.21 ) LPos=( 391.31, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3914.44, 224.72, 10709.21 ) LPos=( 391.31, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3892.52, 224.60, 10748.80 ) LPos=( 346.06, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3914.44, 160.09, 10709.02 ) LPos=( 391.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3913.05, 160.09, 10711.54 ) LPos=( 388.44, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3904.69, 160.04, 10726.63 ) LPos=( 371.19, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3914.44, 174.47, 10709.07 ) LPos=( 391.31, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3900.88, 162.90, 10733.53 ) LPos=( 363.31, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3900.88, 160.02, 10733.52 ) LPos=( 363.31, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3898.09, 160.01, 10738.55 ) LPos=( 357.56, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3893.92, 162.86, 10746.10 ) LPos=( 348.94, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3891.13, 159.97, 10751.13 ) LPos=( 343.19, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3904.69, 137.79, 10726.57 ) LPos=( 371.19, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3906.09, 132.05, 10724.03 ) LPos=( 374.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3910.27, 126.32, 10716.47 ) LPos=( 382.69, 126.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3913.05, 146.46, 10711.50 ) LPos=( 388.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3914.44, 146.47, 10708.98 ) LPos=( 391.31, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3900.88, 140.65, 10733.46 ) LPos=( 363.31, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3891.13, 131.97, 10751.04 ) LPos=( 343.19, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3899.49, 132.01, 10735.95 ) LPos=( 360.44, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3904.70, 112.67, 10726.49 ) LPos=( 371.19, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3913.05, 118.46, 10711.42 ) LPos=( 388.44, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3896.70, 115.50, 10740.94 ) LPos=( 354.69, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3896.70, 98.25, 10740.88 ) LPos=( 354.69, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3892.52, 112.60, 10748.47 ) LPos=( 346.06, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3904.70, 84.67, 10726.41 ) LPos=( 371.19, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3907.48, 73.18, 10721.35 ) LPos=( 376.94, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3907.48, 84.68, 10721.38 ) LPos=( 376.94, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3911.66, 78.96, 10713.82 ) LPos=( 385.56, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3911.66, 81.83, 10713.83 ) LPos=( 385.56, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3913.05, 78.96, 10711.30 ) LPos=( 388.44, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3914.44, 87.59, 10708.81 ) LPos=( 391.31, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3895.31, 90.37, 10743.38 ) LPos=( 351.81, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3899.49, 90.39, 10735.83 ) LPos=( 360.44, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3891.13, 84.60, 10750.91 ) LPos=( 343.19, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3892.53, 73.10, 10748.36 ) LPos=( 346.06, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3892.53, 70.23, 10748.35 ) LPos=( 346.06, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3893.92, 70.24, 10745.83 ) LPos=( 348.94, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3913.05, 56.71, 10711.24 ) LPos=( 388.44, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3914.45, 59.59, 10708.73 ) LPos=( 391.31, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3910.27, 59.57, 10716.28 ) LPos=( 382.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3913.05, 62.46, 10711.25 ) LPos=( 388.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3908.87, 62.44, 10718.80 ) LPos=( 379.81, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3906.09, 62.43, 10723.83 ) LPos=( 374.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3899.49, 62.39, 10735.75 ) LPos=( 360.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3899.49, 59.52, 10735.74 ) LPos=( 360.44, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3898.10, 59.51, 10738.26 ) LPos=( 357.56, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3896.70, 59.50, 10740.77 ) LPos=( 354.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3896.70, 56.63, 10740.76 ) LPos=( 354.69, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3896.70, 53.75, 10740.75 ) LPos=( 354.69, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3896.70, 50.88, 10740.75 ) LPos=( 354.69, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3895.31, 59.49, 10743.29 ) LPos=( 351.81, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3895.31, 56.62, 10743.28 ) LPos=( 351.81, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3892.53, 59.48, 10748.32 ) LPos=( 346.06, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3891.13, 47.97, 10750.80 ) LPos=( 343.19, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3891.13, 45.10, 10750.79 ) LPos=( 343.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3908.88, 20.07, 10718.67 ) LPos=( 379.81, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3910.27, 34.45, 10716.20 ) LPos=( 382.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3911.66, 20.08, 10713.64 ) LPos=( 385.56, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3913.05, 22.96, 10711.14 ) LPos=( 388.44, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3913.05, 25.84, 10711.15 ) LPos=( 388.44, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3914.45, 17.22, 10708.61 ) LPos=( 391.31, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3895.31, 31.49, 10743.20 ) LPos=( 351.81, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3892.53, 25.73, 10748.22 ) LPos=( 346.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3893.92, 25.74, 10745.70 ) LPos=( 348.94, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3898.10, 25.76, 10738.16 ) LPos=( 357.56, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3892.53, 19.98, 10748.20 ) LPos=( 346.06, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3893.92, 17.11, 10745.68 ) LPos=( 348.94, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3899.49, 17.14, 10735.62 ) LPos=( 360.44, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3891.14, 14.22, 10750.70 ) LPos=( 343.19, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3900.88, 14.27, 10733.09 ) LPos=( 363.31, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3913.06, -13.66, 10711.03 ) LPos=( 388.44, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3913.05, -5.04, 10711.06 ) LPos=( 388.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3908.88, -5.06, 10718.60 ) LPos=( 379.81, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3907.48, -2.19, 10721.12 ) LPos=( 376.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3913.05, 0.71, 10711.07 ) LPos=( 388.44, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3910.27, 0.70, 10716.10 ) LPos=( 382.69, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3908.88, 6.44, 10718.63 ) LPos=( 379.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3898.10, 3.51, 10738.09 ) LPos=( 357.56, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3896.71, 3.50, 10740.61 ) LPos=( 354.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3896.71, -10.87, 10740.56 ) LPos=( 354.69, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3896.71, -13.75, 10740.56 ) LPos=( 354.69, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3895.31, 6.37, 10743.13 ) LPos=( 351.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3895.31, 3.49, 10743.12 ) LPos=( 351.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3893.92, 6.36, 10745.65 ) LPos=( 348.94, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3892.53, -5.15, 10748.13 ) LPos=( 346.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3892.53, -10.90, 10748.11 ) LPos=( 346.06, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3891.14, -2.28, 10750.65 ) LPos=( 343.19, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3906.09, -38.82, 10723.53 ) LPos=( 374.06, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3898.10, -21.62, 10738.02 ) LPos=( 357.56, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3891.14, -27.40, 10750.58 ) LPos=( 343.19, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3893.92, -30.26, 10745.54 ) LPos=( 348.94, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3891.14, -33.15, 10750.56 ) LPos=( 343.19, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3891.14, -38.90, 10750.54 ) LPos=( 343.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3900.89, -41.73, 10732.93 ) LPos=( 363.31, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3914.45, -69.65, 10708.35 ) LPos=( 391.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3913.06, -69.66, 10710.87 ) LPos=( 388.44, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3911.66, -66.79, 10713.39 ) LPos=( 385.56, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3913.06, -52.41, 10710.92 ) LPos=( 388.44, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3893.92, -55.39, 10745.46 ) LPos=( 348.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3892.53, -49.65, 10748.00 ) LPos=( 346.06, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3904.70, -94.83, 10725.88 ) LPos=( 371.19, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3906.09, -89.07, 10723.38 ) LPos=( 374.06, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3906.09, -83.32, 10723.40 ) LPos=( 374.06, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3910.27, -91.93, 10715.83 ) LPos=( 382.69, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3913.06, -83.29, 10710.83 ) LPos=( 388.44, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3914.45, -91.90, 10708.29 ) LPos=( 391.31, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3911.67, -108.42, 10713.27 ) LPos=( 385.56, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3895.32, -122.88, 10742.75 ) LPos=( 351.81, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3904.70, -139.33, 10725.75 ) LPos=( 371.19, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3904.70, -136.46, 10725.76 ) LPos=( 371.19, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3907.49, -150.82, 10720.69 ) LPos=( 376.94, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3892.53, -136.52, 10747.74 ) LPos=( 346.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3893.93, -139.39, 10745.22 ) LPos=( 348.94, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3895.32, -142.26, 10742.69 ) LPos=( 351.81, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3899.50, -145.11, 10735.14 ) LPos=( 360.44, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3896.71, -148.00, 10740.16 ) LPos=( 354.69, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3899.50, -147.98, 10735.13 ) LPos=( 360.44, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3898.10, -150.87, 10737.64 ) LPos=( 357.56, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3910.27, -170.18, 10715.60 ) LPos=( 382.69, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3907.49, -164.44, 10720.65 ) LPos=( 376.94, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3906.10, -164.45, 10723.16 ) LPos=( 374.06, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3904.70, -164.46, 10725.68 ) LPos=( 371.19, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3906.10, -161.57, 10723.17 ) LPos=( 374.06, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3898.10, -173.12, 10737.57 ) LPos=( 357.56, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3896.71, -173.12, 10740.09 ) LPos=( 354.69, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3895.32, -167.38, 10742.62 ) LPos=( 351.81, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3911.67, -189.54, 10713.03 ) LPos=( 385.56, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3913.06, -201.04, 10710.48 ) LPos=( 388.44, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3913.06, -195.29, 10710.50 ) LPos=( 388.44, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3893.93, -189.64, 10745.07 ) LPos=( 348.94, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3896.71, -189.62, 10740.04 ) LPos=( 354.69, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3898.10, -189.62, 10737.52 ) LPos=( 357.56, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:177,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3900.89, -206.85, 10732.44 ) LPos=( 363.31, -206.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3895.53, -226.69, 10742.06 ) LPos=( 352.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3910.06, -226.61, 10715.82 ) LPos=( 382.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3898.44, -232.68, 10736.80 ) LPos=( 358.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3898.44, -238.68, 10736.78 ) LPos=( 358.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3907.16, -256.63, 10720.98 ) LPos=( 376.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3907.16, -282.63, 10720.90 ) LPos=( 376.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3910.07, -282.61, 10715.65 ) LPos=( 382.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3898.44, -306.68, 10736.58 ) LPos=( 358.25, -306.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3892.63, -338.71, 10746.98 ) LPos=( 346.25, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3901.35, -356.66, 10731.18 ) LPos=( 364.25, -356.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3892.63, -362.71, 10746.91 ) LPos=( 346.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3898.44, -362.68, 10736.42 ) LPos=( 358.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3901.35, -418.66, 10731.00 ) LPos=( 364.25, -418.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3892.63, -430.71, 10746.71 ) LPos=( 346.25, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3892.63, -444.71, 10746.67 ) LPos=( 346.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3898.45, -450.68, 10736.16 ) LPos=( 358.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3895.54, -456.69, 10741.39 ) LPos=( 352.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3904.26, -456.64, 10725.64 ) LPos=( 370.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3892.63, -486.71, 10746.55 ) LPos=( 346.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3898.45, -486.68, 10736.05 ) LPos=( 358.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3904.26, -486.64, 10725.55 ) LPos=( 370.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3912.98, -486.60, 10709.81 ) LPos=( 388.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3912.98, -506.60, 10709.75 ) LPos=( 388.25, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3904.26, -512.64, 10725.48 ) LPos=( 370.25, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3898.45, -524.68, 10735.94 ) LPos=( 358.25, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3892.64, -536.71, 10746.40 ) LPos=( 346.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3907.17, -542.63, 10720.14 ) LPos=( 376.25, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3892.64, -562.71, 10746.33 ) LPos=( 346.25, -562.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3898.45, -612.68, 10735.68 ) LPos=( 358.25, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3912.98, -636.60, 10709.37 ) LPos=( 388.25, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3937.41, 675.53, 10669.04 ) LPos=( 438.75, 675.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3928.69, 657.48, 10684.73 ) LPos=( 420.75, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.41, 657.53, 10668.98 ) LPos=( 438.75, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3928.69, 645.48, 10684.70 ) LPos=( 420.75, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3937.41, 613.53, 10668.85 ) LPos=( 438.75, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3919.97, 595.43, 10700.30 ) LPos=( 402.75, 595.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3940.31, 583.54, 10663.52 ) LPos=( 444.75, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3919.97, 577.43, 10700.24 ) LPos=( 402.75, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:180,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3937.41, 527.53, 10668.60 ) LPos=( 438.75, 527.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3928.69, 395.48, 10683.96 ) LPos=( 420.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3931.60, 395.50, 10678.71 ) LPos=( 426.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3928.70, 389.48, 10683.94 ) LPos=( 420.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3925.79, 377.47, 10689.16 ) LPos=( 414.75, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.88, 371.45, 10694.39 ) LPos=( 408.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3940.32, 365.54, 10662.88 ) LPos=( 444.75, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3919.98, 359.44, 10699.60 ) LPos=( 402.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3922.88, 353.45, 10694.34 ) LPos=( 408.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3937.42, 333.53, 10668.03 ) LPos=( 438.75, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3919.98, 309.44, 10699.46 ) LPos=( 402.75, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3937.42, 303.53, 10667.94 ) LPos=( 438.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3925.79, 265.47, 10688.83 ) LPos=( 414.75, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3931.61, 253.50, 10678.30 ) LPos=( 426.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3922.89, 247.45, 10694.03 ) LPos=( 408.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3922.89, 241.45, 10694.01 ) LPos=( 408.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.02, 224.85, 10664.82 ) LPos=( 442.06, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3941.81, 227.74, 10659.79 ) LPos=( 447.81, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3924.07, 210.40, 10691.78 ) LPos=( 411.19, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3918.50, 227.62, 10701.90 ) LPos=( 399.69, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3918.50, 216.12, 10701.86 ) LPos=( 399.69, 215.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3932.06, 199.69, 10677.32 ) LPos=( 427.69, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3936.24, 188.21, 10669.74 ) LPos=( 436.31, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.02, 188.23, 10664.71 ) LPos=( 442.06, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3940.42, 202.61, 10662.24 ) LPos=( 444.94, 202.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3926.85, 199.66, 10686.72 ) LPos=( 416.94, 199.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3921.28, 185.26, 10696.74 ) LPos=( 405.44, 185.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3932.06, 163.06, 10677.21 ) LPos=( 427.69, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3932.06, 168.81, 10677.23 ) LPos=( 427.69, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.68, 171.64, 10694.19 ) LPos=( 408.31, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3922.68, 154.39, 10694.14 ) LPos=( 408.31, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3921.28, 163.01, 10696.68 ) LPos=( 405.44, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3921.28, 160.13, 10696.67 ) LPos=( 405.44, 159.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3919.89, 171.62, 10699.22 ) LPos=( 402.56, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3918.50, 171.62, 10701.73 ) LPos=( 399.69, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3932.06, 143.69, 10677.15 ) LPos=( 427.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3933.46, 143.70, 10674.64 ) LPos=( 430.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3940.42, 132.23, 10662.03 ) LPos=( 444.94, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3940.42, 140.86, 10662.05 ) LPos=( 444.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3921.29, 146.51, 10696.63 ) LPos=( 405.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3919.89, 143.62, 10699.13 ) LPos=( 402.56, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3924.07, 140.77, 10691.58 ) LPos=( 411.19, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3922.68, 137.89, 10694.09 ) LPos=( 408.31, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3925.46, 137.90, 10689.06 ) LPos=( 414.06, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3928.25, 118.54, 10683.97 ) LPos=( 419.81, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3926.86, 101.29, 10686.43 ) LPos=( 416.94, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3924.07, 112.77, 10691.50 ) LPos=( 411.19, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3921.29, 112.76, 10696.53 ) LPos=( 405.44, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3921.29, 101.26, 10696.49 ) LPos=( 405.44, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3933.46, 70.45, 10674.42 ) LPos=( 430.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3934.85, 79.08, 10671.93 ) LPos=( 433.44, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3936.24, 81.96, 10669.43 ) LPos=( 436.31, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3937.64, 81.97, 10666.91 ) LPos=( 439.19, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.03, 76.23, 10664.38 ) LPos=( 442.06, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3939.03, 84.85, 10664.41 ) LPos=( 442.06, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3921.29, 87.63, 10696.45 ) LPos=( 405.44, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3921.29, 84.76, 10696.45 ) LPos=( 405.44, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3921.29, 81.88, 10696.44 ) LPos=( 405.44, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3921.29, 76.13, 10696.42 ) LPos=( 405.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3926.86, 76.16, 10686.36 ) LPos=( 416.94, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3926.86, 73.29, 10686.35 ) LPos=( 416.94, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3919.89, 70.37, 10698.92 ) LPos=( 402.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3921.29, 70.38, 10696.40 ) LPos=( 405.44, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3934.85, 42.45, 10671.83 ) LPos=( 433.44, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3933.46, 45.32, 10674.35 ) LPos=( 430.56, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3932.07, 45.31, 10676.87 ) LPos=( 427.69, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.85, 62.58, 10671.89 ) LPos=( 433.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3926.86, 48.16, 10686.28 ) LPos=( 416.94, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3924.07, 62.52, 10691.35 ) LPos=( 411.19, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3924.07, 59.65, 10691.34 ) LPos=( 411.19, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3922.68, 62.51, 10693.87 ) LPos=( 408.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3922.68, 56.76, 10693.85 ) LPos=( 408.31, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3921.29, 62.51, 10696.38 ) LPos=( 405.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3921.29, 42.38, 10696.32 ) LPos=( 405.44, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3932.07, 34.56, 10676.83 ) LPos=( 427.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3933.46, 31.70, 10674.31 ) LPos=( 430.56, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3934.85, 14.45, 10671.74 ) LPos=( 433.44, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3934.85, 25.95, 10671.78 ) LPos=( 433.44, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3934.85, 28.83, 10671.79 ) LPos=( 433.44, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3939.03, 23.10, 10664.22 ) LPos=( 442.06, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3941.82, 17.37, 10659.18 ) LPos=( 447.81, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3921.29, 34.51, 10696.30 ) LPos=( 405.44, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3922.68, 34.51, 10693.78 ) LPos=( 408.31, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3926.86, 34.54, 10686.24 ) LPos=( 416.94, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3922.68, 31.64, 10693.78 ) LPos=( 408.31, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3925.47, 25.90, 10688.73 ) LPos=( 414.06, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3921.29, 14.38, 10696.24 ) LPos=( 405.44, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3934.85, 3.70, 10671.71 ) LPos=( 433.44, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3928.25, 3.67, 10683.63 ) LPos=( 419.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3926.86, -2.09, 10686.13 ) LPos=( 416.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.68, 3.64, 10693.69 ) LPos=( 408.31, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3921.29, -7.87, 10696.17 ) LPos=( 405.44, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3921.29, -10.74, 10696.17 ) LPos=( 405.44, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3919.90, -5.00, 10698.70 ) LPos=( 402.56, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3918.50, -7.88, 10701.20 ) LPos=( 399.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3918.50, -10.76, 10701.20 ) LPos=( 399.69, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3932.07, -30.06, 10676.64 ) LPos=( 427.69, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3933.46, -38.68, 10674.10 ) LPos=( 430.56, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3934.85, -35.80, 10671.60 ) LPos=( 433.44, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3939.03, -41.52, 10664.03 ) LPos=( 442.06, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3939.03, -38.65, 10664.04 ) LPos=( 442.06, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3918.50, -27.26, 10701.15 ) LPos=( 399.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3921.29, -32.99, 10696.10 ) LPos=( 405.44, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3922.68, -35.86, 10693.58 ) LPos=( 408.31, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3926.86, -35.84, 10686.03 ) LPos=( 416.94, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3919.90, -41.63, 10698.59 ) LPos=( 402.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3939.03, -63.77, 10663.97 ) LPos=( 442.06, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3941.82, -58.01, 10658.96 ) LPos=( 447.81, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3932.07, -55.19, 10676.57 ) LPos=( 427.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3940.42, -52.27, 10661.49 ) LPos=( 444.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.85, -49.42, 10671.56 ) LPos=( 433.44, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3933.46, -49.43, 10674.07 ) LPos=( 430.56, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3925.47, -58.10, 10688.48 ) LPos=( 414.06, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3924.08, -63.85, 10690.98 ) LPos=( 411.19, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3924.08, -69.60, 10690.96 ) LPos=( 411.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3922.68, -49.49, 10693.54 ) LPos=( 408.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3922.68, -58.11, 10693.51 ) LPos=( 408.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3922.68, -66.74, 10693.49 ) LPos=( 408.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3921.29, -49.49, 10696.05 ) LPos=( 405.44, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3919.90, -52.38, 10698.56 ) LPos=( 402.56, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3918.51, -55.26, 10701.07 ) LPos=( 399.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3918.51, -61.01, 10701.05 ) LPos=( 399.69, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3918.51, -69.63, 10701.02 ) LPos=( 399.69, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3932.07, -94.69, 10676.45 ) LPos=( 427.69, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3932.07, -77.44, 10676.50 ) LPos=( 427.69, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3941.82, -97.51, 10658.84 ) LPos=( 447.81, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3941.82, -80.26, 10658.89 ) LPos=( 447.81, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3926.86, -80.34, 10685.90 ) LPos=( 416.94, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3919.90, -91.88, 10698.44 ) LPos=( 402.56, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3924.08, -91.85, 10690.90 ) LPos=( 411.19, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3922.68, -94.74, 10693.40 ) LPos=( 408.31, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3926.86, -97.59, 10685.85 ) LPos=( 416.94, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3937.64, -125.53, 10666.30 ) LPos=( 439.19, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3934.86, -122.67, 10671.34 ) LPos=( 433.44, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3941.82, -114.01, 10658.79 ) LPos=( 447.81, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3933.46, -111.18, 10673.89 ) LPos=( 430.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3940.43, -108.27, 10661.32 ) LPos=( 444.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3937.64, -108.28, 10666.35 ) LPos=( 439.19, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3941.82, -105.38, 10658.82 ) LPos=( 447.81, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3939.03, -105.40, 10663.85 ) LPos=( 442.06, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3937.64, -105.41, 10666.36 ) LPos=( 439.19, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3926.86, -108.34, 10685.82 ) LPos=( 416.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3925.47, -122.72, 10688.29 ) LPos=( 414.06, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3919.90, -111.25, 10698.39 ) LPos=( 402.56, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3919.90, -122.75, 10698.35 ) LPos=( 402.56, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3939.03, -139.15, 10663.75 ) LPos=( 442.06, -139.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3939.03, -136.27, 10663.76 ) LPos=( 442.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3924.08, -133.48, 10690.78 ) LPos=( 411.19, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3918.51, -136.38, 10700.83 ) LPos=( 399.69, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3925.47, -142.10, 10688.23 ) LPos=( 414.06, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3921.29, -144.99, 10695.77 ) LPos=( 405.44, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3918.51, -147.88, 10700.79 ) LPos=( 399.69, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3922.69, -150.74, 10693.24 ) LPos=( 408.31, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3925.47, -153.60, 10688.20 ) LPos=( 414.06, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3934.86, -178.67, 10671.18 ) LPos=( 433.44, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3932.07, -178.69, 10676.21 ) LPos=( 427.69, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3937.64, -175.78, 10666.16 ) LPos=( 439.19, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3939.04, -167.15, 10663.67 ) LPos=( 442.06, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3919.90, -167.25, 10698.22 ) LPos=( 402.56, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3919.90, -170.13, 10698.21 ) LPos=( 402.56, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3933.47, -209.55, 10673.60 ) LPos=( 430.56, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3934.86, -200.92, 10671.11 ) LPos=( 433.44, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3936.25, -209.54, 10668.57 ) LPos=( 436.31, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3937.64, -195.16, 10666.10 ) LPos=( 439.19, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:183,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3926.87, -198.09, 10685.56 ) LPos=( 416.94, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3940.34, -244.45, 10661.09 ) LPos=( 444.75, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3922.90, -344.55, 10692.29 ) LPos=( 408.75, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3931.62, -350.50, 10676.52 ) LPos=( 426.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3934.53, -350.48, 10671.27 ) LPos=( 432.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.44, -350.47, 10666.03 ) LPos=( 438.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3940.34, -350.45, 10660.78 ) LPos=( 444.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3934.53, -362.48, 10671.24 ) LPos=( 432.75, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3937.44, -374.47, 10665.96 ) LPos=( 438.75, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3940.34, -374.45, 10660.71 ) LPos=( 444.75, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3937.44, -388.47, 10665.91 ) LPos=( 438.75, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.44, -406.47, 10665.86 ) LPos=( 438.75, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3931.63, -412.50, 10676.34 ) LPos=( 426.75, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3937.44, -418.47, 10665.83 ) LPos=( 438.75, -418.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3940.35, -424.45, 10660.56 ) LPos=( 444.75, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3925.81, -430.53, 10686.79 ) LPos=( 414.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3931.63, -430.50, 10676.29 ) LPos=( 426.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3937.44, -430.47, 10665.79 ) LPos=( 438.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3937.44, -444.47, 10665.75 ) LPos=( 438.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3940.35, -444.45, 10660.50 ) LPos=( 444.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3920.00, -450.56, 10697.23 ) LPos=( 402.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3922.91, -450.55, 10691.98 ) LPos=( 408.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3925.81, -450.53, 10686.73 ) LPos=( 414.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3934.53, -450.48, 10670.98 ) LPos=( 432.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3937.44, -450.47, 10665.73 ) LPos=( 438.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3940.35, -450.45, 10660.48 ) LPos=( 444.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3920.00, -456.56, 10697.21 ) LPos=( 402.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3931.63, -456.50, 10676.21 ) LPos=( 426.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3934.53, -456.48, 10670.96 ) LPos=( 432.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3934.53, -462.48, 10670.95 ) LPos=( 432.75, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3937.44, -462.47, 10665.70 ) LPos=( 438.75, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3940.35, -462.45, 10660.45 ) LPos=( 444.75, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3934.53, -468.48, 10670.93 ) LPos=( 432.75, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3934.53, -474.48, 10670.91 ) LPos=( 432.75, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3937.44, -474.47, 10665.66 ) LPos=( 438.75, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3937.44, -480.47, 10665.64 ) LPos=( 438.75, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3931.63, -486.50, 10676.12 ) LPos=( 426.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.53, -486.48, 10670.88 ) LPos=( 432.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3937.44, -486.47, 10665.63 ) LPos=( 438.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3922.91, -500.55, 10691.83 ) LPos=( 408.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3934.53, -500.48, 10670.83 ) LPos=( 432.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3922.91, -506.55, 10691.81 ) LPos=( 408.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3940.35, -506.45, 10660.32 ) LPos=( 444.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3925.82, -512.53, 10686.55 ) LPos=( 414.75, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3931.63, -512.50, 10676.05 ) LPos=( 426.75, -512.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.91, -524.55, 10691.76 ) LPos=( 408.75, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3931.63, -536.50, 10675.98 ) LPos=( 426.75, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3934.54, -542.48, 10670.71 ) LPos=( 432.75, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3931.63, -574.50, 10675.87 ) LPos=( 426.75, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3940.35, -586.45, 10660.08 ) LPos=( 444.75, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3920.01, -624.56, 10696.72 ) LPos=( 402.75, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3922.91, -636.54, 10691.43 ) LPos=( 408.75, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3925.82, -636.53, 10686.18 ) LPos=( 414.75, -636.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3922.91, -642.54, 10691.41 ) LPos=( 408.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3928.73, -642.51, 10680.92 ) LPos=( 420.75, -642.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3922.91, -648.54, 10691.40 ) LPos=( 408.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3922.91, -654.54, 10691.38 ) LPos=( 408.75, -654.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3950.24, 675.60, 10645.85 ) LPos=( 465.25, 675.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3953.15, 675.61, 10640.60 ) LPos=( 471.25, 675.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3953.15, 669.61, 10640.59 ) LPos=( 471.25, 669.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3953.15, 663.61, 10640.57 ) LPos=( 471.25, 663.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3956.06, 657.63, 10635.30 ) LPos=( 477.25, 657.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3958.96, 651.64, 10630.04 ) LPos=( 483.25, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3958.96, 645.64, 10630.02 ) LPos=( 483.25, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3961.87, 645.66, 10624.77 ) LPos=( 489.25, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3964.78, 645.67, 10619.52 ) LPos=( 495.25, 645.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.15, 639.61, 10640.50 ) LPos=( 471.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3961.87, 639.66, 10624.75 ) LPos=( 489.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3964.78, 639.67, 10619.50 ) LPos=( 495.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.68, 639.69, 10614.25 ) LPos=( 501.25, 639.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3947.34, 633.58, 10650.98 ) LPos=( 459.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3964.78, 633.67, 10619.48 ) LPos=( 495.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3967.68, 633.69, 10614.24 ) LPos=( 501.25, 633.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3967.68, 577.69, 10614.07 ) LPos=( 501.25, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3967.68, 539.69, 10613.96 ) LPos=( 501.25, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:186,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3956.06, 483.63, 10634.79 ) LPos=( 477.25, 483.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.06, 451.63, 10634.70 ) LPos=( 477.25, 451.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3958.97, 433.64, 10629.40 ) LPos=( 483.25, 433.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3956.06, 415.63, 10634.59 ) LPos=( 477.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3961.88, 415.66, 10624.09 ) LPos=( 489.25, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3953.16, 395.61, 10639.78 ) LPos=( 471.25, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.06, 395.63, 10634.53 ) LPos=( 477.25, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3947.35, 359.58, 10650.18 ) LPos=( 459.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3958.97, 339.64, 10629.12 ) LPos=( 483.25, 339.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.78, 327.67, 10618.59 ) LPos=( 495.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3947.35, 321.58, 10650.06 ) LPos=( 459.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3950.25, 321.60, 10644.81 ) LPos=( 465.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3950.25, 309.60, 10644.78 ) LPos=( 465.25, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3947.35, 271.58, 10649.92 ) LPos=( 459.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3950.25, 271.60, 10644.67 ) LPos=( 465.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3953.16, 271.61, 10639.42 ) LPos=( 471.25, 271.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3958.97, 265.64, 10628.90 ) LPos=( 483.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3964.79, 265.67, 10618.40 ) LPos=( 495.25, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3950.25, 259.60, 10644.63 ) LPos=( 465.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3953.16, 259.61, 10639.38 ) LPos=( 471.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3947.35, 253.58, 10649.86 ) LPos=( 459.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3950.26, 247.60, 10644.60 ) LPos=( 465.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3950.26, 241.60, 10644.58 ) LPos=( 465.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3956.07, 241.63, 10634.08 ) LPos=( 477.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3967.69, 241.69, 10613.09 ) LPos=( 501.25, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3959.43, 230.71, 10627.98 ) LPos=( 484.19, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3951.44, 227.79, 10642.41 ) LPos=( 467.69, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3951.44, 224.92, 10642.40 ) LPos=( 467.69, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3951.44, 213.42, 10642.36 ) LPos=( 467.69, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3950.04, 227.78, 10644.92 ) LPos=( 464.81, 227.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3950.04, 224.91, 10644.91 ) LPos=( 464.81, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3950.04, 210.53, 10644.87 ) LPos=( 464.81, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3959.43, 194.08, 10627.87 ) LPos=( 484.19, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3967.79, 188.38, 10612.76 ) LPos=( 501.44, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3969.18, 194.14, 10610.27 ) LPos=( 504.31, 193.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3959.43, 163.21, 10627.78 ) LPos=( 484.19, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3967.79, 174.75, 10612.72 ) LPos=( 501.44, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3952.83, 171.80, 10639.73 ) LPos=( 470.56, 171.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3960.82, 135.22, 10625.18 ) LPos=( 487.06, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3963.61, 129.48, 10620.14 ) LPos=( 492.81, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.79, 146.75, 10612.64 ) LPos=( 501.44, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3969.18, 143.89, 10610.12 ) LPos=( 504.31, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3945.87, 146.64, 10652.23 ) LPos=( 456.19, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3950.05, 140.91, 10644.67 ) LPos=( 464.81, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3952.83, 140.92, 10639.64 ) LPos=( 470.56, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3950.05, 138.03, 10644.66 ) LPos=( 464.81, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3951.44, 138.04, 10642.14 ) LPos=( 467.69, 137.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3950.05, 129.41, 10644.63 ) LPos=( 464.81, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3969.18, 98.64, 10609.99 ) LPos=( 504.31, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3960.83, 98.59, 10625.08 ) LPos=( 487.06, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3965.00, 104.36, 10617.55 ) LPos=( 495.69, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3962.22, 104.35, 10622.58 ) LPos=( 489.94, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3965.00, 107.24, 10617.56 ) LPos=( 495.69, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3963.61, 107.23, 10620.07 ) LPos=( 492.81, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3965.00, 112.99, 10617.57 ) LPos=( 495.69, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3966.40, 115.87, 10615.07 ) LPos=( 498.56, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3967.79, 118.75, 10612.56 ) LPos=( 501.44, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3955.62, 112.94, 10634.52 ) LPos=( 476.31, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3950.05, 112.91, 10644.58 ) LPos=( 464.81, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3947.26, 118.64, 10649.63 ) LPos=( 459.06, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3947.26, 112.89, 10649.62 ) LPos=( 459.06, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3947.26, 110.02, 10649.61 ) LPos=( 459.06, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3945.87, 112.89, 10652.13 ) LPos=( 456.19, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3959.43, 84.96, 10627.55 ) LPos=( 484.19, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3967.79, 70.63, 10612.42 ) LPos=( 501.44, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3969.18, 90.76, 10609.96 ) LPos=( 504.31, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3945.87, 90.64, 10652.06 ) LPos=( 456.19, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3951.44, 90.67, 10642.00 ) LPos=( 467.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3947.26, 84.89, 10649.53 ) LPos=( 459.06, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3950.05, 84.91, 10644.50 ) LPos=( 464.81, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3954.23, 84.93, 10636.96 ) LPos=( 473.44, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3951.44, 79.17, 10641.97 ) LPos=( 467.69, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3966.40, 51.25, 10614.88 ) LPos=( 498.56, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3966.40, 57.00, 10614.89 ) LPos=( 498.56, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3967.79, 62.75, 10612.40 ) LPos=( 501.44, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3952.83, 42.55, 10639.35 ) LPos=( 470.56, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3948.66, 51.15, 10646.92 ) LPos=( 461.94, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3947.26, 51.14, 10649.43 ) LPos=( 459.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3947.26, 48.27, 10649.43 ) LPos=( 459.06, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3947.26, 42.52, 10649.41 ) LPos=( 459.06, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3962.22, 23.22, 10622.34 ) LPos=( 489.94, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3967.79, 14.63, 10612.25 ) LPos=( 501.44, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3967.79, 31.88, 10612.31 ) LPos=( 501.44, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3969.18, 31.89, 10609.79 ) LPos=( 504.31, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3945.87, 34.64, 10651.90 ) LPos=( 456.19, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3947.26, 34.64, 10649.39 ) LPos=( 459.06, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3945.87, 31.76, 10651.89 ) LPos=( 456.19, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3948.66, 28.90, 10646.85 ) LPos=( 461.94, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3945.87, 26.01, 10651.88 ) LPos=( 456.19, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3945.87, 23.14, 10651.87 ) LPos=( 456.19, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3945.87, 20.26, 10651.86 ) LPos=( 456.19, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3945.87, 17.39, 10651.85 ) LPos=( 456.19, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3948.66, 14.53, 10646.81 ) LPos=( 461.94, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3960.83, -13.41, 10624.75 ) LPos=( 487.06, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3967.79, -10.50, 10612.18 ) LPos=( 501.44, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3963.61, -10.52, 10619.73 ) LPos=( 492.81, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3959.44, -10.54, 10627.27 ) LPos=( 484.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3960.83, -4.78, 10624.77 ) LPos=( 487.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3966.40, 3.87, 10614.74 ) LPos=( 498.56, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3965.01, 3.86, 10617.25 ) LPos=( 495.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3963.61, 3.86, 10619.77 ) LPos=( 492.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3966.40, 6.75, 10614.75 ) LPos=( 498.56, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3963.61, 6.73, 10619.78 ) LPos=( 492.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3955.62, 6.69, 10634.21 ) LPos=( 476.31, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3951.44, -1.96, 10641.73 ) LPos=( 467.69, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3947.27, 3.77, 10649.29 ) LPos=( 459.06, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3960.83, -35.66, 10624.68 ) LPos=( 487.06, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3960.83, -27.03, 10624.71 ) LPos=( 487.06, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3965.01, -27.01, 10617.16 ) LPos=( 495.69, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3965.01, -24.14, 10617.17 ) LPos=( 495.69, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3966.40, -41.38, 10614.61 ) LPos=( 498.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3967.79, -24.12, 10612.14 ) LPos=( 501.44, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.79, -21.25, 10612.15 ) LPos=( 501.44, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3948.66, -29.97, 10646.68 ) LPos=( 461.94, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3948.66, -32.85, 10646.67 ) LPos=( 461.94, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3952.84, -38.57, 10639.11 ) LPos=( 470.56, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3963.62, -69.39, 10619.55 ) LPos=( 492.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3959.44, -57.91, 10627.13 ) LPos=( 484.19, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3955.62, -57.94, 10634.02 ) LPos=( 476.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3955.62, -69.44, 10633.99 ) LPos=( 476.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3951.45, -66.58, 10641.54 ) LPos=( 467.69, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3959.44, -91.66, 10627.03 ) LPos=( 484.19, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3962.22, -88.77, 10622.01 ) LPos=( 489.94, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3965.01, -88.76, 10616.98 ) LPos=( 495.69, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3967.79, -94.50, 10611.93 ) LPos=( 501.44, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3967.79, -83.00, 10611.97 ) LPos=( 501.44, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3969.19, -88.74, 10609.44 ) LPos=( 504.31, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3969.19, -82.99, 10609.45 ) LPos=( 504.31, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3969.19, -77.24, 10609.47 ) LPos=( 504.31, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3954.23, -77.32, 10636.48 ) LPos=( 473.44, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3950.05, -80.21, 10644.02 ) LPos=( 464.81, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3954.23, -80.19, 10636.47 ) LPos=( 473.44, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3948.66, -85.97, 10646.52 ) LPos=( 461.94, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3966.40, -125.38, 10614.36 ) LPos=( 498.56, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3959.44, -122.54, 10626.94 ) LPos=( 484.19, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3960.83, -119.66, 10624.44 ) LPos=( 487.06, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3966.40, -116.75, 10614.38 ) LPos=( 498.56, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3963.62, -116.77, 10619.41 ) LPos=( 492.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3969.19, -113.86, 10609.36 ) LPos=( 504.31, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3969.19, -110.99, 10609.37 ) LPos=( 504.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3959.44, -111.04, 10626.98 ) LPos=( 484.19, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3966.40, -108.13, 10614.41 ) LPos=( 498.56, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3963.62, -108.14, 10619.44 ) LPos=( 492.81, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3965.01, -105.26, 10616.93 ) LPos=( 495.69, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3955.62, -105.31, 10633.88 ) LPos=( 476.31, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3954.23, -108.19, 10636.39 ) LPos=( 473.44, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3954.23, -125.44, 10636.34 ) LPos=( 473.44, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3948.66, -122.60, 10646.41 ) LPos=( 461.94, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 3947.27, -108.23, 10648.97 ) LPos=( 459.06, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3945.88, -111.11, 10651.47 ) LPos=( 456.19, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3959.44, -147.66, 10626.87 ) LPos=( 484.19, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3959.44, -144.79, 10626.88 ) LPos=( 484.19, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3962.23, -136.15, 10621.87 ) LPos=( 489.94, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3963.62, -136.14, 10619.36 ) LPos=( 492.81, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3965.01, -153.38, 10616.79 ) LPos=( 495.69, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3966.40, -136.13, 10614.33 ) LPos=( 498.56, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3966.40, -133.25, 10614.34 ) LPos=( 498.56, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3967.80, -153.37, 10611.76 ) LPos=( 501.44, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3967.80, -133.24, 10611.82 ) LPos=( 501.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3945.88, -141.99, 10651.38 ) LPos=( 456.19, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3948.66, -141.97, 10646.35 ) LPos=( 461.94, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3947.27, -144.85, 10648.86 ) LPos=( 459.06, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3948.66, -144.85, 10646.34 ) LPos=( 461.94, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3954.23, -150.57, 10636.27 ) LPos=( 473.44, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3965.01, -181.38, 10616.71 ) LPos=( 495.69, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3959.44, -175.66, 10626.79 ) LPos=( 484.19, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3954.23, -172.82, 10636.20 ) LPos=( 473.44, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3951.45, -175.71, 10641.22 ) LPos=( 467.69, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3950.06, -167.09, 10643.76 ) LPos=( 464.81, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3947.27, -209.48, 10648.67 ) LPos=( 459.06, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:189,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3951.45, -209.46, 10641.12 ) LPos=( 467.69, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3956.08, -238.37, 10632.67 ) LPos=( 477.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3947.36, -244.42, 10648.40 ) LPos=( 459.25, -244.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -256.38, 10637.87 ) LPos=( 471.25, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3950.27, -276.40, 10643.06 ) LPos=( 465.25, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3950.27, -294.40, 10643.01 ) LPos=( 465.25, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3956.09, -344.37, 10632.36 ) LPos=( 477.25, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3953.18, -356.38, 10637.58 ) LPos=( 471.25, -356.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3947.37, -362.42, 10648.06 ) LPos=( 459.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3953.18, -362.38, 10637.56 ) LPos=( 471.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3958.99, -362.35, 10627.06 ) LPos=( 483.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3964.81, -362.32, 10616.56 ) LPos=( 495.25, -362.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -368.38, 10637.54 ) LPos=( 471.25, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3956.09, -374.37, 10632.27 ) LPos=( 477.25, -374.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 3947.37, -388.42, 10647.98 ) LPos=( 459.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.09, -388.37, 10632.23 ) LPos=( 477.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3958.99, -388.35, 10626.98 ) LPos=( 483.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3947.37, -394.42, 10647.96 ) LPos=( 459.25, -394.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3956.09, -400.37, 10632.20 ) LPos=( 477.25, -400.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.81, -400.32, 10616.45 ) LPos=( 495.25, -400.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3947.37, -406.42, 10647.93 ) LPos=( 459.25, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3950.27, -406.40, 10642.68 ) LPos=( 465.25, -406.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -424.38, 10637.38 ) LPos=( 471.25, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3958.99, -424.35, 10626.88 ) LPos=( 483.25, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3964.81, -430.32, 10616.36 ) LPos=( 495.25, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3956.09, -444.37, 10632.07 ) LPos=( 477.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3959.00, -444.35, 10626.82 ) LPos=( 483.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3961.90, -444.34, 10621.57 ) LPos=( 489.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3967.71, -444.31, 10611.07 ) LPos=( 501.25, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3947.37, -450.41, 10647.80 ) LPos=( 459.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3953.18, -450.38, 10637.30 ) LPos=( 471.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3961.90, -450.34, 10621.55 ) LPos=( 489.25, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3959.00, -456.35, 10626.78 ) LPos=( 483.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3961.90, -456.34, 10621.53 ) LPos=( 489.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.81, -456.32, 10616.29 ) LPos=( 495.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3967.71, -456.31, 10611.04 ) LPos=( 501.25, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3956.09, -462.37, 10632.02 ) LPos=( 477.25, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3961.90, -462.34, 10621.52 ) LPos=( 489.25, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3964.81, -462.32, 10616.27 ) LPos=( 495.25, -462.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3947.37, -468.41, 10647.74 ) LPos=( 459.25, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3964.81, -468.32, 10616.25 ) LPos=( 495.25, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 3967.71, -468.31, 10611.00 ) LPos=( 501.25, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3956.09, -474.37, 10631.98 ) LPos=( 477.25, -474.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3953.18, -480.38, 10637.21 ) LPos=( 471.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3956.09, -480.37, 10631.96 ) LPos=( 477.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3961.90, -480.34, 10621.46 ) LPos=( 489.25, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3947.37, -486.41, 10647.69 ) LPos=( 459.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3956.09, -486.37, 10631.94 ) LPos=( 477.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3961.90, -486.34, 10621.45 ) LPos=( 489.25, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3961.90, -506.34, 10621.39 ) LPos=( 489.25, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3967.72, -568.31, 10610.71 ) LPos=( 501.25, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3961.91, -580.34, 10621.17 ) LPos=( 489.25, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3956.09, -586.37, 10631.65 ) LPos=( 477.25, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3947.37, -592.41, 10647.38 ) LPos=( 459.25, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3964.81, -624.32, 10615.79 ) LPos=( 495.25, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,00 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3980.52, 651.76, 10591.11 ) LPos=( 527.75, 651.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3977.61, 619.74, 10596.26 ) LPos=( 521.75, 619.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.52, 619.76, 10591.01 ) LPos=( 527.75, 619.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3983.43, 613.77, 10585.74 ) LPos=( 533.75, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3986.33, 613.79, 10580.50 ) LPos=( 539.75, 613.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3986.33, 607.79, 10580.48 ) LPos=( 539.75, 607.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.24, 607.80, 10575.23 ) LPos=( 545.75, 607.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3992.15, 577.82, 10569.89 ) LPos=( 551.75, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 3995.05, 545.84, 10564.55 ) LPos=( 557.75, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3992.15, 539.82, 10569.78 ) LPos=( 551.75, 539.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.24, 521.80, 10574.98 ) LPos=( 545.75, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3986.34, 507.79, 10580.18 ) LPos=( 539.75, 507.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3983.43, 501.77, 10585.42 ) LPos=( 533.75, 501.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:192,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3983.43, 483.77, 10585.36 ) LPos=( 533.75, 483.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3983.43, 445.77, 10585.25 ) LPos=( 533.75, 445.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3995.06, 445.84, 10564.26 ) LPos=( 557.75, 445.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3986.34, 427.79, 10579.95 ) LPos=( 539.75, 427.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3983.43, 415.77, 10585.16 ) LPos=( 533.75, 415.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3980.53, 409.76, 10590.40 ) LPos=( 527.75, 409.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3995.06, 395.84, 10564.11 ) LPos=( 557.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.15, 383.82, 10569.32 ) LPos=( 551.75, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 3983.43, 353.77, 10584.98 ) LPos=( 533.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.25, 353.80, 10574.48 ) LPos=( 545.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3995.06, 333.84, 10563.93 ) LPos=( 557.75, 333.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3992.15, 303.82, 10569.09 ) LPos=( 551.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3992.15, 297.82, 10569.07 ) LPos=( 551.75, 297.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.53, 283.76, 10590.03 ) LPos=( 527.75, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3983.44, 283.77, 10584.78 ) LPos=( 533.75, 283.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3974.72, 265.73, 10600.47 ) LPos=( 515.75, 265.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3974.72, 259.73, 10600.45 ) LPos=( 515.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 3989.25, 253.81, 10574.19 ) LPos=( 545.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3986.34, 241.79, 10579.40 ) LPos=( 539.75, 241.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3974.63, 219.29, 10600.50 ) LPos=( 515.56, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3988.19, 188.49, 10575.91 ) LPos=( 543.56, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3990.98, 188.50, 10570.88 ) LPos=( 549.31, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3973.24, 197.03, 10602.95 ) LPos=( 512.69, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3988.19, 163.36, 10575.84 ) LPos=( 543.56, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3977.41, 174.81, 10595.34 ) LPos=( 521.31, 174.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3993.76, 144.02, 10565.72 ) LPos=( 555.06, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3995.16, 141.15, 10563.20 ) LPos=( 557.94, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3993.76, 101.64, 10565.60 ) LPos=( 555.06, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3993.76, 107.39, 10565.61 ) LPos=( 555.06, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3996.55, 116.03, 10560.61 ) LPos=( 560.81, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3981.59, 98.70, 10587.57 ) LPos=( 529.94, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3980.20, 110.20, 10590.12 ) LPos=( 527.06, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3976.02, 115.92, 10597.68 ) LPos=( 518.44, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3973.24, 118.78, 10602.72 ) LPos=( 512.69, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3988.19, 79.36, 10575.59 ) LPos=( 543.56, 78.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3989.59, 76.50, 10573.07 ) LPos=( 546.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.59, 85.12, 10573.09 ) LPos=( 546.44, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3990.98, 70.75, 10570.54 ) LPos=( 549.31, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3996.55, 70.78, 10560.48 ) LPos=( 560.81, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3996.55, 88.03, 10560.53 ) LPos=( 560.81, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3976.02, 76.42, 10597.56 ) LPos=( 518.44, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3990.98, 48.50, 10570.47 ) LPos=( 549.31, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3993.77, 51.39, 10565.45 ) LPos=( 555.06, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3995.16, 57.15, 10562.95 ) LPos=( 557.94, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3993.77, 60.02, 10565.47 ) LPos=( 555.06, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3990.98, 62.88, 10570.51 ) LPos=( 549.31, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 3981.60, 42.70, 10587.40 ) LPos=( 529.94, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3980.20, 48.45, 10589.94 ) LPos=( 527.06, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3978.81, 54.19, 10592.47 ) LPos=( 524.19, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3973.24, 62.78, 10602.55 ) LPos=( 512.69, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3973.24, 59.91, 10602.55 ) LPos=( 512.69, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3973.24, 57.03, 10602.54 ) LPos=( 512.69, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3988.20, 14.74, 10575.40 ) LPos=( 543.56, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3990.98, 23.38, 10570.40 ) LPos=( 549.31, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3995.16, 20.53, 10562.84 ) LPos=( 557.94, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3995.16, 29.15, 10562.87 ) LPos=( 557.94, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3976.03, 34.80, 10597.44 ) LPos=( 518.44, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3973.24, 29.03, 10602.46 ) LPos=( 512.69, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3982.99, 29.09, 10584.85 ) LPos=( 532.81, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3978.81, 23.31, 10592.38 ) LPos=( 524.19, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3981.60, 23.33, 10587.35 ) LPos=( 529.94, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3981.60, 20.45, 10587.34 ) LPos=( 529.94, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3973.24, 14.66, 10602.41 ) LPos=( 512.69, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3982.99, 14.71, 10584.81 ) LPos=( 532.81, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3989.59, -13.25, 10572.80 ) LPos=( 546.44, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3992.38, -7.49, 10567.79 ) LPos=( 552.19, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.59, -7.50, 10572.82 ) LPos=( 546.44, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3986.80, -7.52, 10577.85 ) LPos=( 540.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3989.59, -4.63, 10572.83 ) LPos=( 546.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3996.55, -1.72, 10560.26 ) LPos=( 560.81, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3990.98, -1.75, 10570.32 ) LPos=( 549.31, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3990.98, 6.88, 10570.35 ) LPos=( 549.31, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3982.99, -1.79, 10584.76 ) LPos=( 532.81, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3982.99, -7.54, 10584.74 ) LPos=( 532.81, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3981.60, -10.42, 10587.25 ) LPos=( 529.94, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3980.20, -4.68, 10589.78 ) LPos=( 527.06, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3978.81, -4.69, 10592.30 ) LPos=( 524.19, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3976.03, -4.70, 10597.33 ) LPos=( 518.44, -5.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3974.63, -1.83, 10599.85 ) LPos=( 515.56, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( 3990.98, -32.62, 10570.23 ) LPos=( 549.31, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3992.38, -29.74, 10567.73 ) LPos=( 552.19, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3993.77, -32.61, 10565.20 ) LPos=( 555.06, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3993.77, -23.98, 10565.23 ) LPos=( 555.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3996.55, -21.09, 10560.21 ) LPos=( 560.81, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 3982.99, -21.16, 10584.70 ) LPos=( 532.81, -21.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3973.24, -24.09, 10602.30 ) LPos=( 512.69, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3980.21, -24.05, 10589.72 ) LPos=( 527.06, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3978.81, -26.94, 10592.23 ) LPos=( 524.19, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3980.21, -32.68, 10589.70 ) LPos=( 527.06, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3992.38, -69.24, 10567.61 ) LPos=( 552.19, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3990.98, -69.25, 10570.13 ) LPos=( 549.31, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3990.98, -66.37, 10570.13 ) LPos=( 549.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3996.55, -63.47, 10560.08 ) LPos=( 560.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3990.98, -63.50, 10570.14 ) LPos=( 549.31, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.59, -63.50, 10572.66 ) LPos=( 546.44, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3996.55, -60.59, 10560.09 ) LPos=( 560.81, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 3990.98, -60.62, 10570.15 ) LPos=( 549.31, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 3989.59, -60.63, 10572.67 ) LPos=( 546.44, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3990.98, -57.75, 10570.16 ) LPos=( 549.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 3989.59, -57.75, 10572.67 ) LPos=( 546.44, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3996.55, -54.84, 10560.11 ) LPos=( 560.81, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3995.16, -54.85, 10562.62 ) LPos=( 557.94, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3988.20, -54.89, 10575.20 ) LPos=( 543.56, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3986.81, -54.89, 10577.71 ) LPos=( 540.69, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3990.98, -49.12, 10570.18 ) LPos=( 549.31, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3988.20, -49.14, 10575.21 ) LPos=( 543.56, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3982.99, -63.54, 10584.58 ) LPos=( 532.81, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3981.60, -49.17, 10587.13 ) LPos=( 529.94, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3981.60, -52.05, 10587.13 ) LPos=( 529.94, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3981.60, -57.80, 10587.11 ) LPos=( 529.94, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3980.21, -52.05, 10589.64 ) LPos=( 527.06, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3980.21, -54.93, 10589.63 ) LPos=( 527.06, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3977.42, -57.82, 10594.65 ) LPos=( 521.31, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3977.42, -60.69, 10594.65 ) LPos=( 521.31, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3977.42, -66.44, 10594.63 ) LPos=( 521.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( 3974.64, -54.96, 10599.69 ) LPos=( 515.56, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3990.98, -80.00, 10570.09 ) LPos=( 549.31, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3992.38, -79.99, 10567.58 ) LPos=( 552.19, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3993.77, -79.98, 10565.06 ) LPos=( 555.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3995.16, -82.85, 10562.54 ) LPos=( 557.94, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3996.56, -97.22, 10559.98 ) LPos=( 560.81, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 3996.56, -94.34, 10559.99 ) LPos=( 560.81, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3996.56, -91.47, 10560.00 ) LPos=( 560.81, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 3996.56, -85.72, 10560.02 ) LPos=( 560.81, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 3996.56, -77.09, 10560.04 ) LPos=( 560.81, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3976.03, -77.20, 10597.11 ) LPos=( 518.44, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3973.24, -80.09, 10602.13 ) LPos=( 512.69, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 3974.64, -80.08, 10599.62 ) LPos=( 515.56, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3976.03, -80.08, 10597.10 ) LPos=( 518.44, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3973.24, -82.97, 10602.13 ) LPos=( 512.69, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3974.64, -82.96, 10599.61 ) LPos=( 515.56, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( 3978.81, -82.94, 10592.07 ) LPos=( 524.19, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3973.24, -85.84, 10602.12 ) LPos=( 512.69, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3974.64, -85.83, 10599.60 ) LPos=( 515.56, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 3976.03, -85.83, 10597.09 ) LPos=( 518.44, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3981.60, -85.80, 10587.03 ) LPos=( 529.94, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3973.24, -88.72, 10602.11 ) LPos=( 512.69, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3974.64, -88.71, 10599.59 ) LPos=( 515.56, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3976.03, -88.70, 10597.08 ) LPos=( 518.44, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3973.24, -91.59, 10602.10 ) LPos=( 512.69, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3974.64, -91.58, 10599.59 ) LPos=( 515.56, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3992.38, -125.24, 10567.45 ) LPos=( 552.19, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 3990.99, -125.25, 10569.96 ) LPos=( 549.31, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 3986.81, -119.52, 10577.52 ) LPos=( 540.69, -120.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 3996.56, -110.84, 10559.94 ) LPos=( 560.81, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 3992.38, -107.99, 10567.50 ) LPos=( 552.19, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.59, -105.13, 10572.54 ) LPos=( 546.44, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3990.99, -136.00, 10569.93 ) LPos=( 549.31, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 3992.38, -144.61, 10567.39 ) LPos=( 552.19, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3993.77, -141.73, 10564.88 ) LPos=( 555.06, -142.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3996.56, -153.22, 10559.82 ) LPos=( 560.81, -153.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3976.03, -133.20, 10596.95 ) LPos=( 518.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3980.21, -133.18, 10589.40 ) LPos=( 527.06, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 3978.82, -136.06, 10591.91 ) LPos=( 524.19, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( 3980.21, -136.05, 10589.39 ) LPos=( 527.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3978.82, -144.69, 10591.88 ) LPos=( 524.19, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( 3978.82, -147.56, 10591.88 ) LPos=( 524.19, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3973.25, -150.47, 10601.93 ) LPos=( 512.69, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3981.60, -150.42, 10586.84 ) LPos=( 529.94, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 3993.77, -166.86, 10564.81 ) LPos=( 555.06, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 3982.99, -169.79, 10584.27 ) LPos=( 532.81, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( 3976.03, -164.08, 10596.86 ) LPos=( 518.44, -164.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 3988.20, -200.64, 10574.77 ) LPos=( 543.56, -201.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:195,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3980.21, -194.93, 10589.22 ) LPos=( 527.06, -195.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.17, -288.18, 10567.35 ) LPos=( 551.75, -288.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 3977.64, -300.25, 10593.56 ) LPos=( 521.75, -300.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3980.55, -300.24, 10588.31 ) LPos=( 527.75, -300.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 3983.45, -306.22, 10583.04 ) LPos=( 533.75, -306.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 3974.73, -338.27, 10598.70 ) LPos=( 515.75, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 3983.45, -344.22, 10582.93 ) LPos=( 533.75, -344.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( 3977.64, -350.25, 10593.41 ) LPos=( 521.75, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -368.27, 10598.61 ) LPos=( 515.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 3995.08, -368.16, 10561.87 ) LPos=( 557.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:196,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -424.27, 10598.45 ) LPos=( 515.75, -424.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3977.64, -444.25, 10593.14 ) LPos=( 521.75, -444.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3980.55, -450.24, 10587.87 ) LPos=( 527.75, -450.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 3977.64, -456.25, 10593.10 ) LPos=( 521.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 3980.55, -456.24, 10587.85 ) LPos=( 527.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3974.74, -468.27, 10598.32 ) LPos=( 515.75, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 3980.55, -468.24, 10587.82 ) LPos=( 527.75, -468.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -480.27, 10598.28 ) LPos=( 515.75, -480.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 3980.55, -486.24, 10587.77 ) LPos=( 527.75, -486.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 3977.65, -500.25, 10592.97 ) LPos=( 521.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.55, -500.24, 10587.72 ) LPos=( 527.75, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 3980.55, -506.24, 10587.71 ) LPos=( 527.75, -506.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( 3986.37, -524.21, 10577.16 ) LPos=( 539.75, -524.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3986.37, -536.21, 10577.12 ) LPos=( 539.75, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 3989.27, -536.19, 10571.87 ) LPos=( 545.75, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 3974.74, -542.27, 10598.10 ) LPos=( 515.75, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 3989.27, -542.19, 10571.85 ) LPos=( 545.75, -542.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 3989.27, -556.19, 10571.81 ) LPos=( 545.75, -556.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3992.18, -556.18, 10566.56 ) LPos=( 551.75, -556.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 3992.18, -562.18, 10566.55 ) LPos=( 551.75, -562.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( 3974.74, -568.27, 10598.02 ) LPos=( 515.75, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.18, -568.18, 10566.53 ) LPos=( 551.75, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 3974.74, -574.27, 10598.01 ) LPos=( 515.75, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 3992.18, -574.18, 10566.51 ) LPos=( 551.75, -574.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 3974.74, -580.27, 10597.99 ) LPos=( 515.75, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 3992.18, -580.18, 10566.49 ) LPos=( 551.75, -580.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 3992.18, -586.18, 10566.48 ) LPos=( 551.75, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 3995.09, -586.16, 10561.23 ) LPos=( 557.75, -586.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 3992.18, -592.18, 10566.46 ) LPos=( 551.75, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 3992.18, -598.18, 10566.44 ) LPos=( 551.75, -598.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 3980.56, -612.24, 10587.40 ) LPos=( 527.75, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( 3992.18, -612.18, 10566.40 ) LPos=( 551.75, -612.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 3989.28, -624.19, 10571.61 ) LPos=( 545.75, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 3992.18, -624.18, 10566.36 ) LPos=( 551.75, -624.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 3974.74, -648.27, 10597.79 ) LPos=( 515.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 3986.37, -648.21, 10576.79 ) LPos=( 539.75, -648.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4004.98, 583.89, 10546.73 ) LPos=( 578.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.61, 583.95, 10525.73 ) LPos=( 602.25, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4019.51, 577.97, 10520.46 ) LPos=( 608.25, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4016.61, 521.95, 10525.55 ) LPos=( 602.25, 521.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4007.89, 495.90, 10541.22 ) LPos=( 584.25, 495.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:198,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4013.70, 477.93, 10530.67 ) LPos=( 596.25, 477.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( 4004.99, 383.89, 10546.14 ) LPos=( 578.25, 383.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4007.89, 377.90, 10540.87 ) LPos=( 584.25, 377.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( 4004.99, 371.89, 10546.10 ) LPos=( 578.25, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4010.80, 371.92, 10535.61 ) LPos=( 590.25, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4013.71, 365.94, 10530.34 ) LPos=( 596.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4016.61, 365.95, 10525.09 ) LPos=( 602.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4019.52, 365.97, 10519.84 ) LPos=( 608.25, 365.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4010.80, 359.92, 10535.57 ) LPos=( 590.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4013.71, 359.94, 10530.32 ) LPos=( 596.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.61, 359.95, 10525.07 ) LPos=( 602.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4019.52, 359.97, 10519.82 ) LPos=( 608.25, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 4019.52, 327.97, 10519.73 ) LPos=( 608.25, 327.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4013.71, 321.94, 10530.21 ) LPos=( 596.25, 321.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4016.62, 259.95, 10524.78 ) LPos=( 602.25, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4002.09, 253.87, 10551.01 ) LPos=( 572.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4016.62, 253.95, 10524.76 ) LPos=( 602.25, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4010.81, 247.92, 10535.24 ) LPos=( 590.25, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4018.34, 210.90, 10521.52 ) LPos=( 605.81, 210.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.13, 225.29, 10516.53 ) LPos=( 611.56, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4018.34, 231.02, 10521.58 ) LPos=( 605.81, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4010.35, 222.36, 10535.99 ) LPos=( 589.31, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.00, 230.94, 10551.10 ) LPos=( 572.06, 230.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4015.56, 188.63, 10526.48 ) LPos=( 600.06, 187.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4018.35, 154.90, 10521.35 ) LPos=( 605.81, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4023.92, 157.80, 10511.30 ) LPos=( 617.31, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4018.35, 163.52, 10521.38 ) LPos=( 605.81, 162.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.35, 169.27, 10521.40 ) LPos=( 605.81, 168.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,05 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4004.78, 157.70, 10545.86 ) LPos=( 577.81, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 4015.56, 141.26, 10526.34 ) LPos=( 600.06, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( 4018.35, 147.02, 10521.33 ) LPos=( 605.81, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4019.74, 144.16, 10518.81 ) LPos=( 608.69, 143.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4023.92, 141.30, 10511.25 ) LPos=( 617.31, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4003.39, 146.94, 10548.34 ) LPos=( 574.94, 146.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( 4000.61, 141.18, 10553.36 ) LPos=( 569.19, 140.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,08 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4023.92, 98.93, 10511.13 ) LPos=( 617.31, 98.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4000.61, 110.30, 10553.26 ) LPos=( 569.19, 109.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4014.17, 70.88, 10528.65 ) LPos=( 597.19, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( 4016.96, 85.27, 10523.66 ) LPos=( 602.94, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 4019.74, 91.03, 10518.65 ) LPos=( 608.69, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4021.13, 70.91, 10516.08 ) LPos=( 611.56, 70.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.13, 76.66, 10516.09 ) LPos=( 611.56, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4021.13, 85.29, 10516.12 ) LPos=( 611.56, 84.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4022.53, 82.42, 10513.60 ) LPos=( 614.44, 81.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4010.36, 90.98, 10535.60 ) LPos=( 589.31, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 4010.36, 88.11, 10535.59 ) LPos=( 589.31, 87.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4003.39, 73.69, 10548.13 ) LPos=( 574.94, 73.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4022.53, 42.92, 10513.48 ) LPos=( 614.44, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 4021.13, 54.41, 10516.03 ) LPos=( 611.56, 53.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.35, 57.27, 10521.07 ) LPos=( 605.81, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4014.17, 57.25, 10528.61 ) LPos=( 597.19, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4015.56, 60.13, 10526.11 ) LPos=( 600.06, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4007.57, 57.22, 10540.53 ) LPos=( 583.56, 56.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.00, 62.94, 10550.61 ) LPos=( 572.06, 62.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( 4019.74, 26.41, 10518.46 ) LPos=( 608.69, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( 4019.74, 35.03, 10518.49 ) LPos=( 608.69, 34.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4023.92, 20.68, 10510.90 ) LPos=( 617.31, 19.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4023.92, 26.43, 10510.92 ) LPos=( 617.31, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( 4006.18, 32.08, 10542.97 ) LPos=( 580.69, 31.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( 4002.00, 29.19, 10550.51 ) LPos=( 572.06, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4008.96, 23.47, 10537.92 ) LPos=( 586.44, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:200,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4004.79, 14.83, 10545.44 ) LPos=( 577.81, 14.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( 4021.14, -1.59, 10515.86 ) LPos=( 611.56, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.14, 1.29, 10515.87 ) LPos=( 611.56, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.35, 1.27, 10520.90 ) LPos=( 605.81, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4021.14, 4.16, 10515.88 ) LPos=( 611.56, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4019.74, 4.16, 10518.40 ) LPos=( 608.69, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4018.35, 4.15, 10520.91 ) LPos=( 605.81, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.96, 4.14, 10523.43 ) LPos=( 602.94, 3.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4022.53, 7.05, 10513.37 ) LPos=( 614.44, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4019.74, 7.03, 10518.40 ) LPos=( 608.69, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4018.35, 7.02, 10520.92 ) LPos=( 605.81, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4015.57, 7.01, 10525.95 ) LPos=( 600.06, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4003.40, 1.19, 10547.91 ) LPos=( 574.94, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4003.40, -1.68, 10547.91 ) LPos=( 574.94, -2.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4000.61, -7.45, 10552.92 ) LPos=( 569.19, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4014.17, -41.12, 10528.32 ) LPos=( 597.19, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4014.17, -38.25, 10528.33 ) LPos=( 597.19, -38.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4023.92, -41.07, 10510.72 ) LPos=( 617.31, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4004.79, -26.80, 10545.32 ) LPos=( 577.81, -27.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( 4000.61, -32.57, 10552.85 ) LPos=( 569.19, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4003.40, -41.18, 10547.79 ) LPos=( 574.94, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4023.92, -66.20, 10510.64 ) LPos=( 617.31, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4021.14, -66.21, 10515.67 ) LPos=( 611.56, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4015.57, -66.24, 10525.74 ) LPos=( 600.06, -66.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 4016.96, -63.36, 10523.23 ) LPos=( 602.94, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4021.14, -54.71, 10515.71 ) LPos=( 611.56, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4014.17, -54.75, 10528.28 ) LPos=( 597.19, -55.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4023.92, -51.82, 10510.69 ) LPos=( 617.31, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4022.53, -51.83, 10513.20 ) LPos=( 614.44, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4019.75, -48.97, 10518.24 ) LPos=( 608.69, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4006.18, -60.54, 10542.70 ) LPos=( 580.69, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( 4006.18, -63.42, 10542.69 ) LPos=( 580.69, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4002.00, -57.69, 10550.26 ) LPos=( 572.06, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4002.00, -60.56, 10550.25 ) LPos=( 572.06, -61.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4000.61, -49.07, 10552.80 ) LPos=( 569.19, -49.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4000.61, -63.45, 10552.75 ) LPos=( 569.19, -64.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4014.18, -85.62, 10528.19 ) LPos=( 597.19, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4015.57, -91.37, 10525.66 ) LPos=( 600.06, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4015.57, -79.87, 10525.70 ) LPos=( 600.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( 4016.96, -85.61, 10523.16 ) LPos=( 602.94, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4019.75, -88.47, 10518.12 ) LPos=( 608.69, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4021.14, -85.59, 10515.62 ) LPos=( 611.56, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4021.14, -82.71, 10515.63 ) LPos=( 611.56, -83.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4023.92, -97.07, 10510.55 ) LPos=( 617.31, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4006.18, -77.04, 10542.65 ) LPos=( 580.69, -77.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4002.00, -79.94, 10550.19 ) LPos=( 572.06, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( 4010.36, -79.89, 10535.10 ) LPos=( 589.31, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4002.01, -85.69, 10550.17 ) LPos=( 572.06, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4008.97, -97.15, 10537.56 ) LPos=( 586.44, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.96, -107.86, 10523.10 ) LPos=( 602.94, -108.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4010.36, -110.77, 10535.01 ) LPos=( 589.31, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 4007.58, -105.03, 10540.06 ) LPos=( 583.56, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4006.18, -110.79, 10542.55 ) LPos=( 580.69, -111.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.01, -105.06, 10550.12 ) LPos=( 572.06, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4002.01, -122.31, 10550.07 ) LPos=( 572.06, -122.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4002.01, -125.19, 10550.06 ) LPos=( 572.06, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4000.61, -113.69, 10552.61 ) LPos=( 569.19, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4000.61, -116.57, 10552.60 ) LPos=( 569.19, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4014.18, -147.37, 10528.01 ) LPos=( 597.19, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4015.57, -147.37, 10525.50 ) LPos=( 600.06, -148.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 4007.58, -133.03, 10539.97 ) LPos=( 583.56, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( 4008.97, -133.03, 10537.46 ) LPos=( 586.44, -133.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4002.01, -135.94, 10550.03 ) LPos=( 572.06, -136.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4016.96, -169.61, 10522.92 ) LPos=( 602.94, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( 4018.36, -166.73, 10520.41 ) LPos=( 605.81, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4021.14, -160.96, 10515.40 ) LPos=( 611.56, -161.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4010.36, -169.64, 10534.84 ) LPos=( 589.31, -170.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4003.40, -175.43, 10547.40 ) LPos=( 574.94, -176.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4002.01, -172.56, 10549.92 ) LPos=( 572.06, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4023.93, -209.07, 10510.22 ) LPos=( 617.31, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( 4004.79, -197.67, 10544.81 ) LPos=( 577.81, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4002.01, -209.19, 10549.81 ) LPos=( 572.06, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4003.40, -209.18, 10547.30 ) LPos=( 574.94, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4002.10, -220.12, 10549.62 ) LPos=( 572.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4010.82, -220.08, 10533.87 ) LPos=( 590.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4013.73, -220.06, 10528.62 ) LPos=( 596.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( 4016.63, -220.05, 10523.37 ) LPos=( 602.25, -220.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4002.10, -226.12, 10549.60 ) LPos=( 572.25, -226.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4010.82, -232.08, 10533.83 ) LPos=( 590.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( 4019.54, -232.03, 10518.09 ) LPos=( 608.25, -232.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 4010.82, -238.08, 10533.82 ) LPos=( 590.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( 4019.54, -238.03, 10518.07 ) LPos=( 608.25, -238.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4007.91, -250.09, 10539.03 ) LPos=( 584.25, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( 4002.10, -262.12, 10549.49 ) LPos=( 572.25, -262.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4019.54, -282.03, 10517.94 ) LPos=( 608.25, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( 4002.10, -312.12, 10549.35 ) LPos=( 572.25, -312.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4005.01, -318.11, 10544.08 ) LPos=( 578.25, -318.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4007.92, -338.09, 10538.77 ) LPos=( 584.25, -338.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( 4010.82, -350.08, 10533.49 ) LPos=( 590.25, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4013.73, -350.06, 10528.24 ) LPos=( 596.25, -350.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4022.45, -388.01, 10512.38 ) LPos=( 614.25, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( 4022.45, -412.01, 10512.31 ) LPos=( 614.25, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:203,01 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4013.73, -500.06, 10527.80 ) LPos=( 596.25, -500.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:203,01 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4013.73, -536.06, 10527.69 ) LPos=( 596.25, -536.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:203,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4016.64, -592.05, 10522.28 ) LPos=( 602.25, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( 4041.07, 602.08, 10481.60 ) LPos=( 652.75, 601.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4029.44, 590.02, 10502.56 ) LPos=( 628.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4038.16, 590.06, 10486.82 ) LPos=( 646.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4043.98, 590.10, 10476.32 ) LPos=( 658.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4046.88, 590.11, 10471.07 ) LPos=( 664.75, 589.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4032.35, 584.03, 10497.30 ) LPos=( 634.75, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4049.79, 584.13, 10465.80 ) LPos=( 670.75, 583.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4035.26, 578.05, 10492.03 ) LPos=( 640.75, 577.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4035.26, 564.05, 10491.99 ) LPos=( 640.75, 563.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( 4041.07, 552.08, 10481.46 ) LPos=( 652.75, 551.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( 4043.98, 552.10, 10476.21 ) LPos=( 658.75, 551.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( 4043.98, 546.10, 10476.19 ) LPos=( 658.75, 545.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4041.08, 396.08, 10481.00 ) LPos=( 652.75, 395.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 4041.08, 390.08, 10480.98 ) LPos=( 652.75, 389.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( 4029.45, 372.02, 10501.92 ) LPos=( 628.75, 371.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4041.08, 360.08, 10480.89 ) LPos=( 652.75, 359.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4032.36, 354.03, 10496.62 ) LPos=( 634.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4041.08, 354.08, 10480.88 ) LPos=( 652.75, 353.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4049.80, 310.13, 10465.00 ) LPos=( 670.75, 309.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4049.80, 304.13, 10464.98 ) LPos=( 670.75, 303.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( 4041.08, 278.08, 10480.65 ) LPos=( 652.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( 4043.99, 278.10, 10475.40 ) LPos=( 658.75, 277.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4043.99, 260.10, 10475.35 ) LPos=( 658.75, 259.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4038.17, 254.07, 10485.83 ) LPos=( 646.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4043.99, 254.10, 10475.33 ) LPos=( 658.75, 253.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4049.80, 248.13, 10464.82 ) LPos=( 670.75, 247.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,00 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( 4044.32, 222.54, 10474.64 ) LPos=( 659.44, 221.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,00 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4042.93, 225.40, 10477.16 ) LPos=( 656.56, 224.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,01 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4037.72, 219.63, 10486.55 ) LPos=( 645.81, 218.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,01 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4032.15, 213.85, 10496.59 ) LPos=( 634.31, 213.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,02 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( 4042.93, 197.40, 10477.08 ) LPos=( 656.56, 196.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4036.33, 191.62, 10488.98 ) LPos=( 642.94, 190.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4032.15, 182.97, 10496.50 ) LPos=( 634.31, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4033.54, 182.98, 10493.99 ) LPos=( 637.19, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4036.33, 182.99, 10488.96 ) LPos=( 642.94, 182.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4051.29, 157.95, 10461.87 ) LPos=( 673.81, 157.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4042.93, 166.53, 10476.99 ) LPos=( 656.56, 165.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( 4029.37, 154.96, 10501.45 ) LPos=( 628.56, 154.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,06 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4041.54, 129.90, 10479.40 ) LPos=( 653.69, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4032.15, 135.60, 10496.36 ) LPos=( 634.31, 134.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4030.76, 132.71, 10498.87 ) LPos=( 631.44, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4034.94, 132.74, 10491.33 ) LPos=( 640.06, 131.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4030.76, 129.84, 10498.86 ) LPos=( 631.44, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4034.94, 129.86, 10491.32 ) LPos=( 640.06, 129.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4051.29, 113.45, 10461.74 ) LPos=( 673.81, 112.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4036.33, 116.24, 10488.76 ) LPos=( 642.94, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4036.33, 101.87, 10488.72 ) LPos=( 642.94, 101.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4033.55, 119.10, 10493.80 ) LPos=( 637.19, 118.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4033.55, 116.23, 10493.79 ) LPos=( 637.19, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( 4032.15, 107.60, 10496.28 ) LPos=( 634.31, 106.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4029.37, 116.21, 10501.34 ) LPos=( 628.56, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4027.97, 116.20, 10503.85 ) LPos=( 625.69, 115.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4027.98, 104.70, 10503.82 ) LPos=( 625.69, 103.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( 4049.90, 76.82, 10464.15 ) LPos=( 670.94, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( 4034.94, 91.11, 10491.20 ) LPos=( 640.06, 90.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( 4027.98, 76.70, 10503.74 ) LPos=( 625.69, 75.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4049.90, 43.07, 10464.05 ) LPos=( 670.94, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4041.54, 43.02, 10479.14 ) LPos=( 653.69, 42.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( 4047.11, 45.93, 10469.09 ) LPos=( 665.19, 45.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( 4041.54, 51.65, 10479.17 ) LPos=( 653.69, 50.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( 4037.73, 60.25, 10486.08 ) LPos=( 645.81, 59.46, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4029.37, 48.71, 10501.14 ) LPos=( 628.56, 47.96, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4042.93, 17.91, 10476.55 ) LPos=( 656.56, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4045.72, 17.92, 10471.52 ) LPos=( 662.31, 17.08, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( 4045.72, 29.42, 10471.56 ) LPos=( 662.31, 28.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4049.90, 26.57, 10464.00 ) LPos=( 670.94, 25.71, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4051.29, 23.70, 10461.48 ) LPos=( 673.81, 22.83, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4036.33, -10.13, 10488.39 ) LPos=( 642.94, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( 4036.33, -13.00, 10488.38 ) LPos=( 642.94, -13.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( 4034.94, 7.11, 10490.96 ) LPos=( 640.06, 6.33, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4034.94, 1.36, 10490.94 ) LPos=( 640.06, 0.58, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( 4033.55, -10.14, 10493.42 ) LPos=( 637.19, -10.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( 4027.98, -7.30, 10503.49 ) LPos=( 625.69, -8.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4044.33, -32.34, 10473.89 ) LPos=( 659.44, -33.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( 4044.33, -23.71, 10473.92 ) LPos=( 659.44, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4045.72, -40.95, 10471.35 ) LPos=( 662.31, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( 4051.29, -35.18, 10461.31 ) LPos=( 673.81, -36.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( 4036.33, -23.75, 10488.35 ) LPos=( 642.94, -24.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4029.37, -29.54, 10500.91 ) LPos=( 628.56, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( 4037.73, -29.50, 10485.82 ) LPos=( 645.81, -30.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4029.37, -41.04, 10500.88 ) LPos=( 628.56, -41.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4047.11, -51.70, 10468.80 ) LPos=( 665.19, -52.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4037.73, -57.50, 10485.74 ) LPos=( 645.81, -58.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( 4037.73, -69.00, 10485.70 ) LPos=( 645.81, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( 4027.98, -69.05, 10503.31 ) LPos=( 625.69, -69.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4042.94, -91.22, 10476.23 ) LPos=( 656.56, -92.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( 4047.11, -88.32, 10468.70 ) LPos=( 665.19, -89.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( 4049.90, -79.68, 10463.69 ) LPos=( 670.94, -80.54, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4027.98, -85.55, 10503.26 ) LPos=( 625.69, -86.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4033.55, -94.14, 10493.17 ) LPos=( 637.19, -94.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4032.16, -97.03, 10495.68 ) LPos=( 634.31, -97.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4048.51, -124.94, 10466.07 ) LPos=( 668.06, -125.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( 4051.29, -116.30, 10461.07 ) LPos=( 673.81, -117.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4042.94, -113.47, 10476.17 ) LPos=( 656.56, -114.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( 4045.72, -104.83, 10471.16 ) LPos=( 662.31, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4036.34, -104.88, 10488.11 ) LPos=( 642.94, -105.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( 4042.94, -144.34, 10476.08 ) LPos=( 656.56, -145.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( 4051.29, -150.05, 10460.97 ) LPos=( 673.81, -150.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( 4048.51, -180.94, 10465.91 ) LPos=( 668.06, -181.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( 4051.30, -178.05, 10460.89 ) LPos=( 673.81, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( 4048.51, -178.06, 10465.92 ) LPos=( 668.06, -178.92, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( 4037.73, -172.37, 10485.40 ) LPos=( 645.81, -173.17, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( 4034.95, -166.64, 10490.45 ) LPos=( 640.06, -167.42, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,14 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( 4051.30, -188.80, 10460.86 ) LPos=( 673.81, -189.67, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( 4029.38, -197.54, 10500.42 ) LPos=( 628.56, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4030.77, -197.53, 10497.90 ) LPos=( 631.44, -198.29, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( 4036.34, -203.25, 10487.82 ) LPos=( 642.94, -204.04, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 L-A PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4036.34, -209.00, 10487.81 ) LPos=( 642.94, -209.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( 4032.38, -249.96, 10494.85 ) LPos=( 634.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( 4035.28, -249.95, 10489.60 ) LPos=( 640.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( 4038.19, -249.93, 10484.35 ) LPos=( 646.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( 4049.81, -249.87, 10463.36 ) LPos=( 670.75, -250.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( 4038.19, -255.93, 10484.33 ) LPos=( 646.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( 4044.00, -255.90, 10473.84 ) LPos=( 658.75, -256.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( 4029.47, -275.98, 10500.02 ) LPos=( 628.75, -276.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( 4032.38, -281.96, 10494.76 ) LPos=( 634.75, -282.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( 4035.28, -293.95, 10489.47 ) LPos=( 640.75, -294.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( 4038.19, -317.93, 10484.15 ) LPos=( 646.75, -318.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( 4032.38, -367.96, 10494.50 ) LPos=( 634.75, -368.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( 4038.19, -387.93, 10483.95 ) LPos=( 646.75, -388.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( 4046.91, -411.88, 10468.13 ) LPos=( 664.75, -412.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( 4044.01, -417.90, 10473.36 ) LPos=( 658.75, -418.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:208,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( 4046.91, -429.88, 10468.08 ) LPos=( 664.75, -430.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:209,00 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( 4049.82, -455.87, 10462.75 ) LPos=( 670.75, -456.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:209,02 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( 4038.20, -567.93, 10483.42 ) LPos=( 646.75, -568.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 L-A PD[Mod,NInMod]:209,02 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( 4041.11, -591.91, 10478.10 ) LPos=( 652.75, -592.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,00 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.78, 644.98, 10494.19 ) LPos=( -640.75, 644.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4039.68, 619.00, 10488.86 ) LPos=( -646.75, 618.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4042.59, 589.01, 10483.52 ) LPos=( -652.75, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4042.59, 557.01, 10483.43 ) LPos=( -652.75, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4030.96, 520.95, 10504.32 ) LPos=( -628.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4048.40, 507.04, 10472.79 ) LPos=( -664.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4042.59, 507.01, 10483.28 ) LPos=( -652.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4033.86, 506.97, 10499.03 ) LPos=( -634.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4042.59, 501.01, 10483.27 ) LPos=( -652.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.77, 500.98, 10493.76 ) LPos=( -640.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4051.31, 471.06, 10467.43 ) LPos=( -670.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4033.86, 450.97, 10498.86 ) LPos=( -634.75, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.77, 420.98, 10493.53 ) LPos=( -640.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4030.95, 420.95, 10504.03 ) LPos=( -628.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4051.31, 353.06, 10467.09 ) LPos=( -670.75, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4051.30, 339.06, 10467.05 ) LPos=( -670.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4045.49, 339.03, 10477.54 ) LPos=( -658.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4030.95, 338.95, 10503.78 ) LPos=( -628.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4048.40, 333.04, 10472.28 ) LPos=( -664.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4048.40, 327.04, 10472.26 ) LPos=( -664.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4039.67, 327.00, 10488.00 ) LPos=( -646.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4048.40, 315.04, 10472.22 ) LPos=( -664.75, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4051.30, 303.06, 10466.94 ) LPos=( -670.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4039.67, 277.00, 10487.86 ) LPos=( -646.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4039.67, 265.00, 10487.82 ) LPos=( -646.75, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4048.39, 247.04, 10472.02 ) LPos=( -664.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4039.67, 247.00, 10487.77 ) LPos=( -646.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4037.82, 212.80, 10491.00 ) LPos=( -642.94, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4039.22, 224.31, 10488.52 ) LPos=( -645.81, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4044.43, 209.96, 10479.08 ) LPos=( -656.56, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4052.79, 221.50, 10464.02 ) LPos=( -673.81, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4052.79, 210.00, 10463.99 ) LPos=( -673.81, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4039.22, 196.31, 10488.44 ) LPos=( -645.81, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4039.22, 202.06, 10488.46 ) LPos=( -645.81, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4037.82, 187.68, 10490.93 ) LPos=( -642.94, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4037.82, 199.18, 10490.96 ) LPos=( -642.94, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4048.60, 193.48, 10471.48 ) LPos=( -665.19, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -4050.00, 184.87, 10468.94 ) LPos=( -668.06, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4052.78, 182.01, 10463.91 ) LPos=( -673.81, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4029.46, 159.63, 10505.94 ) LPos=( -625.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4035.03, 162.54, 10495.89 ) LPos=( -637.19, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4033.64, 168.28, 10498.42 ) LPos=( -634.31, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4030.86, 171.14, 10503.46 ) LPos=( -628.56, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4029.46, 174.01, 10505.98 ) LPos=( -625.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4043.03, 171.20, 10481.48 ) LPos=( -653.69, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4043.03, 168.33, 10481.47 ) LPos=( -653.69, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4043.03, 159.70, 10481.44 ) LPos=( -653.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4043.03, 156.83, 10481.44 ) LPos=( -653.69, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4043.03, 153.95, 10481.43 ) LPos=( -653.69, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.42, 165.46, 10478.95 ) LPos=( -656.56, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4044.42, 156.84, 10478.92 ) LPos=( -656.56, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4045.82, 162.59, 10476.42 ) LPos=( -659.44, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4048.60, 165.48, 10471.40 ) LPos=( -665.19, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4050.00, 153.99, 10468.85 ) LPos=( -668.06, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4051.39, 156.87, 10466.35 ) LPos=( -670.94, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4035.03, 146.04, 10495.84 ) LPos=( -637.19, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4045.82, 146.09, 10476.38 ) LPos=( -659.44, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4051.39, 140.37, 10466.30 ) LPos=( -670.94, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.82, 140.34, 10476.36 ) LPos=( -659.44, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4044.42, 140.34, 10478.87 ) LPos=( -656.56, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4045.82, 134.59, 10476.34 ) LPos=( -659.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4044.42, 134.59, 10478.86 ) LPos=( -656.56, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4043.03, 134.58, 10481.37 ) LPos=( -653.69, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4044.42, 131.71, 10478.85 ) LPos=( -656.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4043.03, 131.70, 10481.36 ) LPos=( -653.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4051.39, 128.87, 10466.27 ) LPos=( -670.94, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4044.42, 128.84, 10478.84 ) LPos=( -656.56, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4052.78, 126.01, 10463.74 ) LPos=( -673.81, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4035.03, 100.79, 10495.70 ) LPos=( -637.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.43, 100.79, 10493.19 ) LPos=( -640.06, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4037.82, 100.80, 10490.68 ) LPos=( -642.94, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4036.43, 106.54, 10493.21 ) LPos=( -640.06, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4039.21, 106.56, 10488.18 ) LPos=( -645.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4029.46, 109.38, 10505.79 ) LPos=( -625.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4035.03, 112.29, 10495.74 ) LPos=( -637.19, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4043.03, 112.33, 10481.31 ) LPos=( -653.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4043.03, 109.45, 10481.30 ) LPos=( -653.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4043.03, 103.70, 10481.28 ) LPos=( -653.69, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4043.03, 97.95, 10481.26 ) LPos=( -653.69, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4044.42, 115.21, 10478.80 ) LPos=( -656.56, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.42, 109.46, 10478.78 ) LPos=( -656.56, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4045.82, 115.22, 10476.28 ) LPos=( -659.44, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4045.82, 97.97, 10476.23 ) LPos=( -659.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4047.21, 106.60, 10473.74 ) LPos=( -662.31, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4048.60, 100.86, 10471.21 ) LPos=( -665.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4052.78, 118.13, 10463.72 ) LPos=( -673.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4052.78, 115.26, 10463.71 ) LPos=( -673.81, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4052.78, 112.38, 10463.70 ) LPos=( -673.81, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4039.21, 69.93, 10488.07 ) LPos=( -645.81, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4039.21, 72.81, 10488.08 ) LPos=( -645.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4030.85, 90.01, 10503.22 ) LPos=( -628.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4029.46, 72.76, 10505.68 ) LPos=( -625.69, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4029.46, 90.01, 10505.73 ) LPos=( -625.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4051.39, 90.12, 10466.15 ) LPos=( -670.94, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4052.78, 78.63, 10463.60 ) LPos=( -673.81, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4051.39, 78.62, 10466.12 ) LPos=( -670.94, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4049.99, 78.62, 10468.63 ) LPos=( -668.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4043.03, 78.58, 10481.21 ) LPos=( -653.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4049.99, 69.99, 10468.61 ) LPos=( -668.06, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4047.21, 69.98, 10473.64 ) LPos=( -662.31, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4037.82, 53.43, 10490.54 ) LPos=( -642.94, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4033.64, 62.03, 10498.11 ) LPos=( -634.31, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, 47.72, 10476.09 ) LPos=( -659.44, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4045.81, 44.84, 10476.08 ) LPos=( -659.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4047.21, 59.23, 10473.61 ) LPos=( -662.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4047.21, 56.35, 10473.60 ) LPos=( -662.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4049.99, 62.12, 10468.58 ) LPos=( -668.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4049.99, 53.49, 10468.56 ) LPos=( -668.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4052.78, 59.26, 10463.55 ) LPos=( -673.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4052.78, 53.51, 10463.53 ) LPos=( -673.81, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4039.21, 19.68, 10487.92 ) LPos=( -645.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -4036.42, 22.54, 10492.96 ) LPos=( -640.06, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4035.03, 13.91, 10495.45 ) LPos=( -637.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4035.03, 19.66, 10495.47 ) LPos=( -637.19, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4033.64, 13.90, 10497.96 ) LPos=( -634.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4033.64, 16.78, 10497.97 ) LPos=( -634.31, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4033.64, 19.65, 10497.98 ) LPos=( -634.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4032.24, 13.90, 10500.48 ) LPos=( -631.44, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4032.24, 22.52, 10500.50 ) LPos=( -631.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4030.85, 31.14, 10503.05 ) LPos=( -628.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4029.46, 16.76, 10505.52 ) LPos=( -625.69, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4029.46, 31.13, 10505.56 ) LPos=( -625.69, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4043.03, 34.08, 10481.08 ) LPos=( -653.69, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4048.60, 22.61, 10470.98 ) LPos=( -665.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4047.21, 22.60, 10473.50 ) LPos=( -662.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4044.42, 22.59, 10478.53 ) LPos=( -656.56, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4047.21, 19.73, 10473.49 ) LPos=( -662.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4045.81, 16.84, 10476.00 ) LPos=( -659.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4030.85, -8.36, 10502.93 ) LPos=( -628.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4030.85, -5.48, 10502.94 ) LPos=( -628.56, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4039.21, -5.44, 10487.85 ) LPos=( -645.81, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4030.85, -2.61, 10502.95 ) LPos=( -628.56, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.42, 0.29, 10492.90 ) LPos=( -640.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4037.82, 0.30, 10490.38 ) LPos=( -642.94, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4033.64, 3.15, 10497.93 ) LPos=( -634.31, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4029.46, 6.01, 10505.49 ) LPos=( -625.69, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4044.42, -8.29, 10478.44 ) LPos=( -656.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4044.42, -14.04, 10478.42 ) LPos=( -656.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4049.99, 6.12, 10468.42 ) LPos=( -668.06, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4036.42, -42.08, 10492.77 ) LPos=( -640.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4036.42, -24.83, 10492.82 ) LPos=( -640.06, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4035.03, -42.09, 10495.29 ) LPos=( -637.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4035.03, -21.96, 10495.34 ) LPos=( -637.19, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4032.24, -39.23, 10500.32 ) LPos=( -631.44, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4032.24, -27.73, 10500.36 ) LPos=( -631.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4030.85, -27.73, 10502.87 ) LPos=( -628.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4049.99, -21.88, 10468.34 ) LPos=( -668.06, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4051.38, -24.75, 10465.81 ) LPos=( -670.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4047.20, -27.65, 10473.35 ) LPos=( -662.31, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4045.81, -30.53, 10475.86 ) LPos=( -659.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4052.78, -33.37, 10463.27 ) LPos=( -673.81, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4044.42, -36.29, 10478.35 ) LPos=( -656.56, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4048.60, -42.02, 10470.79 ) LPos=( -665.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4047.20, -42.02, 10473.31 ) LPos=( -662.31, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4037.81, -70.07, 10490.17 ) LPos=( -642.94, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4035.03, -58.59, 10495.24 ) LPos=( -637.19, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4035.03, -55.71, 10495.25 ) LPos=( -637.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4033.64, -49.97, 10497.78 ) LPos=( -634.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4039.21, -49.94, 10487.72 ) LPos=( -645.81, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.42, -58.54, 10478.29 ) LPos=( -656.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4047.20, -55.65, 10473.27 ) LPos=( -662.31, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4049.99, -52.76, 10468.25 ) LPos=( -668.06, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4052.78, -69.99, 10463.17 ) LPos=( -673.81, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4036.42, -92.33, 10492.62 ) LPos=( -640.06, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4035.03, -98.09, 10495.12 ) LPos=( -637.19, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4035.03, -95.21, 10495.13 ) LPos=( -637.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4035.03, -92.34, 10495.14 ) LPos=( -637.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4035.03, -77.96, 10495.18 ) LPos=( -637.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4033.63, -77.97, 10497.70 ) LPos=( -634.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4048.60, -80.77, 10470.68 ) LPos=( -665.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, -83.66, 10475.70 ) LPos=( -659.44, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4052.78, -89.37, 10463.11 ) LPos=( -673.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4052.78, -92.24, 10463.10 ) LPos=( -673.81, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4047.20, -92.27, 10473.16 ) LPos=( -662.31, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4044.42, -92.29, 10478.19 ) LPos=( -656.56, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4045.81, -95.16, 10475.67 ) LPos=( -659.44, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4043.02, -98.05, 10480.69 ) LPos=( -653.69, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4032.24, -126.10, 10500.07 ) LPos=( -631.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.42, -123.20, 10492.53 ) LPos=( -640.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4035.03, -120.34, 10495.06 ) LPos=( -637.19, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4037.81, -120.32, 10490.03 ) LPos=( -642.94, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4035.03, -117.46, 10495.06 ) LPos=( -637.19, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4033.63, -114.59, 10497.59 ) LPos=( -634.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4035.03, -111.71, 10495.08 ) LPos=( -637.19, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4029.45, -108.87, 10505.15 ) LPos=( -625.69, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4043.02, -108.80, 10480.66 ) LPos=( -653.69, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4047.20, -108.77, 10473.11 ) LPos=( -662.31, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4037.81, -154.07, 10489.93 ) LPos=( -642.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4035.03, -139.71, 10495.00 ) LPos=( -637.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4033.63, -148.34, 10497.49 ) LPos=( -634.31, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4033.63, -139.72, 10497.51 ) LPos=( -634.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4033.63, -136.84, 10497.52 ) LPos=( -634.31, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4033.63, -133.97, 10497.53 ) LPos=( -634.31, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4032.24, -142.60, 10500.02 ) LPos=( -631.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4032.24, -139.73, 10500.03 ) LPos=( -631.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4032.24, -136.85, 10500.04 ) LPos=( -631.44, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4032.24, -133.98, 10500.05 ) LPos=( -631.44, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4030.85, -154.11, 10502.50 ) LPos=( -628.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4030.85, -136.86, 10502.55 ) LPos=( -628.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4029.45, -154.12, 10505.02 ) LPos=( -625.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, -139.66, 10475.54 ) LPos=( -659.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4043.02, -145.42, 10480.55 ) LPos=( -653.69, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.42, -179.20, 10492.37 ) LPos=( -640.06, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -4033.63, -176.34, 10497.41 ) LPos=( -634.31, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4029.45, -164.87, 10504.98 ) LPos=( -625.69, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4037.81, -161.95, 10489.90 ) LPos=( -642.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4039.20, -161.94, 10487.39 ) LPos=( -645.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4044.41, -170.54, 10477.96 ) LPos=( -656.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4045.81, -176.28, 10475.43 ) LPos=( -659.44, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4045.81, -179.16, 10475.42 ) LPos=( -659.44, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4048.59, -179.14, 10470.39 ) LPos=( -665.19, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4049.99, -161.88, 10467.93 ) LPos=( -668.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4049.99, -182.01, 10467.87 ) LPos=( -668.06, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4052.77, -179.12, 10462.85 ) LPos=( -673.81, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4052.77, -181.99, 10462.84 ) LPos=( -673.81, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4037.81, -210.07, 10489.76 ) LPos=( -642.94, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4033.63, -198.59, 10497.34 ) LPos=( -634.31, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4032.24, -198.60, 10499.86 ) LPos=( -631.44, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4030.84, -192.86, 10502.39 ) LPos=( -628.56, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4047.20, -189.90, 10472.87 ) LPos=( -662.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4052.77, -192.74, 10462.81 ) LPos=( -673.81, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4051.38, -192.75, 10465.32 ) LPos=( -670.94, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4047.20, -195.65, 10472.86 ) LPos=( -662.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4051.29, -220.94, 10465.40 ) LPos=( -670.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4036.75, -227.02, 10491.63 ) LPos=( -640.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4030.93, -233.05, 10502.11 ) LPos=( -628.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -4033.84, -245.03, 10496.82 ) LPos=( -634.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4039.66, -251.00, 10486.31 ) LPos=( -646.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4036.75, -251.02, 10491.56 ) LPos=( -640.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4033.84, -251.03, 10496.80 ) LPos=( -634.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4042.56, -256.98, 10481.04 ) LPos=( -652.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4039.66, -257.00, 10486.29 ) LPos=( -646.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4036.75, -257.01, 10491.54 ) LPos=( -640.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4033.84, -257.03, 10496.79 ) LPos=( -634.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4030.93, -257.05, 10502.04 ) LPos=( -628.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -4036.75, -263.01, 10491.52 ) LPos=( -640.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4051.29, -276.94, 10465.24 ) LPos=( -670.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4039.66, -277.00, 10486.23 ) LPos=( -646.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4045.47, -282.97, 10475.72 ) LPos=( -658.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4033.84, -295.03, 10496.68 ) LPos=( -634.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4042.56, -312.98, 10480.88 ) LPos=( -652.75, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4033.84, -333.03, 10496.56 ) LPos=( -634.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4030.93, -333.05, 10501.81 ) LPos=( -628.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4030.93, -345.05, 10501.78 ) LPos=( -628.75, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4039.65, -351.00, 10486.01 ) LPos=( -646.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4030.93, -357.05, 10501.74 ) LPos=( -628.75, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4039.65, -369.00, 10485.96 ) LPos=( -646.75, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4048.37, -406.95, 10470.10 ) LPos=( -664.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4030.93, -481.04, 10501.38 ) LPos=( -628.75, -481.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4042.56, -524.98, 10480.26 ) LPos=( -652.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4042.56, -542.98, 10480.20 ) LPos=( -652.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4039.65, -543.00, 10485.45 ) LPos=( -646.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:227,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4033.83, -593.03, 10495.80 ) LPos=( -634.75, -593.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4003.58, 550.81, 10553.83 ) LPos=( -572.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4023.93, 532.91, 10517.04 ) LPos=( -614.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4023.93, 500.91, 10516.94 ) LPos=( -614.25, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4023.93, 494.91, 10516.93 ) LPos=( -614.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4023.93, 488.91, 10516.91 ) LPos=( -614.25, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4023.93, 482.91, 10516.89 ) LPos=( -614.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4015.21, 482.87, 10532.64 ) LPos=( -596.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4021.02, 476.90, 10522.12 ) LPos=( -608.25, 476.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4003.57, 470.81, 10553.59 ) LPos=( -572.25, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4018.11, 464.88, 10527.33 ) LPos=( -602.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4015.21, 464.87, 10532.58 ) LPos=( -596.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4015.20, 450.87, 10532.54 ) LPos=( -596.25, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4012.30, 438.85, 10537.76 ) LPos=( -590.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4006.48, 432.82, 10548.23 ) LPos=( -578.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4012.30, 426.85, 10537.72 ) LPos=( -590.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4009.39, 426.84, 10542.97 ) LPos=( -584.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4018.11, 420.88, 10527.21 ) LPos=( -602.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4003.57, 420.81, 10553.45 ) LPos=( -572.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4006.48, 414.82, 10548.18 ) LPos=( -578.25, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4012.30, 408.85, 10537.67 ) LPos=( -590.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4006.48, 408.82, 10548.16 ) LPos=( -578.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4012.30, 394.85, 10537.63 ) LPos=( -590.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -4015.20, 382.87, 10532.34 ) LPos=( -596.25, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4003.57, 376.81, 10553.32 ) LPos=( -572.25, 376.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4015.20, 364.87, 10532.29 ) LPos=( -596.25, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4006.48, 338.82, 10547.96 ) LPos=( -578.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4006.48, 332.82, 10547.94 ) LPos=( -578.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.39, 326.84, 10542.67 ) LPos=( -584.25, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4006.48, 320.82, 10547.91 ) LPos=( -578.25, 320.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4023.92, 302.91, 10516.36 ) LPos=( -614.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4006.48, 302.82, 10547.85 ) LPos=( -578.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4012.29, 296.85, 10537.34 ) LPos=( -590.25, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4018.11, 276.88, 10526.78 ) LPos=( -602.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4003.57, 276.81, 10553.02 ) LPos=( -572.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4021.01, 270.90, 10521.52 ) LPos=( -608.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4018.11, 270.88, 10526.77 ) LPos=( -602.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4021.01, 264.90, 10521.50 ) LPos=( -608.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4003.57, 264.81, 10552.99 ) LPos=( -572.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4003.57, 258.81, 10552.97 ) LPos=( -572.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4006.26, 218.38, 10547.99 ) LPos=( -577.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -4007.66, 218.39, 10545.47 ) LPos=( -580.69, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4004.87, 224.13, 10550.52 ) LPos=( -574.94, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4007.66, 227.02, 10545.50 ) LPos=( -580.69, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4007.66, 229.89, 10545.51 ) LPos=( -580.69, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4022.62, 229.97, 10518.50 ) LPos=( -611.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4010.44, 184.66, 10540.34 ) LPos=( -586.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4010.44, 190.41, 10540.36 ) LPos=( -586.44, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4010.44, 199.03, 10540.39 ) LPos=( -586.44, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.05, 196.15, 10542.89 ) LPos=( -583.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4025.40, 201.99, 10513.39 ) LPos=( -617.31, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -4015.65, 184.68, 10530.94 ) LPos=( -597.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4007.65, 153.77, 10545.28 ) LPos=( -580.69, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4007.65, 168.14, 10545.33 ) LPos=( -580.69, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4009.05, 168.15, 10542.81 ) LPos=( -583.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.08, 173.86, 10555.40 ) LPos=( -569.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4003.48, 173.87, 10552.89 ) LPos=( -572.06, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4006.26, 173.88, 10547.86 ) LPos=( -577.81, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4007.65, 173.89, 10545.34 ) LPos=( -580.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4018.44, 159.57, 10525.84 ) LPos=( -602.94, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4025.40, 171.11, 10513.30 ) LPos=( -617.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4010.44, 131.53, 10540.19 ) LPos=( -586.44, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4003.47, 140.12, 10552.79 ) LPos=( -572.06, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4002.08, 134.36, 10555.29 ) LPos=( -569.19, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4017.04, 145.94, 10528.31 ) LPos=( -600.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4022.62, 140.22, 10518.24 ) LPos=( -611.56, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4018.44, 140.20, 10525.78 ) LPos=( -602.94, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4019.83, 134.46, 10523.25 ) LPos=( -605.81, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4024.01, 131.60, 10515.70 ) LPos=( -614.44, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4021.22, 131.59, 10520.73 ) LPos=( -608.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4019.83, 131.58, 10523.24 ) LPos=( -605.81, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4021.22, 128.71, 10520.72 ) LPos=( -608.69, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4019.83, 128.71, 10523.23 ) LPos=( -605.81, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4021.22, 125.84, 10520.71 ) LPos=( -608.69, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -4018.44, 125.82, 10525.74 ) LPos=( -602.94, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4004.87, 103.50, 10550.17 ) LPos=( -574.94, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4009.05, 106.40, 10542.63 ) LPos=( -583.56, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4007.65, 109.27, 10545.15 ) LPos=( -580.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -4009.05, 115.02, 10542.65 ) LPos=( -583.56, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4006.26, 117.89, 10547.69 ) LPos=( -577.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4015.65, 117.93, 10530.74 ) LPos=( -597.19, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4022.61, 103.60, 10518.13 ) LPos=( -611.56, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4025.40, 109.36, 10513.12 ) LPos=( -617.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4011.83, 81.29, 10537.53 ) LPos=( -589.31, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4010.44, 78.41, 10540.03 ) LPos=( -586.44, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4009.05, 75.53, 10542.54 ) LPos=( -583.56, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.05, 84.15, 10542.56 ) LPos=( -583.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4007.65, 78.39, 10545.06 ) LPos=( -580.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.08, 69.74, 10555.10 ) LPos=( -569.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -4002.08, 84.11, 10555.14 ) LPos=( -569.19, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4024.01, 89.98, 10515.57 ) LPos=( -614.44, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4019.83, 89.96, 10523.12 ) LPos=( -605.81, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4025.40, 87.11, 10513.05 ) LPos=( -617.31, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4022.61, 87.10, 10518.08 ) LPos=( -611.56, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4021.22, 81.34, 10520.58 ) LPos=( -608.69, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4015.65, 75.56, 10530.62 ) LPos=( -597.19, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4017.04, 72.69, 10528.10 ) LPos=( -600.06, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4021.22, 69.84, 10520.54 ) LPos=( -608.69, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4015.65, 69.81, 10530.60 ) LPos=( -597.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4006.26, 41.76, 10547.47 ) LPos=( -577.81, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4009.04, 41.78, 10542.44 ) LPos=( -583.56, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4002.08, 47.49, 10555.03 ) LPos=( -569.19, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4003.47, 47.50, 10552.52 ) LPos=( -572.06, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4004.86, 47.50, 10550.00 ) LPos=( -574.94, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4006.26, 50.39, 10547.49 ) LPos=( -577.81, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4003.47, 53.25, 10552.53 ) LPos=( -572.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4004.86, 53.25, 10550.02 ) LPos=( -574.94, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4007.65, 53.27, 10544.99 ) LPos=( -580.69, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4006.26, 59.01, 10547.52 ) LPos=( -577.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.08, 61.86, 10555.07 ) LPos=( -569.19, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4004.86, 61.88, 10550.04 ) LPos=( -574.94, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4006.26, 61.89, 10547.53 ) LPos=( -577.81, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4015.65, 61.93, 10530.58 ) LPos=( -597.19, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4015.65, 53.31, 10530.55 ) LPos=( -597.19, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4015.65, 47.56, 10530.54 ) LPos=( -597.19, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4019.83, 47.58, 10522.99 ) LPos=( -605.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4025.40, 61.99, 10512.98 ) LPos=( -617.31, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4010.44, 16.66, 10539.85 ) LPos=( -586.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4010.44, 25.28, 10539.88 ) LPos=( -586.44, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4006.26, 16.64, 10547.40 ) LPos=( -577.81, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.26, 22.39, 10547.41 ) LPos=( -577.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4006.26, 25.26, 10547.42 ) LPos=( -577.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4006.26, 28.14, 10547.43 ) LPos=( -577.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -4006.26, 33.89, 10547.45 ) LPos=( -577.81, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4004.86, 33.88, 10549.96 ) LPos=( -574.94, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4003.47, 16.62, 10552.42 ) LPos=( -572.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4002.08, 22.36, 10554.96 ) LPos=( -569.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4002.08, 30.99, 10554.98 ) LPos=( -569.19, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4019.83, 33.96, 10522.95 ) LPos=( -605.81, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4019.83, 28.21, 10522.94 ) LPos=( -605.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -4017.04, 28.19, 10527.97 ) LPos=( -600.06, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4015.65, 28.19, 10530.48 ) LPos=( -597.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4025.40, 25.36, 10512.87 ) LPos=( -617.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4019.83, 22.46, 10522.92 ) LPos=( -605.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4004.86, -14.25, 10549.82 ) LPos=( -574.94, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4010.44, -11.34, 10539.77 ) LPos=( -586.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -4004.86, -8.50, 10549.84 ) LPos=( -574.94, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4011.83, -8.46, 10537.26 ) LPos=( -589.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4004.86, -5.62, 10549.84 ) LPos=( -574.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4003.47, -2.75, 10552.37 ) LPos=( -572.06, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -4007.65, 0.14, 10544.83 ) LPos=( -580.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4011.83, 0.17, 10537.29 ) LPos=( -589.31, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -4003.47, 5.87, 10552.39 ) LPos=( -572.06, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4010.44, 5.91, 10539.82 ) LPos=( -586.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4015.65, -5.56, 10530.38 ) LPos=( -597.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -4017.04, -8.43, 10527.86 ) LPos=( -600.06, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4019.83, 3.08, 10522.86 ) LPos=( -605.81, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -4019.83, -2.67, 10522.85 ) LPos=( -605.81, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4021.22, 3.09, 10520.35 ) LPos=( -608.69, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4021.22, -2.66, 10520.33 ) LPos=( -608.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4022.61, 3.10, 10517.83 ) LPos=( -611.56, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4022.61, -14.15, 10517.78 ) LPos=( -611.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -4024.01, 3.10, 10515.32 ) LPos=( -614.44, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4024.01, -2.65, 10515.30 ) LPos=( -614.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4024.00, -5.52, 10515.29 ) LPos=( -614.44, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4025.40, 0.24, 10512.80 ) LPos=( -617.31, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -4009.04, -27.85, 10542.24 ) LPos=( -583.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4007.65, -36.48, 10544.72 ) LPos=( -580.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4007.65, -27.86, 10544.75 ) LPos=( -580.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4007.65, -22.11, 10544.77 ) LPos=( -580.69, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4006.26, -42.24, 10547.22 ) LPos=( -577.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4006.26, -30.74, 10547.26 ) LPos=( -577.81, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4004.86, -42.25, 10549.74 ) LPos=( -574.94, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4003.47, -42.25, 10552.25 ) LPos=( -572.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -4003.47, -36.50, 10552.27 ) LPos=( -572.06, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -4017.04, -24.93, 10527.81 ) LPos=( -600.06, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4025.40, -30.64, 10512.70 ) LPos=( -617.31, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4017.04, -30.68, 10527.79 ) LPos=( -600.06, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4022.61, -33.53, 10517.73 ) LPos=( -611.56, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4022.61, -36.40, 10517.72 ) LPos=( -611.56, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -4022.61, -39.28, 10517.71 ) LPos=( -611.56, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4019.82, -39.29, 10522.74 ) LPos=( -605.81, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4017.04, -39.31, 10527.77 ) LPos=( -600.06, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4017.04, -42.18, 10527.76 ) LPos=( -600.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4015.64, -42.19, 10530.27 ) LPos=( -597.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4003.47, -58.75, 10552.20 ) LPos=( -572.06, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4002.07, -55.89, 10554.73 ) LPos=( -569.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4004.86, -55.87, 10549.70 ) LPos=( -574.94, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4007.65, -52.98, 10544.68 ) LPos=( -580.69, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -4015.64, -64.44, 10530.21 ) LPos=( -597.19, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4017.04, -50.06, 10527.74 ) LPos=( -600.06, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -4019.82, -52.92, 10522.70 ) LPos=( -605.81, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4021.22, -64.41, 10520.15 ) LPos=( -608.69, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -4022.61, -50.03, 10517.68 ) LPos=( -611.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4024.00, -61.52, 10515.13 ) LPos=( -614.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -4024.00, -67.27, 10515.11 ) LPos=( -614.44, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4025.40, -50.01, 10512.65 ) LPos=( -617.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -4011.83, -98.21, 10537.00 ) LPos=( -589.31, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4011.83, -95.33, 10537.01 ) LPos=( -589.31, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -4009.04, -86.72, 10542.06 ) LPos=( -583.56, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -4007.65, -92.48, 10544.56 ) LPos=( -580.69, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -4006.25, -98.24, 10547.06 ) LPos=( -577.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4006.25, -92.49, 10547.08 ) LPos=( -577.81, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.25, -89.61, 10547.08 ) LPos=( -577.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4004.86, -95.37, 10549.58 ) LPos=( -574.94, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4022.61, -78.03, 10517.60 ) LPos=( -611.56, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4025.40, -80.89, 10512.56 ) LPos=( -617.31, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -4022.61, -80.90, 10517.59 ) LPos=( -611.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -4019.82, -80.92, 10522.62 ) LPos=( -605.81, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -4024.00, -83.77, 10515.06 ) LPos=( -614.44, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -4024.00, -89.52, 10515.05 ) LPos=( -614.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4015.64, -92.44, 10530.13 ) LPos=( -597.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4022.61, -98.15, 10517.54 ) LPos=( -611.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4006.25, -123.36, 10546.98 ) LPos=( -577.81, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.25, -114.74, 10547.01 ) LPos=( -577.81, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4002.07, -109.01, 10554.57 ) LPos=( -569.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -4006.25, -108.99, 10547.03 ) LPos=( -577.81, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4002.07, -106.14, 10554.58 ) LPos=( -569.19, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4004.86, -106.12, 10549.55 ) LPos=( -574.94, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -4011.83, -106.08, 10536.98 ) LPos=( -589.31, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4015.64, -108.94, 10530.08 ) LPos=( -597.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -4022.61, -120.40, 10517.47 ) LPos=( -611.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -4022.61, -126.15, 10517.45 ) LPos=( -611.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4025.39, -117.51, 10512.45 ) LPos=( -617.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4025.39, -123.26, 10512.43 ) LPos=( -617.31, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -4025.39, -139.76, 10512.38 ) LPos=( -617.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -4018.43, -142.67, 10524.95 ) LPos=( -602.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4021.21, -145.53, 10519.91 ) LPos=( -608.69, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -4019.82, -151.29, 10522.41 ) LPos=( -605.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -4025.39, -154.14, 10512.34 ) LPos=( -617.31, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4007.64, -182.23, 10544.30 ) LPos=( -580.69, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -4011.82, -182.21, 10536.75 ) LPos=( -589.31, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4006.25, -179.36, 10546.82 ) LPos=( -577.81, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -4002.07, -173.64, 10554.38 ) LPos=( -569.19, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4010.43, -167.84, 10539.31 ) LPos=( -586.44, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4015.64, -173.56, 10529.89 ) LPos=( -597.19, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4017.03, -182.18, 10527.35 ) LPos=( -600.06, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -4021.21, -173.53, 10519.83 ) LPos=( -608.69, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -4022.61, -167.78, 10517.33 ) LPos=( -611.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4011.82, -204.46, 10536.69 ) LPos=( -589.31, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4006.25, -201.61, 10546.75 ) LPos=( -577.81, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -4004.86, -201.62, 10549.27 ) LPos=( -574.94, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -4002.07, -201.64, 10554.30 ) LPos=( -569.19, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4017.03, -190.06, 10527.33 ) LPos=( -600.06, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -4018.09, -221.11, 10525.32 ) LPos=( -602.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -4006.46, -221.17, 10546.31 ) LPos=( -578.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -4003.55, -227.19, 10551.55 ) LPos=( -572.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -4009.37, -245.16, 10541.00 ) LPos=( -584.25, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -4006.46, -263.17, 10546.19 ) LPos=( -578.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -4021.00, -307.10, 10519.82 ) LPos=( -608.25, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -4018.09, -319.11, 10525.03 ) LPos=( -602.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -4012.27, -319.14, 10535.53 ) LPos=( -590.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -4012.27, -333.14, 10535.49 ) LPos=( -590.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -4023.90, -369.08, 10514.39 ) LPos=( -614.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -4020.99, -389.10, 10519.58 ) LPos=( -608.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -4015.18, -389.13, 10530.08 ) LPos=( -596.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -4003.55, -401.19, 10551.03 ) LPos=( -572.25, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -4006.46, -407.17, 10545.77 ) LPos=( -578.25, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -4003.55, -407.19, 10551.02 ) LPos=( -572.25, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -4015.18, -451.13, 10529.89 ) LPos=( -596.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -4006.45, -475.17, 10545.57 ) LPos=( -578.25, -475.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -4015.18, -525.13, 10529.68 ) LPos=( -596.25, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -4023.90, -563.08, 10513.82 ) LPos=( -614.25, -563.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -4020.99, -563.10, 10519.07 ) LPos=( -608.25, -563.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:233,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -4018.08, -637.11, 10524.10 ) LPos=( -602.25, -637.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3987.83, 556.72, 10582.28 ) LPos=( -539.75, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3990.73, 544.74, 10576.99 ) LPos=( -545.75, 544.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3976.20, 538.66, 10603.22 ) LPos=( -515.75, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3979.10, 520.68, 10597.91 ) LPos=( -521.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3976.20, 506.66, 10603.12 ) LPos=( -515.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3990.73, 500.74, 10576.86 ) LPos=( -545.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3982.01, 500.69, 10592.61 ) LPos=( -527.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.92, 494.71, 10587.34 ) LPos=( -533.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3990.73, 488.74, 10576.83 ) LPos=( -545.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3987.83, 488.72, 10582.08 ) LPos=( -539.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3990.73, 482.74, 10576.81 ) LPos=( -545.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3987.83, 482.72, 10582.06 ) LPos=( -539.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3993.64, 476.75, 10571.54 ) LPos=( -551.75, 476.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3987.82, 470.72, 10582.02 ) LPos=( -539.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3984.92, 464.71, 10587.25 ) LPos=( -533.75, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.92, 438.71, 10587.18 ) LPos=( -533.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3987.82, 382.72, 10581.76 ) LPos=( -539.75, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3987.82, 370.72, 10581.73 ) LPos=( -539.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3990.73, 358.74, 10576.45 ) LPos=( -545.75, 358.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3979.10, 332.68, 10597.36 ) LPos=( -521.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3987.82, 326.72, 10581.60 ) LPos=( -539.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.91, 326.71, 10586.85 ) LPos=( -533.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3993.64, 308.76, 10571.05 ) LPos=( -551.75, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3979.10, 302.68, 10597.27 ) LPos=( -521.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3990.73, 282.74, 10576.22 ) LPos=( -545.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3987.82, 282.72, 10581.47 ) LPos=( -539.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3993.63, 276.76, 10570.96 ) LPos=( -551.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3987.82, 276.72, 10581.45 ) LPos=( -539.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3982.00, 276.69, 10591.95 ) LPos=( -527.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3976.19, 276.66, 10602.45 ) LPos=( -515.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3987.82, 270.72, 10581.44 ) LPos=( -539.75, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3984.91, 270.71, 10586.68 ) LPos=( -533.75, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3987.82, 264.72, 10581.42 ) LPos=( -539.75, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3990.73, 258.74, 10576.15 ) LPos=( -545.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3982.00, 258.69, 10591.90 ) LPos=( -527.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3979.10, 258.68, 10597.15 ) LPos=( -521.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3987.82, 252.72, 10581.38 ) LPos=( -539.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3979.10, 252.68, 10597.13 ) LPos=( -521.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3987.82, 246.72, 10581.37 ) LPos=( -539.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3982.00, 246.69, 10591.86 ) LPos=( -527.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3990.73, 240.74, 10576.10 ) LPos=( -545.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3980.28, 209.62, 10594.87 ) LPos=( -524.19, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3983.06, 215.39, 10589.86 ) LPos=( -529.94, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3983.06, 229.76, 10589.90 ) LPos=( -529.94, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3993.84, 209.69, 10570.38 ) LPos=( -552.19, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3996.63, 221.21, 10565.38 ) LPos=( -557.94, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3998.02, 218.34, 10562.86 ) LPos=( -560.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3998.02, 212.59, 10562.84 ) LPos=( -560.81, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3984.45, 190.27, 10587.27 ) LPos=( -532.81, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3976.10, 195.98, 10602.37 ) LPos=( -515.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3974.70, 187.34, 10604.86 ) LPos=( -512.69, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3995.24, 201.83, 10567.84 ) LPos=( -555.06, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3993.84, 184.57, 10570.30 ) LPos=( -552.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3993.84, 181.69, 10570.29 ) LPos=( -552.19, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3991.06, 181.68, 10575.32 ) LPos=( -546.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3974.70, 153.59, 10604.76 ) LPos=( -512.69, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3976.09, 159.35, 10602.27 ) LPos=( -515.56, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3978.88, 162.24, 10597.25 ) LPos=( -521.31, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3977.49, 165.11, 10599.77 ) LPos=( -518.44, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3984.45, 168.02, 10587.20 ) LPos=( -532.81, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3983.06, 170.89, 10589.73 ) LPos=( -529.94, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3980.27, 173.75, 10594.76 ) LPos=( -524.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3989.66, 168.05, 10577.80 ) LPos=( -543.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3991.06, 168.05, 10575.28 ) LPos=( -546.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3992.45, 170.94, 10572.78 ) LPos=( -549.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3993.84, 170.94, 10570.26 ) LPos=( -552.19, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3993.84, 153.69, 10570.21 ) LPos=( -552.19, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3996.63, 173.83, 10565.24 ) LPos=( -557.94, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3996.63, 168.08, 10565.23 ) LPos=( -557.94, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3974.70, 145.72, 10604.74 ) LPos=( -512.69, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3991.06, 137.18, 10575.19 ) LPos=( -546.44, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3988.27, 134.29, 10580.22 ) LPos=( -540.69, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3980.27, 97.62, 10594.54 ) LPos=( -524.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3976.09, 100.48, 10602.09 ) LPos=( -515.56, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3974.70, 109.09, 10604.63 ) LPos=( -512.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3976.09, 109.10, 10602.12 ) LPos=( -515.56, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3976.09, 111.98, 10602.13 ) LPos=( -515.56, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3974.70, 114.84, 10604.65 ) LPos=( -512.69, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3980.27, 114.87, 10594.59 ) LPos=( -524.19, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3974.70, 117.72, 10604.66 ) LPos=( -512.69, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3978.88, 117.74, 10597.11 ) LPos=( -521.31, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3992.45, 97.69, 10572.56 ) LPos=( -549.31, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3995.23, 103.45, 10567.55 ) LPos=( -555.06, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3998.02, 109.22, 10562.54 ) LPos=( -560.81, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3984.45, 75.40, 10586.93 ) LPos=( -532.81, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3983.06, 69.64, 10589.43 ) LPos=( -529.94, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3976.09, 81.10, 10602.04 ) LPos=( -515.56, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3976.09, 83.98, 10602.05 ) LPos=( -515.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.09, 89.73, 10602.06 ) LPos=( -515.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3974.70, 89.72, 10604.58 ) LPos=( -512.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3998.02, 84.09, 10562.46 ) LPos=( -560.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3996.63, 84.08, 10564.98 ) LPos=( -557.94, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3993.84, 81.19, 10570.00 ) LPos=( -552.19, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3991.05, 81.18, 10575.03 ) LPos=( -546.44, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3993.84, 78.32, 10569.99 ) LPos=( -552.19, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3993.84, 69.70, 10569.97 ) LPos=( -552.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3991.05, 69.68, 10575.00 ) LPos=( -546.44, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3983.06, 47.39, 10589.36 ) LPos=( -529.94, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3978.88, 58.87, 10596.94 ) LPos=( -521.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3983.06, 58.89, 10589.40 ) LPos=( -529.94, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3980.27, 61.75, 10594.44 ) LPos=( -524.19, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3988.27, 56.04, 10579.99 ) LPos=( -540.69, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3991.05, 61.81, 10574.97 ) LPos=( -546.44, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3992.45, 44.56, 10572.41 ) LPos=( -549.31, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3998.02, 61.84, 10562.40 ) LPos=( -560.81, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3998.02, 58.97, 10562.39 ) LPos=( -560.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3984.45, 28.02, 10586.79 ) LPos=( -532.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3984.45, 30.90, 10586.80 ) LPos=( -532.81, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3983.06, 13.64, 10589.26 ) LPos=( -529.94, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3983.06, 19.39, 10589.28 ) LPos=( -529.94, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3978.88, 13.62, 10596.81 ) LPos=( -521.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3978.88, 16.49, 10596.82 ) LPos=( -521.31, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3977.48, 33.73, 10599.38 ) LPos=( -518.44, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3989.66, 33.80, 10577.41 ) LPos=( -543.56, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3988.27, 33.79, 10579.92 ) LPos=( -540.69, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3996.63, 30.96, 10564.82 ) LPos=( -557.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3989.66, 30.92, 10577.40 ) LPos=( -543.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3992.45, 25.19, 10572.35 ) LPos=( -549.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3989.66, 25.17, 10577.38 ) LPos=( -543.56, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3988.27, 25.17, 10579.89 ) LPos=( -540.69, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3998.02, 22.34, 10562.28 ) LPos=( -560.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3991.05, 19.43, 10574.85 ) LPos=( -546.44, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3989.66, 19.42, 10577.36 ) LPos=( -543.56, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3998.02, 13.72, 10562.26 ) LPos=( -560.81, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3995.23, 13.70, 10567.29 ) LPos=( -555.06, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3977.48, -14.39, 10599.24 ) LPos=( -518.44, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3974.70, -11.53, 10604.28 ) LPos=( -512.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3974.70, -8.66, 10604.29 ) LPos=( -512.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3980.27, -8.63, 10594.23 ) LPos=( -524.19, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3981.66, -5.74, 10591.72 ) LPos=( -527.06, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3977.48, -2.89, 10599.28 ) LPos=( -518.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3980.27, -2.88, 10594.25 ) LPos=( -524.19, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3974.70, -0.03, 10604.31 ) LPos=( -512.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3976.09, 5.73, 10601.82 ) LPos=( -515.56, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3988.27, 0.04, 10579.82 ) LPos=( -540.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3988.26, -8.58, 10579.80 ) LPos=( -540.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3988.26, -11.46, 10579.79 ) LPos=( -540.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3993.84, -11.43, 10569.73 ) LPos=( -552.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3996.62, -14.29, 10564.69 ) LPos=( -557.94, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3983.05, -25.11, 10589.15 ) LPos=( -529.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.09, -22.27, 10601.73 ) LPos=( -515.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3974.69, -39.53, 10604.20 ) LPos=( -512.69, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3996.62, -22.16, 10564.67 ) LPos=( -557.94, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3993.84, -27.93, 10569.68 ) LPos=( -552.19, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3993.84, -30.80, 10569.67 ) LPos=( -552.19, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3996.62, -36.54, 10564.62 ) LPos=( -557.94, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3992.44, -39.44, 10572.16 ) LPos=( -549.31, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3991.05, -39.44, 10574.68 ) LPos=( -546.44, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3995.23, -42.30, 10567.12 ) LPos=( -555.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3988.26, -42.33, 10579.70 ) LPos=( -540.69, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3976.09, -67.52, 10601.60 ) LPos=( -515.56, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3974.69, -64.66, 10604.12 ) LPos=( -512.69, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3980.27, -64.63, 10594.06 ) LPos=( -524.19, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3981.66, -64.62, 10591.55 ) LPos=( -527.06, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3978.87, -61.76, 10596.59 ) LPos=( -521.31, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3980.27, -61.75, 10594.07 ) LPos=( -524.19, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3978.87, -58.88, 10596.60 ) LPos=( -521.31, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3977.48, -53.14, 10599.13 ) LPos=( -518.44, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3988.26, -55.96, 10579.66 ) LPos=( -540.69, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3989.66, -50.20, 10577.16 ) LPos=( -543.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3991.05, -61.69, 10574.61 ) LPos=( -546.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3995.23, -61.67, 10567.07 ) LPos=( -555.06, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3996.62, -61.66, 10564.55 ) LPos=( -557.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3998.02, -64.53, 10562.03 ) LPos=( -560.81, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3983.05, -95.49, 10588.94 ) LPos=( -529.94, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3980.27, -95.50, 10593.97 ) LPos=( -524.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3980.27, -92.63, 10593.98 ) LPos=( -524.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3977.48, -86.89, 10599.03 ) LPos=( -518.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3998.02, -83.91, 10561.97 ) LPos=( -560.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3988.26, -86.83, 10579.57 ) LPos=( -540.69, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3988.26, -89.71, 10579.56 ) LPos=( -540.69, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3993.84, -95.43, 10569.48 ) LPos=( -552.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3981.66, -120.62, 10591.39 ) LPos=( -527.06, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3977.48, -109.14, 10598.96 ) LPos=( -518.44, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3978.87, -109.13, 10596.45 ) LPos=( -521.31, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3988.26, -120.58, 10579.47 ) LPos=( -540.69, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3991.05, -106.19, 10574.48 ) LPos=( -546.44, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3992.44, -114.81, 10571.94 ) LPos=( -549.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3993.83, -123.43, 10569.40 ) LPos=( -552.19, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3984.44, -151.48, 10586.26 ) LPos=( -532.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3984.44, -137.10, 10586.31 ) LPos=( -532.81, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3980.26, -148.63, 10593.82 ) LPos=( -524.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3978.87, -154.38, 10596.32 ) LPos=( -521.31, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3977.48, -148.64, 10598.85 ) LPos=( -518.44, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3977.48, -142.89, 10598.86 ) LPos=( -518.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3989.65, -137.08, 10576.90 ) LPos=( -543.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3991.05, -139.94, 10574.38 ) LPos=( -546.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3989.65, -139.95, 10576.90 ) LPos=( -543.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3991.05, -142.82, 10574.37 ) LPos=( -546.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3981.66, -170.87, 10591.24 ) LPos=( -527.06, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3980.26, -162.25, 10593.78 ) LPos=( -524.19, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3981.66, -162.24, 10591.26 ) LPos=( -527.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3989.65, -162.20, 10576.83 ) LPos=( -543.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3991.05, -165.07, 10574.31 ) LPos=( -546.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3992.44, -173.69, 10571.77 ) LPos=( -549.31, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3995.23, -179.42, 10566.72 ) LPos=( -555.06, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3984.44, -204.60, 10586.11 ) LPos=( -532.81, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3983.05, -195.99, 10588.65 ) LPos=( -529.94, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3996.62, -190.16, 10564.17 ) LPos=( -557.94, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3991.05, -201.69, 10574.20 ) LPos=( -546.44, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3995.23, -204.55, 10566.65 ) LPos=( -555.06, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3996.62, -207.41, 10564.12 ) LPos=( -557.94, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3993.62, -221.24, 10569.49 ) LPos=( -551.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3996.53, -227.23, 10564.23 ) LPos=( -557.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3990.71, -233.26, 10574.71 ) LPos=( -545.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3996.53, -239.23, 10564.19 ) LPos=( -557.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3987.80, -239.27, 10579.94 ) LPos=( -539.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3976.17, -239.33, 10600.93 ) LPos=( -515.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3996.53, -251.23, 10564.16 ) LPos=( -557.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3984.90, -251.29, 10585.15 ) LPos=( -533.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3981.99, -251.30, 10590.40 ) LPos=( -527.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3979.08, -257.32, 10595.63 ) LPos=( -521.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.17, -257.33, 10600.88 ) LPos=( -515.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3996.53, -277.23, 10564.08 ) LPos=( -557.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3996.52, -295.23, 10564.03 ) LPos=( -557.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3990.71, -307.26, 10574.49 ) LPos=( -545.75, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3987.80, -319.27, 10579.70 ) LPos=( -539.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3976.17, -351.33, 10600.60 ) LPos=( -515.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3993.62, -363.24, 10569.08 ) LPos=( -551.75, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3987.80, -395.27, 10579.48 ) LPos=( -539.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3981.98, -401.30, 10589.96 ) LPos=( -527.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3987.80, -413.27, 10579.43 ) LPos=( -539.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3987.80, -419.27, 10579.41 ) LPos=( -539.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3981.98, -419.30, 10589.91 ) LPos=( -527.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3976.17, -425.33, 10600.39 ) LPos=( -515.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3990.70, -469.26, 10574.02 ) LPos=( -545.75, -469.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3993.61, -525.24, 10568.60 ) LPos=( -551.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3984.89, -543.29, 10584.29 ) LPos=( -533.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3981.98, -543.30, 10589.54 ) LPos=( -527.75, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:239,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3993.61, -569.24, 10568.47 ) LPos=( -551.75, -569.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3954.63, 612.55, 10642.36 ) LPos=( -471.25, 612.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3969.17, 594.63, 10616.06 ) LPos=( -501.25, 594.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3969.17, 582.63, 10616.03 ) LPos=( -501.25, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3966.26, 520.61, 10621.09 ) LPos=( -495.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.35, 520.59, 10626.34 ) LPos=( -489.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3960.45, 520.58, 10631.59 ) LPos=( -483.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3951.72, 520.53, 10647.34 ) LPos=( -465.25, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3960.45, 506.58, 10631.55 ) LPos=( -483.25, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3957.54, 494.56, 10636.76 ) LPos=( -477.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3960.45, 488.58, 10631.50 ) LPos=( -483.25, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3969.17, 482.63, 10615.73 ) LPos=( -501.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3963.35, 482.60, 10626.23 ) LPos=( -489.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3969.17, 438.63, 10615.61 ) LPos=( -501.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.63, 408.55, 10641.76 ) LPos=( -471.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3969.16, 332.63, 10615.29 ) LPos=( -501.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3960.44, 332.58, 10631.04 ) LPos=( -483.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3960.44, 314.58, 10630.99 ) LPos=( -483.25, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3963.35, 308.60, 10625.72 ) LPos=( -489.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3969.16, 296.63, 10615.19 ) LPos=( -501.25, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3966.25, 296.61, 10620.44 ) LPos=( -495.25, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3963.35, 270.60, 10625.61 ) LPos=( -489.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3966.25, 264.61, 10620.34 ) LPos=( -495.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3957.53, 264.57, 10636.09 ) LPos=( -477.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3960.44, 246.58, 10630.79 ) LPos=( -483.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3948.72, 212.33, 10651.84 ) LPos=( -459.06, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3955.68, 215.24, 10639.28 ) LPos=( -473.44, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3957.07, 215.25, 10636.76 ) LPos=( -476.31, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3955.68, 220.99, 10639.30 ) LPos=( -473.44, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3950.11, 223.84, 10649.36 ) LPos=( -461.94, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3955.68, 223.87, 10639.30 ) LPos=( -473.44, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3960.89, 223.90, 10629.90 ) LPos=( -484.19, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3960.89, 212.40, 10629.87 ) LPos=( -484.19, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3969.25, 212.44, 10614.78 ) LPos=( -501.44, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3957.07, 181.50, 10636.66 ) LPos=( -476.31, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3952.89, 184.35, 10644.22 ) LPos=( -467.69, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3951.50, 192.97, 10646.76 ) LPos=( -464.81, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3950.11, 190.09, 10649.26 ) LPos=( -461.94, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3950.11, 192.96, 10649.27 ) LPos=( -461.94, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3950.11, 195.84, 10649.28 ) LPos=( -461.94, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3948.71, 181.46, 10651.75 ) LPos=( -459.06, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3948.71, 184.33, 10651.76 ) LPos=( -459.06, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3948.71, 190.08, 10651.78 ) LPos=( -459.06, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3948.71, 192.96, 10651.79 ) LPos=( -459.06, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3948.71, 195.83, 10651.80 ) LPos=( -459.06, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3947.32, 187.20, 10654.29 ) LPos=( -456.19, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3947.32, 190.07, 10654.29 ) LPos=( -456.19, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3947.32, 192.95, 10654.30 ) LPos=( -456.19, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3947.32, 195.82, 10654.31 ) LPos=( -456.19, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3969.25, 187.31, 10614.70 ) LPos=( -501.44, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3966.46, 187.30, 10619.73 ) LPos=( -495.69, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3960.89, 187.27, 10629.79 ) LPos=( -484.19, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3970.64, 184.45, 10612.18 ) LPos=( -504.31, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3963.68, 184.41, 10624.76 ) LPos=( -489.94, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3960.89, 184.40, 10629.78 ) LPos=( -484.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3963.68, 181.54, 10624.75 ) LPos=( -489.94, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3962.28, 181.53, 10627.26 ) LPos=( -487.06, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3955.68, 156.37, 10639.11 ) LPos=( -473.44, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3948.71, 159.21, 10651.69 ) LPos=( -459.06, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3950.11, 164.96, 10649.19 ) LPos=( -461.94, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3947.32, 170.70, 10654.24 ) LPos=( -456.19, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3950.11, 170.71, 10649.21 ) LPos=( -461.94, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3955.68, 173.62, 10639.16 ) LPos=( -473.44, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3965.07, 159.29, 10622.17 ) LPos=( -492.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3966.46, 165.05, 10619.67 ) LPos=( -495.69, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3967.86, 153.56, 10617.12 ) LPos=( -498.56, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3970.64, 170.82, 10612.14 ) LPos=( -504.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3957.07, 139.88, 10636.54 ) LPos=( -476.31, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3955.68, 145.62, 10639.07 ) LPos=( -473.44, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3952.89, 145.60, 10644.10 ) LPos=( -467.69, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3965.07, 145.67, 10622.13 ) LPos=( -492.81, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3969.25, 134.19, 10614.55 ) LPos=( -501.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3957.07, 117.63, 10636.48 ) LPos=( -476.31, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3960.89, 117.65, 10629.59 ) LPos=( -484.19, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3960.89, 114.77, 10629.58 ) LPos=( -484.19, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3963.67, 100.41, 10624.51 ) LPos=( -489.94, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3965.07, 117.67, 10622.04 ) LPos=( -492.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3966.46, 111.93, 10619.51 ) LPos=( -495.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3966.46, 109.05, 10619.50 ) LPos=( -495.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3967.85, 106.18, 10616.98 ) LPos=( -498.56, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3969.25, 97.57, 10614.44 ) LPos=( -501.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3957.07, 78.13, 10636.36 ) LPos=( -476.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3957.07, 89.63, 10636.40 ) LPos=( -476.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3954.28, 83.86, 10641.41 ) LPos=( -470.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3954.28, 89.61, 10641.42 ) LPos=( -470.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3952.89, 83.85, 10643.92 ) LPos=( -467.69, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3950.10, 80.96, 10648.94 ) LPos=( -461.94, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3950.10, 89.59, 10648.97 ) LPos=( -461.94, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3960.89, 89.65, 10629.51 ) LPos=( -484.19, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3969.25, 83.94, 10614.40 ) LPos=( -501.44, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3963.67, 83.91, 10624.46 ) LPos=( -489.94, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3970.64, 81.07, 10611.88 ) LPos=( -504.31, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3965.07, 81.04, 10621.94 ) LPos=( -492.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3965.07, 69.54, 10621.90 ) LPos=( -492.81, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3951.50, 41.47, 10646.31 ) LPos=( -464.81, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3954.28, 44.36, 10641.29 ) LPos=( -470.56, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3957.07, 44.38, 10636.26 ) LPos=( -476.31, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3954.28, 50.11, 10641.31 ) LPos=( -470.56, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3952.89, 52.98, 10643.83 ) LPos=( -467.69, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.28, 61.61, 10641.34 ) LPos=( -470.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3960.89, 58.77, 10629.42 ) LPos=( -484.19, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3960.89, 41.52, 10629.37 ) LPos=( -484.19, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3962.28, 61.65, 10626.91 ) LPos=( -487.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3962.28, 58.78, 10626.90 ) LPos=( -487.06, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3962.28, 53.03, 10626.88 ) LPos=( -487.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3963.67, 50.16, 10624.36 ) LPos=( -489.94, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3966.46, 58.80, 10619.36 ) LPos=( -495.69, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3969.25, 58.82, 10614.33 ) LPos=( -501.44, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3957.07, 13.50, 10636.17 ) LPos=( -476.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3957.07, 22.13, 10636.20 ) LPos=( -476.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3954.28, 24.99, 10641.24 ) LPos=( -470.56, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3951.50, 19.22, 10646.25 ) LPos=( -464.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3950.10, 22.09, 10648.77 ) LPos=( -461.94, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3967.85, 33.68, 10616.77 ) LPos=( -498.56, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3962.28, 30.78, 10626.82 ) LPos=( -487.06, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3965.07, 27.92, 10621.78 ) LPos=( -492.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3970.64, 25.07, 10611.71 ) LPos=( -504.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3969.24, 22.19, 10614.22 ) LPos=( -501.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3963.67, 22.16, 10624.28 ) LPos=( -489.94, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3965.07, 16.42, 10621.75 ) LPos=( -492.81, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3952.89, -14.52, 10643.63 ) LPos=( -467.69, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3951.50, -11.65, 10646.16 ) LPos=( -464.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3952.89, -11.65, 10643.64 ) LPos=( -467.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3947.32, -8.80, 10653.71 ) LPos=( -456.19, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3951.50, -5.90, 10646.17 ) LPos=( -464.81, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3948.71, -3.04, 10651.21 ) LPos=( -459.06, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3950.10, -3.04, 10648.70 ) LPos=( -461.94, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3960.88, 5.65, 10629.26 ) LPos=( -484.19, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3960.88, -5.85, 10629.23 ) LPos=( -484.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3965.06, -8.71, 10621.67 ) LPos=( -492.81, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3966.46, 2.80, 10619.19 ) LPos=( -495.69, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3966.46, -2.95, 10619.18 ) LPos=( -495.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3966.46, -5.82, 10619.17 ) LPos=( -495.69, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3967.85, 2.81, 10616.68 ) LPos=( -498.56, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3967.85, -0.07, 10616.67 ) LPos=( -498.56, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3969.24, 2.82, 10614.16 ) LPos=( -501.44, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3969.24, -2.93, 10614.15 ) LPos=( -501.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3970.64, -5.80, 10611.62 ) LPos=( -504.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3957.07, -39.62, 10636.02 ) LPos=( -476.31, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3948.71, -28.17, 10651.14 ) LPos=( -459.06, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3969.24, -33.81, 10614.06 ) LPos=( -501.44, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3965.06, -42.46, 10621.57 ) LPos=( -492.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3951.49, -70.53, 10645.98 ) LPos=( -464.81, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3954.28, -70.51, 10640.95 ) LPos=( -470.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3954.28, -61.89, 10640.98 ) LPos=( -470.56, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3954.28, -59.01, 10640.99 ) LPos=( -470.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3957.07, -56.12, 10635.97 ) LPos=( -476.31, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.28, -50.39, 10641.01 ) LPos=( -470.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3965.06, -58.96, 10621.53 ) LPos=( -492.81, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3967.85, -67.57, 10616.47 ) LPos=( -498.56, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3954.28, -92.76, 10640.89 ) LPos=( -470.56, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3951.49, -98.53, 10645.90 ) LPos=( -464.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3947.31, -92.80, 10653.46 ) LPos=( -456.19, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3947.31, -89.92, 10653.47 ) LPos=( -456.19, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3947.31, -81.30, 10653.50 ) LPos=( -456.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3970.63, -98.43, 10611.35 ) LPos=( -504.31, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3957.06, -117.87, 10635.79 ) LPos=( -476.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3962.27, -123.60, 10626.37 ) LPos=( -487.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3965.06, -123.58, 10621.34 ) LPos=( -492.81, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3966.45, -112.07, 10618.86 ) LPos=( -495.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3951.49, -145.90, 10645.76 ) LPos=( -464.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3951.49, -143.03, 10645.77 ) LPos=( -464.81, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3950.10, -143.03, 10648.29 ) LPos=( -461.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3948.70, -143.04, 10650.80 ) LPos=( -459.06, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3947.31, -143.05, 10653.32 ) LPos=( -456.19, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3947.31, -140.17, 10653.32 ) LPos=( -456.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3947.31, -137.30, 10653.33 ) LPos=( -456.19, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3947.31, -134.42, 10653.34 ) LPos=( -456.19, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3962.27, -134.35, 10626.33 ) LPos=( -487.06, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3969.24, -137.18, 10613.75 ) LPos=( -501.44, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3960.88, -140.10, 10628.83 ) LPos=( -484.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3963.67, -142.96, 10623.79 ) LPos=( -489.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3970.63, -148.68, 10611.20 ) LPos=( -504.31, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3965.06, -148.71, 10621.26 ) LPos=( -492.81, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3966.45, -154.45, 10618.73 ) LPos=( -495.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3963.67, -154.46, 10623.76 ) LPos=( -489.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3957.06, -168.12, 10635.64 ) LPos=( -476.31, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3947.31, -162.42, 10653.26 ) LPos=( -456.19, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3960.88, -176.73, 10628.72 ) LPos=( -484.19, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3967.85, -165.19, 10616.18 ) LPos=( -498.56, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3969.24, -182.43, 10613.62 ) LPos=( -501.44, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3950.10, -190.41, 10648.15 ) LPos=( -461.94, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3948.70, -201.92, 10650.63 ) LPos=( -459.06, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3965.06, -193.21, 10621.13 ) LPos=( -492.81, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3967.85, -196.07, 10616.09 ) LPos=( -498.56, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3967.85, -198.94, 10616.09 ) LPos=( -498.56, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3954.61, -221.45, 10639.91 ) LPos=( -471.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3951.70, -221.46, 10645.16 ) LPos=( -465.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3954.61, -251.45, 10639.82 ) LPos=( -471.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3951.70, -251.46, 10645.07 ) LPos=( -465.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3969.15, -257.37, 10613.56 ) LPos=( -501.25, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3969.15, -263.37, 10613.55 ) LPos=( -501.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3957.51, -301.43, 10634.43 ) LPos=( -477.25, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3960.42, -333.42, 10629.08 ) LPos=( -483.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3969.14, -345.37, 10613.30 ) LPos=( -501.25, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3957.51, -357.43, 10634.26 ) LPos=( -477.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3966.23, -363.39, 10618.50 ) LPos=( -495.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3963.33, -363.40, 10623.75 ) LPos=( -489.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3966.23, -369.39, 10618.48 ) LPos=( -495.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3960.42, -369.42, 10628.98 ) LPos=( -483.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3954.60, -375.45, 10639.46 ) LPos=( -471.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3948.79, -375.48, 10649.96 ) LPos=( -459.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3969.14, -389.37, 10613.18 ) LPos=( -501.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3948.79, -389.48, 10649.91 ) LPos=( -459.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3963.33, -413.40, 10623.60 ) LPos=( -489.25, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3948.79, -413.48, 10649.84 ) LPos=( -459.25, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3969.14, -425.37, 10613.07 ) LPos=( -501.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3963.33, -425.40, 10623.57 ) LPos=( -489.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3957.51, -425.43, 10634.06 ) LPos=( -477.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.33, -431.40, 10623.55 ) LPos=( -489.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3963.32, -451.40, 10623.49 ) LPos=( -489.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3960.42, -451.42, 10628.74 ) LPos=( -483.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3963.32, -457.40, 10623.47 ) LPos=( -489.25, -457.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3957.51, -463.43, 10633.95 ) LPos=( -477.25, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3963.32, -481.40, 10623.40 ) LPos=( -489.25, -481.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.32, -487.40, 10623.38 ) LPos=( -489.25, -487.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3966.23, -501.39, 10618.10 ) LPos=( -495.25, -501.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3969.14, -507.37, 10612.83 ) LPos=( -501.25, -507.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3963.32, -543.40, 10623.22 ) LPos=( -489.25, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3963.32, -569.40, 10623.14 ) LPos=( -489.25, -569.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:245,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3957.51, -587.43, 10633.59 ) LPos=( -477.25, -587.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3924.35, 638.39, 10697.10 ) LPos=( -408.75, 638.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3930.16, 618.42, 10686.55 ) LPos=( -420.75, 618.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3938.88, 594.47, 10670.73 ) LPos=( -438.75, 594.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3921.44, 588.37, 10702.21 ) LPos=( -402.75, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3938.88, 576.47, 10670.68 ) LPos=( -438.75, 576.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3938.88, 556.47, 10670.62 ) LPos=( -438.75, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3941.79, 550.48, 10665.36 ) LPos=( -444.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3930.16, 550.42, 10686.35 ) LPos=( -420.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3941.79, 520.48, 10665.27 ) LPos=( -444.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3930.16, 506.42, 10686.22 ) LPos=( -420.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.25, 506.40, 10691.47 ) LPos=( -414.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3921.43, 494.37, 10701.93 ) LPos=( -402.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3938.88, 470.47, 10670.37 ) LPos=( -438.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:246,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3930.16, 470.42, 10686.12 ) LPos=( -420.75, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3933.06, 414.44, 10680.70 ) LPos=( -426.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3921.43, 414.37, 10701.70 ) LPos=( -402.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3941.78, 394.48, 10664.90 ) LPos=( -444.75, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3924.34, 394.39, 10696.39 ) LPos=( -408.75, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3933.06, 338.44, 10680.48 ) LPos=( -426.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.24, 338.41, 10690.98 ) LPos=( -414.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3938.88, 332.47, 10669.97 ) LPos=( -438.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3924.34, 332.39, 10696.21 ) LPos=( -408.75, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3927.24, 302.41, 10690.87 ) LPos=( -414.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3938.87, 296.47, 10669.86 ) LPos=( -438.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3933.06, 252.44, 10680.23 ) LPos=( -426.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3941.78, 246.48, 10664.46 ) LPos=( -444.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3930.15, 246.42, 10685.46 ) LPos=( -420.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3927.24, 246.41, 10690.71 ) LPos=( -414.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3938.87, 240.47, 10669.70 ) LPos=( -438.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3933.06, 240.44, 10680.19 ) LPos=( -426.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3927.24, 240.41, 10690.69 ) LPos=( -414.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3921.43, 240.38, 10701.19 ) LPos=( -402.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3924.12, 209.33, 10696.23 ) LPos=( -408.31, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3921.33, 212.19, 10701.27 ) LPos=( -402.56, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3926.91, 212.22, 10691.21 ) LPos=( -414.06, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3928.30, 212.22, 10688.69 ) LPos=( -416.94, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3924.12, 215.08, 10696.25 ) LPos=( -408.31, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3926.91, 215.09, 10691.22 ) LPos=( -414.06, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3921.34, 220.81, 10701.29 ) LPos=( -402.56, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3921.34, 226.56, 10701.31 ) LPos=( -402.56, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3921.34, 229.44, 10701.32 ) LPos=( -402.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3933.51, 212.25, 10679.29 ) LPos=( -427.69, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3934.90, 223.76, 10676.81 ) LPos=( -430.56, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3936.30, 209.39, 10674.25 ) LPos=( -433.44, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3937.69, 226.65, 10671.79 ) LPos=( -436.31, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3929.69, 181.36, 10686.09 ) LPos=( -419.81, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3928.30, 184.22, 10688.61 ) LPos=( -416.94, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3926.91, 192.84, 10691.15 ) LPos=( -414.06, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3925.51, 181.33, 10693.63 ) LPos=( -411.19, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3921.33, 187.06, 10701.19 ) LPos=( -402.56, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3919.94, 184.18, 10703.70 ) LPos=( -399.69, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3934.90, 192.88, 10676.72 ) LPos=( -430.56, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3936.30, 184.27, 10674.18 ) LPos=( -433.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3934.90, 184.26, 10676.69 ) LPos=( -430.56, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3919.94, 156.18, 10703.62 ) LPos=( -399.69, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3928.30, 164.85, 10688.55 ) LPos=( -416.94, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3929.69, 164.86, 10686.04 ) LPos=( -419.81, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3926.91, 167.72, 10691.08 ) LPos=( -414.06, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3924.12, 170.58, 10696.11 ) LPos=( -408.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3929.69, 173.48, 10686.06 ) LPos=( -419.81, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.69, 162.02, 10671.60 ) LPos=( -436.31, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3939.08, 159.16, 10669.07 ) LPos=( -439.19, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3943.26, 167.80, 10661.55 ) LPos=( -447.81, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3943.26, 159.18, 10661.53 ) LPos=( -447.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3928.30, 128.22, 10688.45 ) LPos=( -416.94, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3926.91, 128.22, 10690.96 ) LPos=( -414.06, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3925.51, 128.21, 10693.48 ) LPos=( -411.19, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3925.51, 131.08, 10693.48 ) LPos=( -411.19, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3924.12, 125.33, 10695.98 ) LPos=( -408.31, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3924.12, 133.95, 10696.01 ) LPos=( -408.31, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3922.73, 125.32, 10698.50 ) LPos=( -405.44, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3922.73, 142.57, 10698.55 ) LPos=( -405.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3937.69, 131.15, 10671.51 ) LPos=( -436.31, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3933.51, 131.13, 10679.05 ) LPos=( -427.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3924.12, 97.33, 10695.90 ) LPos=( -408.31, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3929.69, 97.36, 10685.84 ) LPos=( -419.81, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3922.72, 100.20, 10698.42 ) LPos=( -405.44, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3925.51, 103.08, 10693.40 ) LPos=( -411.19, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3926.90, 103.09, 10690.89 ) LPos=( -414.06, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3925.51, 108.83, 10693.42 ) LPos=( -411.19, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3926.90, 111.72, 10690.91 ) LPos=( -414.06, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3929.69, 117.48, 10685.90 ) LPos=( -419.81, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3933.51, 108.88, 10678.99 ) LPos=( -427.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3936.29, 103.14, 10673.94 ) LPos=( -433.44, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3936.29, 100.27, 10673.93 ) LPos=( -433.44, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3936.29, 97.39, 10673.92 ) LPos=( -433.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3937.69, 108.90, 10671.44 ) LPos=( -436.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3940.47, 114.66, 10666.43 ) LPos=( -442.06, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3943.26, 106.05, 10661.37 ) LPos=( -447.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3929.69, 80.86, 10685.79 ) LPos=( -419.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3928.30, 75.10, 10688.29 ) LPos=( -416.94, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3926.90, 75.09, 10690.80 ) LPos=( -414.06, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3925.51, 72.21, 10693.31 ) LPos=( -411.19, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3925.51, 89.46, 10693.36 ) LPos=( -411.19, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3921.33, 86.56, 10700.90 ) LPos=( -402.56, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3919.94, 72.18, 10703.37 ) LPos=( -399.69, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3919.94, 86.56, 10703.41 ) LPos=( -399.69, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3940.47, 89.54, 10666.35 ) LPos=( -442.06, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3943.26, 83.80, 10661.31 ) LPos=( -447.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3940.47, 80.91, 10666.33 ) LPos=( -442.06, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3933.51, 78.00, 10678.89 ) LPos=( -427.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3941.87, 72.30, 10663.79 ) LPos=( -444.94, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3941.87, 69.42, 10663.78 ) LPos=( -444.94, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3939.08, 69.41, 10668.81 ) LPos=( -439.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3924.12, 41.33, 10695.74 ) LPos=( -408.31, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3922.72, 49.95, 10698.28 ) LPos=( -405.44, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3925.51, 55.71, 10693.26 ) LPos=( -411.19, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3928.30, 55.72, 10688.23 ) LPos=( -416.94, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3924.12, 58.58, 10695.79 ) LPos=( -408.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3929.69, 58.61, 10685.73 ) LPos=( -419.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3922.72, 61.45, 10698.31 ) LPos=( -405.44, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3934.90, 58.63, 10676.32 ) LPos=( -430.56, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3936.29, 44.27, 10673.77 ) LPos=( -433.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3940.47, 50.04, 10666.24 ) LPos=( -442.06, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3941.87, 61.55, 10663.76 ) LPos=( -444.94, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3943.26, 50.05, 10661.21 ) LPos=( -447.81, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3929.69, 19.11, 10685.61 ) LPos=( -419.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3929.69, 30.61, 10685.64 ) LPos=( -419.81, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3928.30, 21.97, 10688.13 ) LPos=( -416.94, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3926.90, 21.97, 10690.65 ) LPos=( -414.06, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3925.51, 19.09, 10693.16 ) LPos=( -411.19, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3921.33, 30.56, 10700.73 ) LPos=( -402.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3937.69, 33.52, 10671.22 ) LPos=( -436.31, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3934.90, 27.76, 10676.23 ) LPos=( -430.56, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.68, 24.90, 10671.19 ) LPos=( -436.31, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3943.26, 19.18, 10661.12 ) LPos=( -447.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3933.50, 19.13, 10678.72 ) LPos=( -427.69, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3941.86, 16.30, 10663.62 ) LPos=( -444.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3940.47, 16.29, 10666.14 ) LPos=( -442.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3936.29, 16.27, 10673.68 ) LPos=( -433.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3941.86, 13.42, 10663.62 ) LPos=( -444.94, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3939.08, 13.41, 10668.65 ) LPos=( -439.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3919.94, -8.94, 10703.13 ) LPos=( -399.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3924.11, -8.92, 10695.59 ) LPos=( -408.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3926.90, -6.03, 10690.57 ) LPos=( -414.06, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3928.29, -3.15, 10688.06 ) LPos=( -416.94, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3919.94, -0.32, 10703.16 ) LPos=( -399.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3922.72, 5.45, 10698.14 ) LPos=( -405.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3925.51, 5.46, 10693.12 ) LPos=( -411.19, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3936.29, -3.11, 10673.63 ) LPos=( -433.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3937.68, -0.23, 10671.12 ) LPos=( -436.31, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3937.68, -3.10, 10671.11 ) LPos=( -436.31, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3943.26, -5.95, 10661.04 ) LPos=( -447.81, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3943.26, -11.70, 10661.03 ) LPos=( -447.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3929.69, -36.89, 10685.45 ) LPos=( -419.81, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3924.11, -22.55, 10695.55 ) LPos=( -408.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3922.72, -31.18, 10698.04 ) LPos=( -405.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3922.72, -28.30, 10698.05 ) LPos=( -405.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3922.72, -22.55, 10698.06 ) LPos=( -405.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3921.33, -39.81, 10700.53 ) LPos=( -402.56, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3919.93, -28.32, 10703.08 ) LPos=( -399.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3943.26, -22.45, 10661.00 ) LPos=( -447.81, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3939.08, -22.47, 10668.54 ) LPos=( -439.19, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3937.68, -22.48, 10671.06 ) LPos=( -436.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3934.90, -22.49, 10676.09 ) LPos=( -430.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3933.50, -28.25, 10678.58 ) LPos=( -427.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3922.72, -70.68, 10697.92 ) LPos=( -405.44, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3929.69, -70.64, 10685.35 ) LPos=( -419.81, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3919.93, -67.82, 10702.96 ) LPos=( -399.69, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3919.93, -64.94, 10702.97 ) LPos=( -399.69, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3928.29, -64.90, 10687.88 ) LPos=( -416.94, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3924.11, -62.05, 10695.43 ) LPos=( -408.31, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3926.90, -59.16, 10690.41 ) LPos=( -414.06, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3921.33, -56.31, 10700.48 ) LPos=( -402.56, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3926.90, -56.28, 10690.42 ) LPos=( -414.06, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3924.11, -53.42, 10695.46 ) LPos=( -408.31, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3933.50, -53.37, 10678.51 ) LPos=( -427.69, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3937.68, -64.85, 10670.93 ) LPos=( -436.31, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3939.08, -64.84, 10668.42 ) LPos=( -439.19, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3939.08, -70.59, 10668.40 ) LPos=( -439.19, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3928.29, -84.27, 10687.82 ) LPos=( -416.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3925.51, -84.29, 10692.85 ) LPos=( -411.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3925.51, -78.54, 10692.87 ) LPos=( -411.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3924.11, -92.92, 10695.34 ) LPos=( -408.31, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3924.11, -87.17, 10695.36 ) LPos=( -408.31, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3921.33, -84.31, 10700.40 ) LPos=( -402.56, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3919.93, -95.82, 10702.88 ) LPos=( -399.69, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3919.93, -92.94, 10702.89 ) LPos=( -399.69, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3939.08, -78.47, 10668.38 ) LPos=( -439.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3936.29, -81.36, 10673.40 ) LPos=( -433.44, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3933.50, -81.37, 10678.43 ) LPos=( -427.69, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3933.50, -84.25, 10678.42 ) LPos=( -427.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3939.07, -87.09, 10668.35 ) LPos=( -439.19, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3934.89, -95.74, 10675.87 ) LPos=( -430.56, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3939.07, -98.59, 10668.32 ) LPos=( -439.19, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3921.32, -126.69, 10700.27 ) LPos=( -402.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3922.72, -126.68, 10697.76 ) LPos=( -405.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3919.93, -118.07, 10702.81 ) LPos=( -399.69, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3929.68, -115.14, 10685.22 ) LPos=( -419.81, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3924.11, -106.55, 10695.30 ) LPos=( -408.31, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3934.89, -112.24, 10675.82 ) LPos=( -430.56, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3934.89, -123.74, 10675.79 ) LPos=( -430.56, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3936.29, -115.11, 10673.30 ) LPos=( -433.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3937.68, -112.23, 10670.79 ) LPos=( -436.31, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3929.68, -140.27, 10685.14 ) LPos=( -419.81, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3924.11, -146.05, 10695.19 ) LPos=( -408.31, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3924.11, -134.55, 10695.22 ) LPos=( -408.31, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3922.72, -140.30, 10697.72 ) LPos=( -405.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3919.93, -148.94, 10702.72 ) LPos=( -399.69, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3919.93, -143.19, 10702.74 ) LPos=( -399.69, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3919.93, -140.32, 10702.75 ) LPos=( -399.69, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3937.68, -140.22, 10670.71 ) LPos=( -436.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3943.25, -143.07, 10660.64 ) LPos=( -447.81, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.68, -143.10, 10670.70 ) LPos=( -436.31, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3943.25, -145.95, 10660.63 ) LPos=( -447.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3939.07, -145.97, 10668.18 ) LPos=( -439.19, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3937.68, -151.72, 10670.68 ) LPos=( -436.31, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3936.29, -151.73, 10673.19 ) LPos=( -433.44, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3934.89, -151.74, 10675.71 ) LPos=( -430.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3933.50, -154.62, 10678.21 ) LPos=( -427.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3928.29, -182.65, 10687.53 ) LPos=( -416.94, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3919.93, -176.94, 10702.64 ) LPos=( -399.69, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3929.68, -174.02, 10685.04 ) LPos=( -419.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3922.72, -171.18, 10697.63 ) LPos=( -405.44, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3924.11, -171.17, 10695.11 ) LPos=( -408.31, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3921.32, -168.31, 10700.15 ) LPos=( -402.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3929.68, -168.27, 10685.06 ) LPos=( -419.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3926.90, -165.41, 10690.10 ) LPos=( -414.06, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3933.50, -162.50, 10678.19 ) LPos=( -427.69, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3934.89, -165.36, 10675.67 ) LPos=( -430.56, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3936.29, -162.48, 10673.16 ) LPos=( -433.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3937.68, -173.97, 10670.61 ) LPos=( -436.31, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3943.25, -176.82, 10660.54 ) LPos=( -447.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3929.68, -207.77, 10684.94 ) LPos=( -419.81, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3926.90, -193.41, 10690.02 ) LPos=( -414.06, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3926.90, -190.53, 10690.03 ) LPos=( -414.06, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3924.11, -210.67, 10695.00 ) LPos=( -408.31, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3922.72, -190.55, 10697.57 ) LPos=( -405.44, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3921.32, -196.31, 10700.07 ) LPos=( -402.56, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3921.32, -190.56, 10700.08 ) LPos=( -402.56, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3919.93, -193.44, 10702.59 ) LPos=( -399.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3940.46, -190.46, 10665.53 ) LPos=( -442.06, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3943.25, -196.20, 10660.49 ) LPos=( -447.81, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3943.25, -199.07, 10660.48 ) LPos=( -447.81, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3939.07, -199.09, 10668.02 ) LPos=( -439.19, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3933.50, -207.75, 10678.06 ) LPos=( -427.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3933.50, -210.62, 10678.05 ) LPos=( -427.69, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3941.77, -221.52, 10663.09 ) LPos=( -444.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.23, -221.59, 10689.33 ) LPos=( -414.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3933.04, -227.56, 10678.82 ) LPos=( -426.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3924.32, -277.61, 10694.42 ) LPos=( -408.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3924.32, -283.61, 10694.40 ) LPos=( -408.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3941.76, -319.52, 10662.80 ) LPos=( -444.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3921.41, -319.62, 10699.54 ) LPos=( -402.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3935.95, -375.55, 10673.14 ) LPos=( -432.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3930.13, -375.58, 10683.63 ) LPos=( -420.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3927.22, -389.59, 10688.84 ) LPos=( -414.75, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3938.85, -401.53, 10667.81 ) LPos=( -438.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3938.85, -407.53, 10667.79 ) LPos=( -438.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3938.85, -413.53, 10667.78 ) LPos=( -438.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3935.95, -419.55, 10673.01 ) LPos=( -432.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3933.04, -419.56, 10678.25 ) LPos=( -426.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3941.76, -425.51, 10662.49 ) LPos=( -444.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3941.76, -463.51, 10662.38 ) LPos=( -444.75, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3930.13, -531.58, 10683.17 ) LPos=( -420.75, -531.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3930.12, -587.58, 10683.01 ) LPos=( -420.75, -587.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3927.22, -599.59, 10688.22 ) LPos=( -414.75, -599.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3927.22, -625.59, 10688.15 ) LPos=( -414.75, -625.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:251,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3924.31, -643.61, 10693.34 ) LPos=( -408.75, -643.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3905.69, 638.29, 10730.78 ) LPos=( -370.25, 638.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3908.60, 632.31, 10725.52 ) LPos=( -376.25, 632.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3911.50, 606.32, 10720.19 ) LPos=( -382.25, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3902.78, 550.28, 10735.77 ) LPos=( -364.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3908.59, 506.31, 10725.15 ) LPos=( -376.25, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3914.41, 482.34, 10714.58 ) LPos=( -388.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3908.59, 464.31, 10725.02 ) LPos=( -376.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3911.50, 444.32, 10719.72 ) LPos=( -382.25, 444.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3902.78, 438.28, 10735.44 ) LPos=( -364.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3902.77, 420.28, 10735.39 ) LPos=( -364.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3902.77, 414.28, 10735.37 ) LPos=( -364.25, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3905.68, 408.29, 10730.11 ) LPos=( -370.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3894.05, 394.23, 10751.06 ) LPos=( -346.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3914.40, 388.34, 10714.30 ) LPos=( -388.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3902.77, 388.28, 10735.30 ) LPos=( -364.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3896.96, 388.25, 10745.79 ) LPos=( -352.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3894.05, 388.23, 10751.04 ) LPos=( -346.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3896.96, 382.25, 10745.78 ) LPos=( -352.25, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3894.05, 376.23, 10751.01 ) LPos=( -346.25, 376.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3902.77, 364.28, 10735.23 ) LPos=( -364.25, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3908.59, 352.31, 10724.69 ) LPos=( -376.25, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3905.68, 338.29, 10729.90 ) LPos=( -370.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3902.77, 338.28, 10735.15 ) LPos=( -364.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3899.86, 338.26, 10740.40 ) LPos=( -358.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3914.40, 332.34, 10714.14 ) LPos=( -388.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3896.96, 332.25, 10745.63 ) LPos=( -352.25, 332.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3911.49, 326.32, 10719.37 ) LPos=( -382.25, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3914.40, 308.34, 10714.07 ) LPos=( -388.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3914.40, 276.34, 10713.97 ) LPos=( -388.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3908.59, 276.31, 10724.47 ) LPos=( -376.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3896.95, 276.25, 10745.46 ) LPos=( -352.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3914.40, 270.34, 10713.96 ) LPos=( -388.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3905.68, 264.29, 10729.68 ) LPos=( -370.25, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3908.59, 258.31, 10724.42 ) LPos=( -376.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.86, 240.26, 10740.11 ) LPos=( -358.25, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3892.56, 214.91, 10753.21 ) LPos=( -343.19, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3899.53, 220.70, 10740.65 ) LPos=( -357.56, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3908.92, 215.00, 10723.69 ) LPos=( -376.94, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.31, 217.88, 10721.18 ) LPos=( -379.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3913.10, 226.52, 10716.18 ) LPos=( -385.56, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3902.31, 181.21, 10735.51 ) LPos=( -363.31, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3900.92, 192.70, 10738.06 ) LPos=( -360.44, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3899.53, 186.95, 10740.56 ) LPos=( -357.56, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3899.53, 189.82, 10740.56 ) LPos=( -357.56, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3899.53, 201.32, 10740.60 ) LPos=( -357.56, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3896.74, 186.93, 10745.59 ) LPos=( -351.81, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3914.49, 198.53, 10713.58 ) LPos=( -388.44, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.31, 192.75, 10721.11 ) LPos=( -379.81, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3906.13, 186.98, 10728.64 ) LPos=( -371.19, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3906.13, 184.11, 10728.63 ) LPos=( -371.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3911.70, 181.26, 10718.56 ) LPos=( -382.69, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3896.74, 153.18, 10745.49 ) LPos=( -351.81, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3900.92, 153.21, 10737.94 ) LPos=( -360.44, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3895.35, 156.05, 10748.01 ) LPos=( -348.94, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3899.53, 156.07, 10740.46 ) LPos=( -357.56, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3895.35, 161.80, 10748.03 ) LPos=( -348.94, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3892.56, 164.66, 10753.06 ) LPos=( -343.19, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.74, 164.68, 10745.52 ) LPos=( -351.81, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3892.56, 173.29, 10753.09 ) LPos=( -343.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3900.92, 173.33, 10738.00 ) LPos=( -360.44, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3906.13, 173.36, 10728.60 ) LPos=( -371.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3908.92, 159.00, 10723.53 ) LPos=( -376.94, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3910.31, 170.50, 10721.04 ) LPos=( -379.81, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3910.31, 164.75, 10721.03 ) LPos=( -379.81, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3910.31, 159.00, 10721.01 ) LPos=( -379.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3911.70, 167.64, 10718.52 ) LPos=( -382.69, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, 164.76, 10718.51 ) LPos=( -382.69, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3911.70, 159.01, 10718.50 ) LPos=( -382.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3911.70, 156.14, 10718.49 ) LPos=( -382.69, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.10, 164.77, 10716.00 ) LPos=( -385.56, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3913.10, 161.89, 10715.99 ) LPos=( -385.56, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3913.09, 159.02, 10715.98 ) LPos=( -385.56, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3913.09, 156.14, 10715.97 ) LPos=( -385.56, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3914.49, 167.65, 10713.49 ) LPos=( -388.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3902.31, 136.71, 10735.38 ) LPos=( -363.31, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3898.13, 128.07, 10742.90 ) LPos=( -354.69, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3898.13, 130.94, 10742.91 ) LPos=( -354.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3896.74, 142.43, 10745.45 ) LPos=( -351.81, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3892.56, 145.29, 10753.01 ) LPos=( -343.19, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3914.49, 145.40, 10713.43 ) LPos=( -388.44, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3913.09, 145.39, 10715.94 ) LPos=( -385.56, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3915.88, 139.66, 10710.89 ) LPos=( -391.31, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3915.88, 136.78, 10710.89 ) LPos=( -391.31, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3908.91, 136.75, 10723.46 ) LPos=( -376.94, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3911.70, 131.01, 10718.41 ) LPos=( -382.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3898.13, 97.19, 10742.81 ) LPos=( -354.69, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3893.95, 105.79, 10750.38 ) LPos=( -346.06, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3898.13, 108.69, 10742.84 ) LPos=( -354.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3902.31, 108.71, 10735.30 ) LPos=( -363.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3892.56, 111.54, 10752.91 ) LPos=( -343.19, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3900.92, 111.58, 10737.82 ) LPos=( -360.44, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3902.31, 111.59, 10735.30 ) LPos=( -363.31, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3900.92, 114.46, 10737.83 ) LPos=( -360.44, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3898.13, 117.32, 10742.87 ) LPos=( -354.69, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.52, 117.32, 10740.35 ) LPos=( -357.56, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3902.31, 117.34, 10735.32 ) LPos=( -363.31, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3906.13, 100.11, 10728.38 ) LPos=( -371.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3911.70, 111.64, 10718.36 ) LPos=( -382.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, 108.76, 10718.35 ) LPos=( -382.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.09, 108.77, 10715.83 ) LPos=( -385.56, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3914.49, 97.28, 10713.28 ) LPos=( -388.44, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3915.88, 108.78, 10710.80 ) LPos=( -391.31, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3902.31, 89.34, 10735.24 ) LPos=( -363.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3900.92, 72.08, 10737.70 ) LPos=( -360.44, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3898.13, 74.94, 10742.74 ) LPos=( -354.69, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3898.13, 80.69, 10742.76 ) LPos=( -354.69, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3898.13, 89.32, 10742.78 ) LPos=( -354.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3893.95, 69.17, 10750.27 ) LPos=( -346.06, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3914.49, 89.40, 10713.26 ) LPos=( -388.44, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3907.52, 89.37, 10725.84 ) LPos=( -374.06, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3907.52, 77.87, 10725.80 ) LPos=( -374.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3915.88, 75.03, 10710.70 ) LPos=( -391.31, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3914.49, 75.03, 10713.22 ) LPos=( -388.44, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3910.31, 75.00, 10720.76 ) LPos=( -379.81, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3911.70, 72.14, 10718.24 ) LPos=( -382.69, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3910.31, 69.25, 10720.75 ) LPos=( -379.81, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3906.13, 69.23, 10728.29 ) LPos=( -371.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3895.34, 41.18, 10747.67 ) LPos=( -348.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3902.31, 44.09, 10735.11 ) LPos=( -363.31, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3899.52, 46.95, 10740.14 ) LPos=( -357.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3902.31, 46.96, 10735.11 ) LPos=( -363.31, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3893.95, 49.79, 10750.21 ) LPos=( -346.06, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3902.31, 52.71, 10735.13 ) LPos=( -363.31, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3898.13, 55.57, 10742.68 ) LPos=( -354.69, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3900.92, 55.58, 10737.66 ) LPos=( -360.44, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3902.31, 55.59, 10735.14 ) LPos=( -363.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3895.34, 58.43, 10747.72 ) LPos=( -348.94, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3900.92, 58.46, 10737.66 ) LPos=( -360.44, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3902.31, 58.46, 10735.15 ) LPos=( -363.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3895.34, 61.30, 10747.73 ) LPos=( -348.94, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3898.13, 61.32, 10742.70 ) LPos=( -354.69, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3906.13, 49.86, 10728.23 ) LPos=( -371.19, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3907.52, 61.37, 10725.75 ) LPos=( -374.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3907.52, 52.74, 10725.73 ) LPos=( -374.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3910.31, 47.01, 10720.68 ) LPos=( -379.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3911.70, 58.51, 10718.20 ) LPos=( -382.69, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3911.70, 49.89, 10718.18 ) LPos=( -382.69, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3913.09, 61.39, 10715.69 ) LPos=( -385.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3913.09, 58.52, 10715.69 ) LPos=( -385.56, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3913.09, 47.02, 10715.65 ) LPos=( -385.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3914.49, 52.78, 10713.15 ) LPos=( -388.44, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3914.48, 49.90, 10713.15 ) LPos=( -388.44, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3915.88, 58.53, 10710.66 ) LPos=( -391.31, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3915.88, 49.91, 10710.63 ) LPos=( -391.31, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3902.31, 18.96, 10735.03 ) LPos=( -363.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3899.52, 13.20, 10740.05 ) LPos=( -357.56, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3896.74, 13.18, 10745.08 ) LPos=( -351.81, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3896.74, 24.68, 10745.11 ) LPos=( -351.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3896.74, 27.56, 10745.12 ) LPos=( -351.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3895.34, 16.05, 10747.60 ) LPos=( -348.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3895.34, 27.55, 10747.63 ) LPos=( -348.94, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3895.34, 30.43, 10747.64 ) LPos=( -348.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3893.95, 24.67, 10750.14 ) LPos=( -346.06, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3892.56, 13.16, 10752.62 ) LPos=( -343.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3915.88, 30.53, 10710.57 ) LPos=( -391.31, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3907.52, 30.49, 10725.66 ) LPos=( -374.06, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3906.12, 30.48, 10728.18 ) LPos=( -371.19, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.30, 24.76, 10720.62 ) LPos=( -379.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3915.88, 21.91, 10710.55 ) LPos=( -391.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3914.48, 21.90, 10713.06 ) LPos=( -388.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3910.30, 13.26, 10720.58 ) LPos=( -379.81, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3896.73, -14.82, 10744.99 ) LPos=( -351.81, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3899.52, -14.80, 10739.96 ) LPos=( -357.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3895.34, -11.95, 10747.52 ) LPos=( -348.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3896.73, -11.94, 10745.00 ) LPos=( -351.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3900.91, -11.92, 10737.46 ) LPos=( -360.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3892.55, -6.21, 10752.56 ) LPos=( -343.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3893.95, -6.21, 10750.05 ) LPos=( -346.06, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3892.55, -3.34, 10752.57 ) LPos=( -343.19, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3893.95, -3.33, 10750.06 ) LPos=( -346.06, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.73, -3.32, 10745.03 ) LPos=( -351.81, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3893.95, -0.46, 10750.06 ) LPos=( -346.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3898.13, -0.43, 10742.52 ) LPos=( -354.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3892.55, 2.41, 10752.59 ) LPos=( -343.19, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3906.12, -0.39, 10728.09 ) LPos=( -371.19, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3906.12, -6.14, 10728.07 ) LPos=( -371.19, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3908.91, -6.13, 10723.04 ) LPos=( -376.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3910.30, -14.74, 10720.50 ) LPos=( -379.81, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3911.70, 2.51, 10718.04 ) LPos=( -382.69, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, -3.24, 10718.02 ) LPos=( -382.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3911.70, -14.74, 10717.99 ) LPos=( -382.69, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3914.48, -8.97, 10712.97 ) LPos=( -388.44, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3915.88, -3.22, 10710.48 ) LPos=( -391.31, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3915.88, -6.09, 10710.47 ) LPos=( -391.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3915.88, -11.84, 10710.45 ) LPos=( -391.31, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3915.88, -14.72, 10710.44 ) LPos=( -391.31, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3899.52, -28.43, 10739.92 ) LPos=( -357.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3898.13, -37.06, 10742.41 ) LPos=( -354.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3898.13, -31.31, 10742.43 ) LPos=( -354.69, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3896.73, -39.94, 10744.92 ) LPos=( -351.81, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3896.73, -28.44, 10744.95 ) LPos=( -351.81, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3896.73, -25.57, 10744.96 ) LPos=( -351.81, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3895.34, -39.95, 10747.43 ) LPos=( -348.94, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3895.34, -37.07, 10747.44 ) LPos=( -348.94, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3892.55, -28.46, 10752.50 ) LPos=( -343.19, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3892.55, -22.71, 10752.51 ) LPos=( -343.19, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3915.88, -22.59, 10710.42 ) LPos=( -391.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3911.70, -25.49, 10717.95 ) LPos=( -382.69, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3914.48, -28.35, 10712.92 ) LPos=( -388.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3913.09, -28.35, 10715.43 ) LPos=( -385.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3906.12, -28.39, 10728.01 ) LPos=( -371.19, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3910.30, -31.24, 10720.45 ) LPos=( -379.81, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3908.91, -34.13, 10722.96 ) LPos=( -376.94, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3907.52, -34.13, 10725.47 ) LPos=( -374.06, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3906.12, -34.14, 10727.99 ) LPos=( -371.19, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3908.91, -37.00, 10722.95 ) LPos=( -376.94, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3907.52, -39.88, 10725.46 ) LPos=( -374.06, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3906.12, -39.89, 10727.97 ) LPos=( -371.19, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3914.48, -42.72, 10712.87 ) LPos=( -388.44, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3907.52, -42.76, 10725.45 ) LPos=( -374.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3899.52, -70.80, 10739.80 ) LPos=( -357.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3893.95, -67.96, 10749.87 ) LPos=( -346.06, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3895.34, -62.20, 10747.37 ) LPos=( -348.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3896.73, -62.19, 10744.85 ) LPos=( -351.81, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3895.34, -59.32, 10747.38 ) LPos=( -348.94, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.73, -59.32, 10744.86 ) LPos=( -351.81, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3900.91, -59.29, 10737.32 ) LPos=( -360.44, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3899.52, -56.43, 10739.84 ) LPos=( -357.56, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3892.55, -53.59, 10752.42 ) LPos=( -343.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3899.52, -53.55, 10739.85 ) LPos=( -357.56, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3896.73, -50.69, 10744.89 ) LPos=( -351.81, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3900.91, -50.67, 10737.34 ) LPos=( -360.44, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3907.52, -65.01, 10725.38 ) LPos=( -374.06, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3910.30, -56.37, 10720.38 ) LPos=( -379.81, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3911.70, -59.24, 10717.86 ) LPos=( -382.69, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3911.69, -70.74, 10717.82 ) LPos=( -382.69, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.09, -59.23, 10715.34 ) LPos=( -385.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3913.09, -70.73, 10715.31 ) LPos=( -385.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3914.48, -53.47, 10712.84 ) LPos=( -388.44, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3914.48, -56.35, 10712.83 ) LPos=( -388.44, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3914.48, -59.22, 10712.83 ) LPos=( -388.44, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3915.88, -50.59, 10710.34 ) LPos=( -391.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3915.87, -67.84, 10710.29 ) LPos=( -391.31, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3900.91, -95.92, 10737.21 ) LPos=( -360.44, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3899.52, -90.18, 10739.74 ) LPos=( -357.56, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3896.73, -95.94, 10744.75 ) LPos=( -351.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3895.34, -93.07, 10747.28 ) LPos=( -348.94, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3893.95, -95.96, 10749.78 ) LPos=( -346.06, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3893.95, -93.08, 10749.79 ) LPos=( -346.06, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3892.55, -95.96, 10752.30 ) LPos=( -343.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3914.48, -78.60, 10712.77 ) LPos=( -388.44, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3913.09, -81.48, 10715.28 ) LPos=( -385.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3908.91, -81.50, 10722.82 ) LPos=( -376.94, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3911.69, -84.36, 10717.78 ) LPos=( -382.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3907.51, -87.26, 10725.32 ) LPos=( -374.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3915.87, -92.96, 10710.21 ) LPos=( -391.31, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3914.48, -92.97, 10712.73 ) LPos=( -388.44, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3913.09, -95.85, 10715.23 ) LPos=( -385.56, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3908.91, -98.75, 10722.77 ) LPos=( -376.94, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3907.51, -98.76, 10725.28 ) LPos=( -374.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3893.94, -115.33, 10749.73 ) LPos=( -346.06, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3896.73, -115.32, 10744.70 ) LPos=( -351.81, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3895.34, -112.45, 10747.22 ) LPos=( -348.94, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3898.12, -112.43, 10742.19 ) LPos=( -354.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3899.52, -112.43, 10739.68 ) LPos=( -357.56, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3895.34, -106.70, 10747.24 ) LPos=( -348.94, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3906.12, -112.39, 10727.76 ) LPos=( -371.19, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3906.12, -115.27, 10727.75 ) LPos=( -371.19, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3907.51, -118.13, 10725.23 ) LPos=( -374.06, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3908.91, -115.25, 10722.72 ) LPos=( -376.94, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3910.30, -120.99, 10720.19 ) LPos=( -379.81, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3911.69, -106.61, 10717.72 ) LPos=( -382.69, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3911.69, -112.36, 10717.70 ) LPos=( -382.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3896.73, -134.69, 10744.64 ) LPos=( -351.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3895.34, -154.82, 10747.10 ) LPos=( -348.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3893.94, -146.21, 10749.64 ) LPos=( -346.06, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3914.48, -140.35, 10712.59 ) LPos=( -388.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3911.69, -143.24, 10717.61 ) LPos=( -382.69, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3911.69, -148.99, 10717.59 ) LPos=( -382.69, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3907.51, -149.01, 10725.14 ) LPos=( -374.06, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3913.09, -151.85, 10715.07 ) LPos=( -385.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3913.09, -154.73, 10715.06 ) LPos=( -385.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3911.69, -154.74, 10717.57 ) LPos=( -382.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3895.34, -182.82, 10747.01 ) LPos=( -348.94, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3893.94, -177.08, 10749.55 ) LPos=( -346.06, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3896.73, -174.19, 10744.53 ) LPos=( -351.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3898.12, -165.56, 10742.04 ) LPos=( -354.69, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3900.91, -165.54, 10737.01 ) LPos=( -360.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3893.94, -162.71, 10749.59 ) LPos=( -346.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3896.73, -162.69, 10744.56 ) LPos=( -351.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.52, -162.68, 10739.53 ) LPos=( -357.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3900.91, -162.67, 10737.01 ) LPos=( -360.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3906.12, -171.27, 10727.59 ) LPos=( -371.19, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3908.91, -174.13, 10722.55 ) LPos=( -376.94, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3910.30, -165.49, 10720.06 ) LPos=( -379.81, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3910.30, -168.37, 10720.05 ) LPos=( -379.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3910.30, -171.24, 10720.04 ) LPos=( -379.81, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3913.09, -168.35, 10715.02 ) LPos=( -385.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3913.09, -171.23, 10715.01 ) LPos=( -385.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3913.08, -174.10, 10715.00 ) LPos=( -385.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3913.08, -176.98, 10714.99 ) LPos=( -385.56, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3914.48, -179.85, 10712.47 ) LPos=( -388.44, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3915.87, -165.46, 10710.00 ) LPos=( -391.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3902.30, -196.41, 10734.40 ) LPos=( -363.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3902.30, -190.66, 10734.42 ) LPos=( -363.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3899.51, -205.05, 10739.40 ) LPos=( -357.56, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3892.55, -207.96, 10751.97 ) LPos=( -343.19, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3914.48, -199.22, 10712.41 ) LPos=( -388.44, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3913.08, -199.23, 10714.93 ) LPos=( -385.56, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3914.48, -202.10, 10712.41 ) LPos=( -388.44, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3914.48, -204.97, 10712.40 ) LPos=( -388.44, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3913.08, -204.98, 10714.91 ) LPos=( -385.56, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3914.39, -221.66, 10712.51 ) LPos=( -388.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3911.48, -221.68, 10717.76 ) LPos=( -382.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3894.03, -221.77, 10749.25 ) LPos=( -346.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3911.48, -239.67, 10717.71 ) LPos=( -382.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3911.48, -257.67, 10717.66 ) LPos=( -382.25, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3911.48, -289.67, 10717.56 ) LPos=( -382.25, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3914.38, -313.66, 10712.24 ) LPos=( -388.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3908.57, -313.69, 10722.74 ) LPos=( -376.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3902.75, -313.72, 10733.24 ) LPos=( -364.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3896.94, -313.75, 10743.73 ) LPos=( -352.25, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3902.75, -319.72, 10733.22 ) LPos=( -364.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3908.57, -339.69, 10722.66 ) LPos=( -376.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3899.84, -339.74, 10738.41 ) LPos=( -358.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3902.75, -345.72, 10733.14 ) LPos=( -364.25, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3899.84, -357.74, 10738.36 ) LPos=( -358.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3914.38, -363.66, 10712.10 ) LPos=( -388.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3911.47, -363.67, 10717.34 ) LPos=( -382.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3905.66, -369.71, 10727.82 ) LPos=( -370.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3902.75, -395.72, 10733.00 ) LPos=( -364.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:257,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3911.47, -475.67, 10717.02 ) LPos=( -382.25, -475.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:257,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3902.75, -519.72, 10732.63 ) LPos=( -364.25, -519.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:257,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3899.84, -543.73, 10737.81 ) LPos=( -358.25, -543.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3887.03, 662.19, 10764.53 ) LPos=( -331.75, 662.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3884.12, 606.18, 10769.61 ) LPos=( -325.75, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.21, 594.16, 10774.83 ) LPos=( -319.75, 594.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3881.21, 582.16, 10774.79 ) LPos=( -319.75, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3869.58, 538.10, 10795.66 ) LPos=( -295.75, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3869.58, 532.10, 10795.64 ) LPos=( -295.75, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3869.58, 526.10, 10795.62 ) LPos=( -295.75, 526.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3869.58, 520.10, 10795.60 ) LPos=( -295.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3866.67, 520.09, 10800.85 ) LPos=( -289.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3869.58, 500.10, 10795.54 ) LPos=( -295.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3869.58, 494.10, 10795.53 ) LPos=( -295.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3875.40, 450.13, 10784.90 ) LPos=( -307.75, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3878.30, 438.15, 10779.62 ) LPos=( -313.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3887.02, 420.19, 10763.82 ) LPos=( -331.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3866.67, 420.09, 10800.56 ) LPos=( -289.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3869.58, 408.10, 10795.27 ) LPos=( -295.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3884.12, 394.18, 10768.99 ) LPos=( -325.75, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3887.02, 352.19, 10763.62 ) LPos=( -331.75, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3887.02, 326.19, 10763.54 ) LPos=( -331.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3881.21, 326.16, 10774.04 ) LPos=( -319.75, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3887.02, 320.19, 10763.53 ) LPos=( -331.75, 320.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3881.21, 320.16, 10774.02 ) LPos=( -319.75, 320.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3887.02, 314.19, 10763.51 ) LPos=( -331.75, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3869.58, 302.10, 10794.96 ) LPos=( -295.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3881.21, 296.16, 10773.95 ) LPos=( -319.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.48, 296.12, 10789.70 ) LPos=( -301.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.30, 282.15, 10779.16 ) LPos=( -313.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3869.57, 282.10, 10794.90 ) LPos=( -295.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3866.67, 282.09, 10800.15 ) LPos=( -289.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3884.11, 276.18, 10768.64 ) LPos=( -325.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3866.67, 276.09, 10800.14 ) LPos=( -289.75, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3878.30, 264.15, 10779.11 ) LPos=( -313.75, 264.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.20, 258.16, 10773.84 ) LPos=( -319.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3881.20, 252.16, 10773.82 ) LPos=( -319.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3884.11, 246.18, 10768.56 ) LPos=( -325.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3872.48, 246.12, 10789.55 ) LPos=( -301.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3866.67, 246.09, 10800.05 ) LPos=( -289.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3884.11, 240.18, 10768.54 ) LPos=( -325.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3878.30, 240.15, 10779.04 ) LPos=( -313.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3867.97, 209.03, 10797.59 ) LPos=( -292.44, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3866.57, 211.90, 10800.11 ) LPos=( -289.56, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, 214.77, 10800.12 ) LPos=( -289.56, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3885.72, 209.12, 10765.55 ) LPos=( -329.06, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3874.93, 201.19, 10784.99 ) LPos=( -306.81, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3873.54, 186.81, 10787.46 ) LPos=( -303.94, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 198.31, 10787.50 ) LPos=( -303.94, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3867.97, 183.91, 10797.51 ) LPos=( -292.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3867.97, 186.78, 10797.52 ) LPos=( -292.44, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3880.14, 189.72, 10775.55 ) LPos=( -317.56, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.32, 181.12, 10767.98 ) LPos=( -326.19, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3881.54, 181.10, 10773.01 ) LPos=( -320.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3873.54, 153.06, 10787.36 ) LPos=( -303.94, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3874.93, 153.07, 10784.85 ) LPos=( -306.81, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 155.94, 10787.37 ) LPos=( -303.94, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3874.93, 155.94, 10784.86 ) LPos=( -306.81, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3865.18, 158.77, 10802.47 ) LPos=( -286.69, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3867.97, 158.78, 10797.44 ) LPos=( -292.44, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3869.36, 158.79, 10794.93 ) LPos=( -295.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3865.18, 161.64, 10802.48 ) LPos=( -286.69, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3874.93, 161.69, 10784.87 ) LPos=( -306.81, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3873.54, 167.44, 10787.41 ) LPos=( -303.94, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3870.75, 173.17, 10792.45 ) LPos=( -298.19, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.15, 173.18, 10789.94 ) LPos=( -301.06, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.14, 158.85, 10775.46 ) LPos=( -317.56, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3882.93, 167.49, 10770.46 ) LPos=( -323.31, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.93, 158.86, 10770.43 ) LPos=( -323.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3882.93, 155.99, 10770.42 ) LPos=( -323.31, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3882.93, 153.11, 10770.42 ) LPos=( -323.31, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3885.71, 167.50, 10765.43 ) LPos=( -329.06, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3885.71, 161.75, 10765.41 ) LPos=( -329.06, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3874.93, 145.19, 10784.83 ) LPos=( -306.81, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3873.54, 139.44, 10787.32 ) LPos=( -303.94, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 142.31, 10787.33 ) LPos=( -303.94, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3872.15, 145.18, 10789.86 ) LPos=( -301.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.36, 133.66, 10794.85 ) LPos=( -295.31, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3869.36, 139.41, 10794.87 ) LPos=( -295.31, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.97, 142.28, 10797.39 ) LPos=( -292.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3866.57, 125.02, 10799.86 ) LPos=( -289.56, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3881.53, 142.35, 10772.90 ) LPos=( -320.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3885.71, 139.50, 10765.35 ) LPos=( -329.06, 139.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3881.53, 133.73, 10772.87 ) LPos=( -320.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3884.32, 130.87, 10767.84 ) LPos=( -326.19, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3881.53, 130.85, 10772.87 ) LPos=( -320.44, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3880.14, 130.85, 10775.38 ) LPos=( -317.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3878.75, 130.84, 10777.90 ) LPos=( -314.69, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3882.93, 127.99, 10770.34 ) LPos=( -323.31, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3881.53, 127.98, 10772.86 ) LPos=( -320.44, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3880.14, 127.97, 10775.37 ) LPos=( -317.56, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3887.11, 125.13, 10762.79 ) LPos=( -331.94, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.32, 125.12, 10767.82 ) LPos=( -326.19, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3882.93, 125.11, 10770.33 ) LPos=( -323.31, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3870.75, 97.05, 10792.23 ) LPos=( -298.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3873.54, 97.06, 10787.20 ) LPos=( -303.94, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, 102.77, 10799.79 ) LPos=( -289.56, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3869.36, 102.79, 10794.76 ) LPos=( -295.31, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3870.75, 102.80, 10792.25 ) LPos=( -298.19, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3873.54, 102.81, 10787.22 ) LPos=( -303.94, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3867.96, 105.66, 10797.28 ) LPos=( -292.44, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3865.18, 108.52, 10802.32 ) LPos=( -286.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3872.14, 108.55, 10789.75 ) LPos=( -301.06, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3866.57, 111.40, 10799.82 ) LPos=( -289.56, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3878.75, 111.46, 10777.84 ) LPos=( -314.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3880.14, 114.35, 10775.33 ) LPos=( -317.56, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.14, 102.85, 10775.30 ) LPos=( -317.56, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3882.93, 114.36, 10770.30 ) LPos=( -323.31, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3882.93, 97.11, 10770.25 ) LPos=( -323.31, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3884.32, 117.24, 10767.80 ) LPos=( -326.19, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3884.32, 105.74, 10767.76 ) LPos=( -326.19, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3884.32, 97.12, 10767.74 ) LPos=( -326.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3885.71, 114.38, 10765.27 ) LPos=( -329.06, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3887.11, 117.26, 10762.77 ) LPos=( -331.94, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3888.50, 108.64, 10760.23 ) LPos=( -334.81, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3874.93, 71.94, 10784.61 ) LPos=( -306.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3874.93, 80.57, 10784.64 ) LPos=( -306.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3874.93, 83.44, 10784.64 ) LPos=( -306.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3870.75, 69.05, 10792.15 ) LPos=( -298.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3867.96, 83.41, 10797.22 ) LPos=( -292.44, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.96, 86.28, 10797.23 ) LPos=( -292.44, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3865.18, 83.39, 10802.25 ) LPos=( -286.69, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3882.93, 89.24, 10770.23 ) LPos=( -323.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3880.14, 89.22, 10775.26 ) LPos=( -317.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3878.75, 89.21, 10777.77 ) LPos=( -314.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3888.50, 86.39, 10760.16 ) LPos=( -334.81, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3888.50, 83.52, 10760.15 ) LPos=( -334.81, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3888.50, 80.64, 10760.14 ) LPos=( -334.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3885.71, 77.75, 10765.16 ) LPos=( -329.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3882.93, 77.74, 10770.19 ) LPos=( -323.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3887.11, 72.01, 10762.63 ) LPos=( -331.94, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.32, 71.99, 10767.66 ) LPos=( -326.19, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3887.11, 69.13, 10762.62 ) LPos=( -331.94, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3869.36, 41.04, 10794.58 ) LPos=( -295.31, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3873.54, 43.94, 10787.04 ) LPos=( -303.94, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, 46.77, 10799.63 ) LPos=( -289.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3865.18, 52.52, 10802.16 ) LPos=( -286.69, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3866.57, 55.40, 10799.65 ) LPos=( -289.56, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3874.93, 55.44, 10784.56 ) LPos=( -306.81, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3870.75, 58.30, 10792.12 ) LPos=( -298.19, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3878.75, 58.34, 10777.68 ) LPos=( -314.69, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3880.14, 43.97, 10775.13 ) LPos=( -317.56, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3880.14, 41.10, 10775.12 ) LPos=( -317.56, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3881.53, 46.85, 10772.62 ) LPos=( -320.44, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3884.32, 58.37, 10767.62 ) LPos=( -326.19, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3884.32, 55.49, 10767.61 ) LPos=( -326.19, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3884.32, 41.12, 10767.57 ) LPos=( -326.19, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3885.71, 61.25, 10765.12 ) LPos=( -329.06, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3885.71, 44.00, 10765.07 ) LPos=( -329.06, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3887.10, 55.51, 10762.58 ) LPos=( -331.94, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3887.10, 46.88, 10762.56 ) LPos=( -331.94, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3888.50, 58.39, 10760.08 ) LPos=( -334.81, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3872.14, 15.93, 10789.48 ) LPos=( -301.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3865.18, 30.27, 10802.09 ) LPos=( -286.69, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3887.10, 33.26, 10762.52 ) LPos=( -331.94, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3885.71, 33.25, 10765.03 ) LPos=( -329.06, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3884.32, 27.49, 10767.53 ) LPos=( -326.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3884.32, 21.74, 10767.52 ) LPos=( -326.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3887.10, 16.01, 10762.47 ) LPos=( -331.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3885.71, 16.00, 10764.98 ) LPos=( -329.06, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.32, 13.12, 10767.49 ) LPos=( -326.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3882.92, 13.11, 10770.00 ) LPos=( -323.31, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3869.35, -14.96, 10794.42 ) LPos=( -295.31, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3870.75, -14.95, 10791.90 ) LPos=( -298.19, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3867.96, -12.09, 10796.94 ) LPos=( -292.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3870.75, -12.08, 10791.91 ) LPos=( -298.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3872.14, -12.07, 10789.39 ) LPos=( -301.06, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3874.93, -12.06, 10784.36 ) LPos=( -306.81, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3865.17, -9.23, 10801.98 ) LPos=( -286.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3866.57, -9.23, 10799.46 ) LPos=( -289.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3869.35, -9.21, 10794.43 ) LPos=( -295.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3870.75, -9.20, 10791.92 ) LPos=( -298.19, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3867.96, -6.34, 10796.96 ) LPos=( -292.44, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.35, -3.46, 10794.45 ) LPos=( -295.31, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3870.75, -3.45, 10791.93 ) LPos=( -298.19, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3865.17, -0.61, 10802.00 ) LPos=( -286.69, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3866.57, -0.60, 10799.49 ) LPos=( -289.56, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3867.96, -0.59, 10796.97 ) LPos=( -292.44, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3872.14, -0.57, 10789.43 ) LPos=( -301.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3873.53, -0.56, 10786.91 ) LPos=( -303.94, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3867.96, 2.28, 10796.98 ) LPos=( -292.44, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3869.35, 2.29, 10794.47 ) LPos=( -295.31, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3873.53, 2.31, 10786.92 ) LPos=( -303.94, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3866.57, 5.15, 10799.50 ) LPos=( -289.56, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3867.96, 5.16, 10796.99 ) LPos=( -292.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3869.35, 5.16, 10794.47 ) LPos=( -295.31, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3870.75, 5.17, 10791.96 ) LPos=( -298.19, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.14, 5.18, 10789.44 ) LPos=( -301.06, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3873.53, 5.19, 10786.93 ) LPos=( -303.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3878.74, -12.04, 10777.48 ) LPos=( -314.69, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.14, -9.15, 10774.97 ) LPos=( -317.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3882.92, -6.26, 10769.95 ) LPos=( -323.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.92, -9.14, 10769.94 ) LPos=( -323.31, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3874.93, -42.93, 10784.27 ) LPos=( -306.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3873.53, -40.06, 10786.80 ) LPos=( -303.94, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3873.53, -22.81, 10786.85 ) LPos=( -303.94, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3872.14, -34.32, 10789.33 ) LPos=( -301.06, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3870.75, -31.45, 10791.85 ) LPos=( -298.19, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.35, -34.34, 10794.36 ) LPos=( -295.31, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.96, -25.72, 10796.90 ) LPos=( -292.44, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3867.96, -22.84, 10796.91 ) LPos=( -292.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3866.57, -34.35, 10799.39 ) LPos=( -289.56, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3865.17, -31.48, 10801.91 ) LPos=( -286.69, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3881.53, -22.77, 10772.41 ) LPos=( -320.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3885.71, -25.62, 10764.86 ) LPos=( -329.06, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3878.74, -25.66, 10777.44 ) LPos=( -314.69, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3887.10, -28.49, 10762.34 ) LPos=( -331.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3882.92, -31.39, 10769.87 ) LPos=( -323.31, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3881.53, -31.40, 10772.39 ) LPos=( -320.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3878.74, -31.41, 10777.42 ) LPos=( -314.69, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3888.50, -34.23, 10759.81 ) LPos=( -334.81, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3887.10, -34.24, 10762.32 ) LPos=( -331.94, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3884.32, -34.26, 10767.35 ) LPos=( -326.19, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3881.53, -37.15, 10772.37 ) LPos=( -320.44, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3888.50, -39.98, 10759.79 ) LPos=( -334.81, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.32, -40.01, 10767.33 ) LPos=( -326.19, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3881.53, -40.02, 10772.36 ) LPos=( -320.44, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3882.92, -42.89, 10769.84 ) LPos=( -323.31, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3880.14, -42.90, 10774.87 ) LPos=( -317.56, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3866.57, -70.97, 10799.28 ) LPos=( -289.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3865.17, -62.36, 10801.82 ) LPos=( -286.69, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3874.93, -59.43, 10784.23 ) LPos=( -306.81, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3870.75, -53.70, 10791.79 ) LPos=( -298.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3874.93, -53.68, 10784.24 ) LPos=( -306.81, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3866.57, -50.85, 10799.34 ) LPos=( -289.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3872.14, -50.82, 10789.28 ) LPos=( -301.06, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.74, -59.41, 10777.34 ) LPos=( -314.69, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3880.14, -50.78, 10774.85 ) LPos=( -317.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3880.13, -65.15, 10774.80 ) LPos=( -317.56, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3880.13, -70.90, 10774.79 ) LPos=( -317.56, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3881.53, -50.77, 10772.33 ) LPos=( -320.44, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3882.92, -50.76, 10769.82 ) LPos=( -323.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.92, -65.14, 10769.78 ) LPos=( -323.31, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3887.10, -50.74, 10762.27 ) LPos=( -331.94, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3887.10, -59.37, 10762.25 ) LPos=( -331.94, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3888.49, -56.48, 10759.74 ) LPos=( -334.81, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3874.92, -90.31, 10784.13 ) LPos=( -306.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3874.92, -84.56, 10784.15 ) LPos=( -306.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3873.53, -93.19, 10786.64 ) LPos=( -303.94, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3870.74, -84.58, 10791.70 ) LPos=( -298.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3870.75, -78.83, 10791.71 ) LPos=( -298.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3869.35, -87.46, 10794.20 ) LPos=( -295.31, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3867.96, -87.47, 10796.72 ) LPos=( -292.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3866.56, -98.97, 10799.20 ) LPos=( -289.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3865.17, -84.61, 10801.76 ) LPos=( -286.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3865.17, -78.86, 10801.77 ) LPos=( -286.69, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3880.13, -78.78, 10774.76 ) LPos=( -317.56, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3882.92, -81.64, 10769.73 ) LPos=( -323.31, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3887.10, -84.49, 10762.17 ) LPos=( -331.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3878.74, -84.54, 10777.26 ) LPos=( -314.69, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3887.10, -90.24, 10762.16 ) LPos=( -331.94, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3882.92, -90.26, 10769.70 ) LPos=( -323.31, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3881.53, -90.27, 10772.22 ) LPos=( -320.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3878.74, -90.29, 10777.25 ) LPos=( -314.69, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3885.71, -93.12, 10764.66 ) LPos=( -329.06, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.31, -96.01, 10767.17 ) LPos=( -326.19, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3882.92, -96.01, 10769.68 ) LPos=( -323.31, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3878.74, -96.04, 10777.23 ) LPos=( -314.69, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3884.31, -98.88, 10767.16 ) LPos=( -326.19, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3880.13, -98.90, 10774.71 ) LPos=( -317.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3865.17, -124.11, 10801.64 ) LPos=( -286.69, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3873.53, -121.19, 10786.56 ) LPos=( -303.94, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3867.96, -115.47, 10796.63 ) LPos=( -292.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3869.35, -112.58, 10794.13 ) LPos=( -295.31, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3878.74, -112.54, 10777.18 ) LPos=( -314.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3881.53, -109.65, 10772.16 ) LPos=( -320.44, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3881.53, -118.27, 10772.13 ) LPos=( -320.44, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3882.92, -118.26, 10769.62 ) LPos=( -323.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3884.31, -106.76, 10767.14 ) LPos=( -326.19, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3884.31, -109.63, 10767.13 ) LPos=( -326.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3888.49, -106.73, 10759.59 ) LPos=( -334.81, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3888.49, -121.11, 10759.55 ) LPos=( -334.81, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3872.14, -149.20, 10788.99 ) LPos=( -301.06, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3870.74, -146.33, 10791.51 ) LPos=( -298.19, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3869.35, -149.21, 10794.02 ) LPos=( -295.31, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3867.96, -154.97, 10796.52 ) LPos=( -292.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3866.56, -154.97, 10799.03 ) LPos=( -289.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3866.56, -146.35, 10799.06 ) LPos=( -289.56, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3865.17, -134.86, 10801.61 ) LPos=( -286.69, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3878.74, -134.79, 10777.12 ) LPos=( -314.69, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3882.92, -140.51, 10769.55 ) LPos=( -323.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3880.13, -140.53, 10774.58 ) LPos=( -317.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3887.10, -149.12, 10761.98 ) LPos=( -331.94, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3884.31, -149.13, 10767.01 ) LPos=( -326.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3878.74, -152.04, 10777.06 ) LPos=( -314.69, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3866.56, -180.10, 10798.96 ) LPos=( -289.56, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3872.14, -180.07, 10788.90 ) LPos=( -301.06, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3874.92, -180.06, 10783.87 ) LPos=( -306.81, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3872.14, -177.19, 10788.91 ) LPos=( -301.06, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3866.56, -174.35, 10798.98 ) LPos=( -289.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3873.53, -174.31, 10786.40 ) LPos=( -303.94, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3869.35, -171.46, 10793.96 ) LPos=( -295.31, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3873.53, -171.44, 10786.41 ) LPos=( -303.94, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3874.92, -168.56, 10783.90 ) LPos=( -306.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3873.53, -165.69, 10786.43 ) LPos=( -303.94, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3873.53, -162.81, 10786.44 ) LPos=( -303.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.74, -171.41, 10777.01 ) LPos=( -314.69, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3878.74, -177.16, 10776.99 ) LPos=( -314.69, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3880.13, -168.53, 10774.50 ) LPos=( -317.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3880.13, -180.03, 10774.47 ) LPos=( -317.56, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3881.52, -171.40, 10771.98 ) LPos=( -320.44, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3882.92, -165.64, 10769.48 ) LPos=( -323.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3882.92, -177.14, 10769.45 ) LPos=( -323.31, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3885.70, -165.62, 10764.45 ) LPos=( -329.06, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3888.49, -165.61, 10759.42 ) LPos=( -334.81, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3873.53, -210.94, 10786.30 ) LPos=( -303.94, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3873.53, -205.19, 10786.31 ) LPos=( -303.94, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3870.74, -205.20, 10791.34 ) LPos=( -298.19, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3869.35, -208.08, 10793.85 ) LPos=( -295.31, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3869.35, -190.83, 10793.90 ) LPos=( -295.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3867.96, -193.72, 10796.41 ) LPos=( -292.44, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3865.17, -193.73, 10801.43 ) LPos=( -286.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3884.31, -208.01, 10766.84 ) LPos=( -326.19, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3878.74, -208.04, 10776.90 ) LPos=( -314.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3880.13, -210.90, 10774.38 ) LPos=( -317.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3884.10, -221.82, 10767.18 ) LPos=( -325.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3881.19, -221.83, 10772.43 ) LPos=( -319.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.28, -221.85, 10777.68 ) LPos=( -313.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3875.37, -221.87, 10782.93 ) LPos=( -307.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3872.47, -221.88, 10788.18 ) LPos=( -301.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3869.56, -221.90, 10793.43 ) LPos=( -295.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3866.65, -221.91, 10798.67 ) LPos=( -289.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3887.01, -227.80, 10761.92 ) LPos=( -331.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3884.10, -227.82, 10767.17 ) LPos=( -325.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3881.19, -227.83, 10772.41 ) LPos=( -319.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3887.01, -233.80, 10761.90 ) LPos=( -331.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3878.28, -233.85, 10777.64 ) LPos=( -313.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3875.37, -233.87, 10782.89 ) LPos=( -307.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3872.47, -233.88, 10788.14 ) LPos=( -301.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3881.19, -239.83, 10772.38 ) LPos=( -319.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3875.37, -239.87, 10782.88 ) LPos=( -307.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3878.28, -245.85, 10777.61 ) LPos=( -313.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3881.19, -251.83, 10772.34 ) LPos=( -319.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3881.19, -257.83, 10772.33 ) LPos=( -319.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3875.37, -263.87, 10782.81 ) LPos=( -307.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3884.10, -277.82, 10767.02 ) LPos=( -325.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3884.10, -283.82, 10767.00 ) LPos=( -325.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3884.10, -289.82, 10766.98 ) LPos=( -325.75, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3875.37, -295.86, 10782.71 ) LPos=( -307.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3869.56, -295.90, 10793.21 ) LPos=( -295.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3872.46, -301.88, 10787.94 ) LPos=( -301.75, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3869.56, -301.90, 10793.19 ) LPos=( -295.75, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3866.65, -301.91, 10798.44 ) LPos=( -289.75, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3869.56, -313.90, 10793.16 ) LPos=( -295.75, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3884.09, -319.82, 10766.90 ) LPos=( -325.75, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3869.56, -333.90, 10793.10 ) LPos=( -295.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3887.00, -339.80, 10761.59 ) LPos=( -331.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3878.28, -357.85, 10777.28 ) LPos=( -313.75, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3869.56, -363.90, 10793.01 ) LPos=( -295.75, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3878.28, -389.85, 10777.19 ) LPos=( -313.75, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.18, -413.83, 10771.87 ) LPos=( -319.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3881.18, -525.83, 10771.54 ) LPos=( -319.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3866.64, -525.91, 10797.78 ) LPos=( -289.75, -525.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3887.00, -531.80, 10761.03 ) LPos=( -331.75, -531.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:263,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3872.46, -537.88, 10787.25 ) LPos=( -301.75, -537.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3848.02, 611.99, 10834.80 ) LPos=( -251.25, 612.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3856.74, 606.03, 10819.04 ) LPos=( -269.25, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3850.93, 606.00, 10829.53 ) LPos=( -257.25, 606.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3842.20, 587.96, 10845.22 ) LPos=( -239.25, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3845.11, 581.97, 10839.96 ) LPos=( -245.25, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3839.30, 581.94, 10850.46 ) LPos=( -233.25, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:264,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3845.11, 531.97, 10839.81 ) LPos=( -245.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3845.11, 437.97, 10839.54 ) LPos=( -245.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3850.92, 432.00, 10829.02 ) LPos=( -257.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3845.11, 431.97, 10839.52 ) LPos=( -245.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3845.11, 419.97, 10839.48 ) LPos=( -245.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.83, 364.02, 10823.57 ) LPos=( -263.25, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3859.64, 308.05, 10812.91 ) LPos=( -275.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3853.82, 276.02, 10823.32 ) LPos=( -263.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3850.92, 276.00, 10828.56 ) LPos=( -257.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3842.19, 257.96, 10844.26 ) LPos=( -239.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3845.10, 251.97, 10838.99 ) LPos=( -245.25, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:265,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3842.19, 245.96, 10844.22 ) LPos=( -239.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3840.59, 208.89, 10847.01 ) LPos=( -235.94, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3841.98, 208.89, 10844.49 ) LPos=( -238.81, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3844.77, 208.91, 10839.46 ) LPos=( -244.56, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3837.80, 211.75, 10852.05 ) LPos=( -230.19, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3840.59, 211.76, 10847.02 ) LPos=( -235.94, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3843.37, 211.78, 10841.99 ) LPos=( -241.69, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3837.80, 214.62, 10852.06 ) LPos=( -230.19, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3840.59, 214.64, 10847.03 ) LPos=( -235.94, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3841.98, 214.64, 10844.51 ) LPos=( -238.81, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3843.37, 214.65, 10842.00 ) LPos=( -241.69, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.77, 214.66, 10839.48 ) LPos=( -244.56, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3839.19, 217.50, 10849.55 ) LPos=( -233.06, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3841.98, 217.52, 10844.52 ) LPos=( -238.81, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3843.37, 217.53, 10842.01 ) LPos=( -241.69, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3847.55, 217.55, 10834.46 ) LPos=( -250.31, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3841.98, 220.39, 10844.53 ) LPos=( -238.81, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3843.37, 220.40, 10842.01 ) LPos=( -241.69, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3840.59, 223.26, 10847.05 ) LPos=( -235.94, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3843.37, 223.28, 10842.02 ) LPos=( -241.69, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3846.16, 223.29, 10836.99 ) LPos=( -247.44, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3847.55, 223.30, 10834.48 ) LPos=( -250.31, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3837.80, 226.12, 10852.09 ) LPos=( -230.19, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3844.77, 226.16, 10839.52 ) LPos=( -244.56, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3844.77, 229.03, 10839.52 ) LPos=( -244.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3851.37, 220.44, 10827.58 ) LPos=( -258.19, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3851.37, 217.57, 10827.57 ) LPos=( -258.19, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3854.16, 208.96, 10822.52 ) LPos=( -263.94, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3855.55, 214.72, 10820.02 ) LPos=( -266.81, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3858.34, 217.61, 10815.00 ) LPos=( -272.56, 217.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3858.34, 211.86, 10814.98 ) LPos=( -272.56, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3859.73, 220.49, 10812.49 ) LPos=( -275.44, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3846.16, 201.04, 10836.93 ) LPos=( -247.44, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3844.77, 192.41, 10839.42 ) LPos=( -244.56, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.77, 195.28, 10839.42 ) LPos=( -244.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3841.98, 186.64, 10844.43 ) LPos=( -238.81, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3841.98, 201.02, 10844.47 ) LPos=( -238.81, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3839.19, 186.63, 10849.46 ) LPos=( -233.06, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3861.12, 201.12, 10809.92 ) LPos=( -278.31, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3859.73, 201.11, 10812.43 ) LPos=( -275.44, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3854.16, 201.08, 10822.49 ) LPos=( -263.94, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3861.12, 195.37, 10809.90 ) LPos=( -278.31, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.12, 186.75, 10809.88 ) LPos=( -278.31, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3859.73, 186.74, 10812.39 ) LPos=( -275.44, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3859.73, 180.99, 10812.38 ) LPos=( -275.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3856.94, 180.97, 10817.41 ) LPos=( -269.69, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3840.59, 164.39, 10846.88 ) LPos=( -235.94, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3855.55, 161.59, 10819.86 ) LPos=( -266.81, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3855.55, 158.72, 10819.85 ) LPos=( -266.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3856.94, 173.10, 10817.38 ) LPos=( -269.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3858.33, 173.11, 10814.87 ) LPos=( -272.56, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3861.12, 158.75, 10809.80 ) LPos=( -278.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3861.12, 155.87, 10809.79 ) LPos=( -278.31, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3861.12, 153.00, 10809.78 ) LPos=( -278.31, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3844.76, 130.66, 10839.24 ) LPos=( -244.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3844.76, 133.53, 10839.24 ) LPos=( -244.56, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3840.58, 142.14, 10846.81 ) LPos=( -235.94, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3839.19, 145.01, 10849.34 ) LPos=( -233.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3837.80, 142.12, 10851.84 ) LPos=( -230.19, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3861.12, 145.12, 10809.76 ) LPos=( -278.31, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3852.76, 145.08, 10824.84 ) LPos=( -261.06, 145.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3852.76, 142.20, 10824.84 ) LPos=( -261.06, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3855.55, 136.47, 10819.79 ) LPos=( -266.81, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3858.33, 130.73, 10814.74 ) LPos=( -272.56, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3837.80, 99.75, 10851.72 ) LPos=( -230.19, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3837.80, 105.50, 10851.74 ) LPos=( -230.19, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3839.19, 114.13, 10849.25 ) LPos=( -233.06, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3859.73, 117.11, 10812.19 ) LPos=( -275.44, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3859.73, 111.36, 10812.17 ) LPos=( -275.44, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3847.55, 77.55, 10834.05 ) LPos=( -250.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3846.16, 71.79, 10836.55 ) LPos=( -247.44, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3846.16, 74.67, 10836.56 ) LPos=( -247.44, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3843.37, 89.03, 10841.63 ) LPos=( -241.69, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3841.98, 71.77, 10844.09 ) LPos=( -238.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3841.98, 80.39, 10844.12 ) LPos=( -238.81, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3841.98, 86.14, 10844.13 ) LPos=( -238.81, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3841.98, 89.02, 10844.14 ) LPos=( -238.81, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3839.19, 71.76, 10849.12 ) LPos=( -233.06, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3839.19, 80.38, 10849.15 ) LPos=( -233.06, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3837.80, 77.50, 10851.65 ) LPos=( -230.19, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3837.80, 83.25, 10851.67 ) LPos=( -230.19, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3858.33, 89.11, 10814.62 ) LPos=( -272.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3861.12, 83.37, 10809.57 ) LPos=( -278.31, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3854.15, 80.46, 10822.14 ) LPos=( -263.94, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3859.72, 77.61, 10812.07 ) LPos=( -275.44, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3855.55, 77.59, 10819.62 ) LPos=( -266.81, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3852.76, 77.58, 10824.65 ) LPos=( -261.06, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3846.16, 52.42, 10836.49 ) LPos=( -247.44, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3839.19, 58.13, 10849.08 ) LPos=( -233.06, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3856.94, 61.10, 10817.05 ) LPos=( -269.69, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3856.94, 43.85, 10817.00 ) LPos=( -269.69, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3859.72, 52.49, 10812.00 ) LPos=( -275.44, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3859.72, 43.86, 10811.97 ) LPos=( -275.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3861.12, 61.12, 10809.51 ) LPos=( -278.31, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3846.15, 24.42, 10836.41 ) LPos=( -247.44, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.76, 27.28, 10838.93 ) LPos=( -244.56, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3841.97, 18.65, 10843.94 ) LPos=( -238.81, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3841.97, 33.02, 10843.98 ) LPos=( -238.81, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3837.79, 12.87, 10851.46 ) LPos=( -230.19, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3855.54, 27.34, 10819.47 ) LPos=( -266.81, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3854.15, 24.46, 10821.98 ) LPos=( -263.94, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3852.76, 24.45, 10824.49 ) LPos=( -261.06, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3861.12, 21.62, 10809.39 ) LPos=( -278.31, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3855.54, 21.59, 10819.45 ) LPos=( -266.81, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3851.36, 21.57, 10827.00 ) LPos=( -258.19, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.12, 18.75, 10809.38 ) LPos=( -278.31, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3852.76, 18.70, 10824.47 ) LPos=( -261.06, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3861.12, 15.87, 10809.38 ) LPos=( -278.31, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, 15.86, 10811.89 ) LPos=( -275.44, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3854.15, 15.83, 10821.95 ) LPos=( -263.94, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3851.36, 15.82, 10826.98 ) LPos=( -258.19, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3846.15, -12.21, 10836.30 ) LPos=( -247.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3840.58, -9.36, 10846.37 ) LPos=( -235.94, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3841.97, -9.35, 10843.85 ) LPos=( -238.81, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3844.76, -3.59, 10838.84 ) LPos=( -244.56, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3844.76, -0.71, 10838.85 ) LPos=( -244.56, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3840.58, 5.01, 10846.41 ) LPos=( -235.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3847.55, 5.05, 10833.84 ) LPos=( -250.31, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3851.36, -0.68, 10826.93 ) LPos=( -258.19, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3851.36, -12.18, 10826.90 ) LPos=( -258.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3854.15, 5.08, 10821.92 ) LPos=( -263.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3854.15, 2.21, 10821.91 ) LPos=( -263.94, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3854.15, -6.42, 10821.88 ) LPos=( -263.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3854.15, -12.17, 10821.87 ) LPos=( -263.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3856.94, 5.10, 10816.89 ) LPos=( -269.69, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3856.94, -3.53, 10816.86 ) LPos=( -269.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3858.33, -12.14, 10814.32 ) LPos=( -272.56, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3859.72, 5.11, 10811.86 ) LPos=( -275.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3859.72, -9.26, 10811.82 ) LPos=( -275.44, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3859.72, -15.01, 10811.80 ) LPos=( -275.44, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3861.12, -6.38, 10809.31 ) LPos=( -278.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3861.12, -12.13, 10809.29 ) LPos=( -278.31, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3861.12, -15.00, 10809.29 ) LPos=( -278.31, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3841.97, -31.60, 10843.79 ) LPos=( -238.81, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3861.12, -22.88, 10809.26 ) LPos=( -278.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3859.72, -22.89, 10811.78 ) LPos=( -275.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3858.33, -22.89, 10814.29 ) LPos=( -272.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3859.72, -25.76, 10811.77 ) LPos=( -275.44, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3858.33, -25.77, 10814.28 ) LPos=( -272.56, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3854.15, -25.79, 10821.83 ) LPos=( -263.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3859.72, -28.64, 10811.76 ) LPos=( -275.44, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3858.33, -28.64, 10814.28 ) LPos=( -272.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3856.94, -28.65, 10816.79 ) LPos=( -269.69, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3854.15, -28.67, 10821.82 ) LPos=( -263.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3861.11, -31.50, 10809.24 ) LPos=( -278.31, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3851.36, -31.56, 10826.84 ) LPos=( -258.19, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3851.36, -34.43, 10826.83 ) LPos=( -258.19, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.11, -37.25, 10809.22 ) LPos=( -278.31, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3856.94, -37.28, 10816.76 ) LPos=( -269.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3852.76, -40.17, 10824.30 ) LPos=( -261.06, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3859.72, -43.01, 10811.72 ) LPos=( -275.44, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3856.93, -43.03, 10816.75 ) LPos=( -269.69, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3852.76, -43.05, 10824.29 ) LPos=( -261.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3851.36, -43.06, 10826.81 ) LPos=( -258.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3840.58, -71.11, 10846.19 ) LPos=( -235.94, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3843.36, -71.10, 10841.16 ) LPos=( -241.69, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3847.54, -71.08, 10833.61 ) LPos=( -250.31, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3844.76, -68.21, 10838.65 ) LPos=( -244.56, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3846.15, -68.21, 10836.14 ) LPos=( -247.44, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3846.15, -65.33, 10836.15 ) LPos=( -247.44, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3844.76, -62.46, 10838.67 ) LPos=( -244.56, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3847.55, -50.95, 10833.67 ) LPos=( -250.31, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3851.36, -53.80, 10826.78 ) LPos=( -258.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3851.36, -56.68, 10826.77 ) LPos=( -258.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3851.36, -62.43, 10826.75 ) LPos=( -258.19, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3852.75, -50.92, 10824.27 ) LPos=( -261.06, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3852.75, -56.67, 10824.25 ) LPos=( -261.06, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3852.75, -62.42, 10824.24 ) LPos=( -261.06, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3852.75, -71.05, 10824.21 ) LPos=( -261.06, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3855.54, -68.16, 10819.19 ) LPos=( -266.81, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3856.93, -68.15, 10816.67 ) LPos=( -269.69, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3858.33, -50.89, 10814.21 ) LPos=( -272.56, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3858.33, -59.52, 10814.18 ) LPos=( -272.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3847.54, -81.82, 10833.58 ) LPos=( -250.31, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3846.15, -96.21, 10836.05 ) LPos=( -247.44, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3846.15, -81.83, 10836.10 ) LPos=( -247.44, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3846.15, -78.96, 10836.11 ) LPos=( -247.44, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3844.76, -84.71, 10838.60 ) LPos=( -244.56, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3841.97, -90.48, 10843.62 ) LPos=( -238.81, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3855.54, -78.91, 10819.16 ) LPos=( -266.81, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3851.36, -78.93, 10826.70 ) LPos=( -258.19, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3854.15, -81.79, 10821.66 ) LPos=( -263.94, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3851.36, -81.80, 10826.69 ) LPos=( -258.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3851.36, -84.68, 10826.68 ) LPos=( -258.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3852.75, -87.55, 10824.16 ) LPos=( -261.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3858.33, -90.39, 10814.09 ) LPos=( -272.56, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3854.15, -90.42, 10821.64 ) LPos=( -263.94, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3859.72, -93.26, 10811.57 ) LPos=( -275.44, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3855.54, -99.03, 10819.10 ) LPos=( -266.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3852.75, -99.05, 10824.13 ) LPos=( -261.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3847.54, -127.07, 10833.45 ) LPos=( -250.31, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3843.36, -115.60, 10841.03 ) LPos=( -241.69, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3847.54, -115.57, 10833.48 ) LPos=( -250.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3839.18, -112.74, 10848.58 ) LPos=( -233.06, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3851.36, -127.05, 10826.56 ) LPos=( -258.19, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3856.93, -115.53, 10816.54 ) LPos=( -269.69, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3858.33, -121.27, 10814.00 ) LPos=( -272.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3858.33, -124.14, 10813.99 ) LPos=( -272.56, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3858.33, -127.02, 10813.99 ) LPos=( -272.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3861.11, -112.63, 10809.00 ) LPos=( -278.31, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3844.76, -146.46, 10838.42 ) LPos=( -244.56, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3844.76, -137.84, 10838.45 ) LPos=( -244.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3843.36, -137.85, 10840.96 ) LPos=( -241.69, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3841.97, -155.10, 10843.43 ) LPos=( -238.81, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3841.97, -152.23, 10843.43 ) LPos=( -238.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3840.58, -140.74, 10845.98 ) LPos=( -235.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3840.58, -137.86, 10845.99 ) LPos=( -235.94, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3837.79, -146.50, 10851.00 ) LPos=( -230.19, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3837.79, -140.75, 10851.01 ) LPos=( -230.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3852.75, -134.92, 10824.02 ) LPos=( -261.06, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3861.11, -140.63, 10808.92 ) LPos=( -278.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3859.72, -140.64, 10811.43 ) LPos=( -275.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3858.33, -140.64, 10813.95 ) LPos=( -272.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3855.54, -140.66, 10818.98 ) LPos=( -266.81, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3851.36, -140.68, 10826.52 ) LPos=( -258.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3859.72, -143.51, 10811.42 ) LPos=( -275.44, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3858.33, -143.52, 10813.94 ) LPos=( -272.56, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3851.36, -143.55, 10826.51 ) LPos=( -258.19, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3858.32, -146.39, 10813.93 ) LPos=( -272.56, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, -152.14, 10811.40 ) LPos=( -275.44, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3861.11, -155.00, 10808.87 ) LPos=( -278.31, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3859.72, -155.01, 10811.39 ) LPos=( -275.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3858.32, -155.02, 10813.90 ) LPos=( -272.56, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3856.93, -155.03, 10816.42 ) LPos=( -269.69, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3844.76, -171.59, 10838.35 ) LPos=( -244.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3843.36, -168.72, 10840.87 ) LPos=( -241.69, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3847.54, -165.82, 10833.34 ) LPos=( -250.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3851.36, -171.55, 10826.43 ) LPos=( -258.19, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3851.36, -174.43, 10826.42 ) LPos=( -258.19, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3852.75, -162.92, 10823.94 ) LPos=( -261.06, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3854.14, -177.29, 10821.38 ) LPos=( -263.94, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3855.54, -174.41, 10818.88 ) LPos=( -266.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3856.93, -180.15, 10816.35 ) LPos=( -269.69, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3858.32, -162.89, 10813.88 ) LPos=( -272.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3858.32, -171.52, 10813.86 ) LPos=( -272.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3858.32, -174.39, 10813.85 ) LPos=( -272.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3858.32, -183.02, 10813.82 ) LPos=( -272.56, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3859.72, -162.89, 10811.37 ) LPos=( -275.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, -165.76, 10811.36 ) LPos=( -275.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3859.72, -168.64, 10811.35 ) LPos=( -275.44, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3859.72, -174.39, 10811.33 ) LPos=( -275.44, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3859.72, -177.26, 10811.32 ) LPos=( -275.44, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3841.97, -205.35, 10843.28 ) LPos=( -238.81, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3839.18, -199.62, 10848.33 ) LPos=( -233.06, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3859.72, -190.89, 10811.28 ) LPos=( -275.44, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3855.54, -190.91, 10818.83 ) LPos=( -266.81, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3858.32, -193.77, 10813.79 ) LPos=( -272.56, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3856.93, -193.78, 10816.31 ) LPos=( -269.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3858.32, -196.64, 10813.78 ) LPos=( -272.56, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3856.93, -196.65, 10816.30 ) LPos=( -269.69, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3855.54, -196.66, 10818.81 ) LPos=( -266.81, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3854.14, -196.66, 10821.33 ) LPos=( -263.94, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3856.93, -199.52, 10816.29 ) LPos=( -269.69, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3861.11, -202.38, 10808.74 ) LPos=( -278.31, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3856.93, -202.40, 10816.28 ) LPos=( -269.69, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3861.11, -205.25, 10808.73 ) LPos=( -278.31, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3854.14, -205.29, 10821.30 ) LPos=( -263.94, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3861.11, -208.13, 10808.72 ) LPos=( -278.31, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3859.72, -208.14, 10811.23 ) LPos=( -275.44, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3861.11, -211.00, 10808.71 ) LPos=( -278.31, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3858.32, -211.02, 10813.74 ) LPos=( -272.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3855.54, -211.03, 10818.77 ) LPos=( -266.81, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3856.72, -221.96, 10816.61 ) LPos=( -269.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3859.62, -227.95, 10811.34 ) LPos=( -275.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3856.72, -227.96, 10816.59 ) LPos=( -269.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3853.81, -227.98, 10821.84 ) LPos=( -263.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3850.90, -227.99, 10827.08 ) LPos=( -257.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3842.18, -228.04, 10842.83 ) LPos=( -239.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3859.62, -233.95, 10811.32 ) LPos=( -275.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3856.72, -233.96, 10816.57 ) LPos=( -269.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3850.90, -233.99, 10827.07 ) LPos=( -257.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3839.27, -234.06, 10848.06 ) LPos=( -233.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3859.62, -239.95, 10811.30 ) LPos=( -275.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3856.72, -239.96, 10816.55 ) LPos=( -269.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3853.81, -239.98, 10821.80 ) LPos=( -263.25, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3859.62, -245.95, 10811.29 ) LPos=( -275.25, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3859.62, -251.95, 10811.27 ) LPos=( -275.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.81, -251.98, 10821.77 ) LPos=( -263.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3842.18, -252.04, 10842.76 ) LPos=( -239.25, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3845.09, -264.02, 10837.48 ) LPos=( -245.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3839.27, -278.06, 10847.93 ) LPos=( -233.25, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3859.62, -295.95, 10811.14 ) LPos=( -275.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3842.18, -296.04, 10842.63 ) LPos=( -239.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.81, -307.98, 10821.60 ) LPos=( -263.25, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3850.90, -307.99, 10826.85 ) LPos=( -257.25, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3853.81, -319.98, 10821.57 ) LPos=( -263.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3845.08, -320.02, 10837.31 ) LPos=( -245.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3842.18, -320.04, 10842.56 ) LPos=( -239.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3853.81, -333.98, 10821.52 ) LPos=( -263.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3839.27, -340.05, 10847.75 ) LPos=( -233.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3847.99, -346.01, 10831.99 ) LPos=( -251.25, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3845.08, -352.02, 10837.22 ) LPos=( -245.25, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3845.08, -358.02, 10837.20 ) LPos=( -245.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3859.62, -363.95, 10810.94 ) LPos=( -275.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3850.90, -363.99, 10826.69 ) LPos=( -257.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3842.17, -364.04, 10842.43 ) LPos=( -239.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3839.27, -364.05, 10847.68 ) LPos=( -233.25, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3856.71, -369.96, 10816.17 ) LPos=( -269.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3842.17, -390.04, 10842.35 ) LPos=( -239.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3839.27, -390.05, 10847.60 ) LPos=( -233.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3853.80, -395.98, 10821.34 ) LPos=( -263.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3847.99, -402.01, 10831.82 ) LPos=( -251.25, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3845.08, -432.02, 10836.98 ) LPos=( -245.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3847.99, -502.01, 10831.53 ) LPos=( -251.25, -501.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3839.26, -520.05, 10847.22 ) LPos=( -233.25, -519.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3839.26, -538.05, 10847.17 ) LPos=( -233.25, -537.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3853.80, -587.98, 10820.78 ) LPos=( -263.25, -587.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3859.61, -625.95, 10810.17 ) LPos=( -275.25, -625.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:269,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3850.89, -655.99, 10825.83 ) LPos=( -257.25, -655.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3820.64, 661.84, 10884.37 ) LPos=( -194.75, 662.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3826.45, 587.87, 10873.65 ) LPos=( -206.75, 588.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3823.55, 581.86, 10878.88 ) LPos=( -200.75, 582.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3829.36, 575.89, 10868.37 ) LPos=( -212.75, 576.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3829.36, 549.89, 10868.29 ) LPos=( -212.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3820.64, 549.84, 10884.04 ) LPos=( -194.75, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3817.73, 537.83, 10889.25 ) LPos=( -188.75, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3826.45, 531.87, 10873.49 ) LPos=( -206.75, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3817.73, 525.83, 10889.22 ) LPos=( -188.75, 526.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3814.82, 525.81, 10894.46 ) LPos=( -182.75, 526.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3832.27, 519.90, 10862.96 ) LPos=( -218.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3829.36, 519.89, 10868.21 ) LPos=( -212.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3826.45, 519.87, 10873.45 ) LPos=( -206.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3823.54, 519.86, 10878.70 ) LPos=( -200.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3814.82, 519.81, 10894.45 ) LPos=( -182.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3811.91, 519.80, 10899.70 ) LPos=( -176.75, 520.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3826.45, 505.87, 10873.41 ) LPos=( -206.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.64, 505.84, 10883.91 ) LPos=( -194.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3817.73, 505.83, 10889.16 ) LPos=( -188.75, 506.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3823.54, 499.86, 10878.64 ) LPos=( -200.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3814.82, 499.81, 10894.39 ) LPos=( -182.75, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3823.54, 493.86, 10878.63 ) LPos=( -200.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3820.64, 493.84, 10883.87 ) LPos=( -194.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3817.73, 493.83, 10889.12 ) LPos=( -188.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3814.82, 493.81, 10894.37 ) LPos=( -182.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3811.91, 493.80, 10899.62 ) LPos=( -176.75, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3817.73, 487.83, 10889.10 ) LPos=( -188.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3811.91, 487.80, 10899.60 ) LPos=( -176.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.82, 481.81, 10894.34 ) LPos=( -182.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3811.91, 481.80, 10899.58 ) LPos=( -176.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3817.73, 437.83, 10888.96 ) LPos=( -188.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3829.36, 431.89, 10867.95 ) LPos=( -212.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3826.45, 425.87, 10873.18 ) LPos=( -206.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3820.63, 407.84, 10883.62 ) LPos=( -194.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3817.72, 387.83, 10888.81 ) LPos=( -188.75, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.82, 369.81, 10894.01 ) LPos=( -182.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.54, 363.86, 10878.24 ) LPos=( -200.75, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3823.54, 357.86, 10878.23 ) LPos=( -200.75, 358.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3820.63, 351.84, 10883.46 ) LPos=( -194.75, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3832.26, 337.91, 10862.42 ) LPos=( -218.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3817.72, 301.83, 10888.56 ) LPos=( -188.75, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.81, 281.81, 10893.75 ) LPos=( -182.75, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3832.26, 257.91, 10862.19 ) LPos=( -218.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3829.35, 257.89, 10867.44 ) LPos=( -212.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.81, 257.81, 10893.68 ) LPos=( -182.75, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.54, 251.86, 10877.92 ) LPos=( -200.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3820.63, 251.84, 10883.16 ) LPos=( -194.75, 252.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3832.26, 245.91, 10862.15 ) LPos=( -218.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3829.35, 245.89, 10867.40 ) LPos=( -212.75, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3832.26, 239.91, 10862.13 ) LPos=( -218.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3826.44, 239.87, 10872.63 ) LPos=( -206.75, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3810.42, 214.48, 10901.48 ) LPos=( -173.69, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3817.39, 214.51, 10888.90 ) LPos=( -188.06, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3813.21, 220.24, 10896.47 ) LPos=( -179.44, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3814.60, 220.25, 10893.95 ) LPos=( -182.31, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3815.99, 223.13, 10891.44 ) LPos=( -185.19, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3820.17, 226.03, 10883.91 ) LPos=( -193.81, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3825.38, 228.93, 10874.51 ) LPos=( -204.56, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3825.38, 223.18, 10874.50 ) LPos=( -204.56, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3825.38, 220.31, 10874.49 ) LPos=( -204.56, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3826.78, 226.06, 10871.99 ) LPos=( -207.44, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3826.78, 208.81, 10871.94 ) LPos=( -207.44, 209.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3829.56, 223.20, 10866.95 ) LPos=( -213.19, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3830.96, 226.09, 10864.45 ) LPos=( -216.06, 226.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3830.96, 214.59, 10864.41 ) LPos=( -216.06, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3832.35, 220.34, 10861.91 ) LPos=( -218.94, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3833.74, 223.23, 10859.41 ) LPos=( -221.81, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3833.74, 220.35, 10859.40 ) LPos=( -221.81, 220.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3833.74, 214.60, 10859.38 ) LPos=( -221.81, 214.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3817.39, 180.76, 10888.80 ) LPos=( -188.06, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3817.39, 189.39, 10888.83 ) LPos=( -188.06, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3814.60, 189.38, 10893.86 ) LPos=( -182.31, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3813.21, 180.74, 10896.35 ) LPos=( -179.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3813.21, 195.12, 10896.39 ) LPos=( -179.44, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3813.21, 197.99, 10896.40 ) LPos=( -179.44, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3813.21, 200.87, 10896.41 ) LPos=( -179.44, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3810.42, 200.85, 10901.44 ) LPos=( -173.69, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3830.95, 200.96, 10864.37 ) LPos=( -216.06, 201.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.74, 183.73, 10859.29 ) LPos=( -221.81, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3832.35, 183.72, 10861.81 ) LPos=( -218.94, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3828.17, 183.70, 10869.35 ) LPos=( -210.31, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3826.77, 183.69, 10871.87 ) LPos=( -207.44, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3820.17, 155.65, 10883.70 ) LPos=( -193.81, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3813.20, 158.49, 10896.28 ) LPos=( -179.44, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3814.60, 158.50, 10893.77 ) LPos=( -182.31, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3811.81, 161.36, 10898.81 ) LPos=( -176.56, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3814.60, 161.38, 10893.78 ) LPos=( -182.31, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3815.99, 161.38, 10891.26 ) LPos=( -185.19, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3811.81, 167.11, 10898.82 ) LPos=( -176.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3813.21, 167.12, 10896.31 ) LPos=( -179.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3817.38, 167.14, 10888.76 ) LPos=( -188.06, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3815.99, 170.01, 10891.29 ) LPos=( -185.19, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3810.42, 172.85, 10901.36 ) LPos=( -173.69, 173.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3823.99, 161.42, 10876.83 ) LPos=( -201.69, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3825.38, 167.18, 10874.33 ) LPos=( -204.56, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3828.17, 164.32, 10869.29 ) LPos=( -210.31, 164.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3830.95, 170.09, 10864.28 ) LPos=( -216.06, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3833.74, 167.23, 10859.24 ) LPos=( -221.81, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3833.74, 158.60, 10859.22 ) LPos=( -221.81, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3820.17, 133.40, 10883.64 ) LPos=( -193.81, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.17, 136.28, 10883.64 ) LPos=( -193.81, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3817.38, 142.02, 10888.69 ) LPos=( -188.06, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3815.99, 124.76, 10891.16 ) LPos=( -185.19, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3814.60, 127.63, 10893.68 ) LPos=( -182.31, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3814.60, 130.50, 10893.69 ) LPos=( -182.31, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.60, 142.00, 10893.72 ) LPos=( -182.31, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3813.20, 133.37, 10896.21 ) LPos=( -179.44, 133.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3813.20, 141.99, 10896.24 ) LPos=( -179.44, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3811.81, 141.99, 10898.75 ) LPos=( -176.56, 142.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3830.95, 130.59, 10864.16 ) LPos=( -216.06, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.74, 127.73, 10859.13 ) LPos=( -221.81, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3830.95, 124.84, 10864.15 ) LPos=( -216.06, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3828.17, 124.82, 10869.18 ) LPos=( -210.31, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3815.99, 96.76, 10891.07 ) LPos=( -185.19, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3820.17, 99.66, 10883.54 ) LPos=( -193.81, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3814.60, 102.50, 10893.60 ) LPos=( -182.31, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3810.42, 108.23, 10901.17 ) LPos=( -173.69, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3815.99, 108.26, 10891.11 ) LPos=( -185.19, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3810.42, 111.10, 10901.17 ) LPos=( -173.69, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3815.99, 114.01, 10891.12 ) LPos=( -185.19, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.99, 96.80, 10876.64 ) LPos=( -201.69, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3829.56, 111.20, 10866.62 ) LPos=( -213.19, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3832.35, 96.84, 10861.55 ) LPos=( -218.94, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3833.74, 114.10, 10859.09 ) LPos=( -221.81, 114.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3833.74, 108.35, 10859.07 ) LPos=( -221.81, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3833.74, 105.48, 10859.06 ) LPos=( -221.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3818.78, 77.40, 10885.99 ) LPos=( -190.94, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3815.99, 68.76, 10890.99 ) LPos=( -185.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3811.81, 83.11, 10898.58 ) LPos=( -176.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3811.81, 88.86, 10898.59 ) LPos=( -176.56, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3825.38, 83.18, 10874.09 ) LPos=( -204.56, 83.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3825.38, 80.31, 10874.08 ) LPos=( -204.56, 80.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3828.16, 77.45, 10869.04 ) LPos=( -210.31, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3823.99, 77.43, 10876.58 ) LPos=( -201.69, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3830.95, 74.59, 10864.00 ) LPos=( -216.06, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.74, 71.73, 10858.96 ) LPos=( -221.81, 72.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3826.77, 68.81, 10871.53 ) LPos=( -207.44, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3817.38, 40.77, 10888.39 ) LPos=( -188.06, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3814.59, 46.50, 10893.44 ) LPos=( -182.31, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3811.81, 60.86, 10898.51 ) LPos=( -176.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3823.98, 43.68, 10876.48 ) LPos=( -201.69, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.98, 40.80, 10876.48 ) LPos=( -201.69, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3825.38, 55.18, 10874.00 ) LPos=( -204.56, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3825.38, 46.56, 10873.98 ) LPos=( -204.56, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3825.38, 40.81, 10873.96 ) LPos=( -204.56, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3828.16, 49.45, 10868.96 ) LPos=( -210.31, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3829.56, 55.20, 10866.46 ) LPos=( -213.19, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3832.34, 40.84, 10861.39 ) LPos=( -218.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3833.74, 49.48, 10858.90 ) LPos=( -221.81, 49.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3833.74, 46.60, 10858.89 ) LPos=( -221.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3813.20, 12.74, 10895.86 ) LPos=( -179.44, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3810.41, 27.10, 10900.93 ) LPos=( -173.69, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3832.34, 30.09, 10861.36 ) LPos=( -218.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.38, 30.06, 10873.93 ) LPos=( -204.56, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:272,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3825.38, 18.56, 10873.90 ) LPos=( -204.56, 18.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3810.41, -3.77, 10900.84 ) LPos=( -173.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3817.38, -0.86, 10888.27 ) LPos=( -188.06, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3813.20, 4.87, 10895.83 ) LPos=( -179.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3823.98, -9.45, 10876.33 ) LPos=( -201.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3825.38, 4.93, 10873.86 ) LPos=( -204.56, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3825.38, 2.06, 10873.85 ) LPos=( -204.56, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3825.38, -9.44, 10873.81 ) LPos=( -204.56, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.38, -12.32, 10873.81 ) LPos=( -204.56, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3825.38, -15.19, 10873.80 ) LPos=( -204.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3826.77, -3.68, 10871.32 ) LPos=( -207.44, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3826.77, -6.56, 10871.31 ) LPos=( -207.44, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3826.77, -12.31, 10871.29 ) LPos=( -207.44, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3829.56, -12.30, 10866.26 ) LPos=( -213.19, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3829.56, -15.17, 10866.25 ) LPos=( -213.19, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3830.95, -9.41, 10863.75 ) LPos=( -216.06, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3830.95, -15.16, 10863.74 ) LPos=( -216.06, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3832.34, -12.28, 10861.23 ) LPos=( -218.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3832.34, -15.16, 10861.22 ) LPos=( -218.94, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3818.77, -31.73, 10885.67 ) LPos=( -190.94, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3818.77, -25.98, 10885.68 ) LPos=( -190.94, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3828.16, -23.05, 10868.74 ) LPos=( -210.31, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.98, -23.07, 10876.29 ) LPos=( -201.69, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3832.34, -28.78, 10861.18 ) LPos=( -218.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3832.34, -31.66, 10861.17 ) LPos=( -218.94, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3833.73, -34.52, 10858.65 ) LPos=( -221.81, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3825.37, -59.69, 10873.67 ) LPos=( -204.56, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3826.77, -65.43, 10871.13 ) LPos=( -207.44, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3828.16, -71.18, 10868.60 ) LPos=( -210.31, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3833.73, -68.27, 10858.55 ) LPos=( -221.81, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3820.16, -99.22, 10882.95 ) LPos=( -193.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3817.38, -81.98, 10888.03 ) LPos=( -188.06, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3830.95, -79.04, 10863.55 ) LPos=( -216.06, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3823.98, -79.07, 10876.12 ) LPos=( -201.69, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3829.55, -81.92, 10866.06 ) LPos=( -213.19, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.37, -81.94, 10873.60 ) LPos=( -204.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3833.73, -84.77, 10858.50 ) LPos=( -221.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3828.16, -84.80, 10868.56 ) LPos=( -210.31, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3823.98, -87.70, 10876.10 ) LPos=( -201.69, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3828.16, -90.55, 10868.55 ) LPos=( -210.31, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3823.98, -90.57, 10876.09 ) LPos=( -201.69, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3833.73, -96.27, 10858.47 ) LPos=( -221.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3830.95, -99.16, 10863.49 ) LPos=( -216.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3818.77, -121.48, 10885.40 ) LPos=( -190.94, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3814.59, -118.62, 10892.96 ) LPos=( -182.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3817.38, -118.61, 10887.93 ) LPos=( -188.06, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3811.80, -112.89, 10898.00 ) LPos=( -176.56, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3823.98, -109.95, 10876.03 ) LPos=( -201.69, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3823.98, -112.82, 10876.02 ) LPos=( -201.69, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3825.37, -121.44, 10873.48 ) LPos=( -204.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3825.37, -124.32, 10873.48 ) LPos=( -204.56, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3826.77, -107.06, 10871.01 ) LPos=( -207.44, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3826.77, -112.81, 10871.00 ) LPos=( -207.44, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3826.77, -124.31, 10870.96 ) LPos=( -207.44, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3826.77, -127.18, 10870.95 ) LPos=( -207.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3829.55, -109.92, 10865.97 ) LPos=( -213.19, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3829.55, -115.67, 10865.96 ) LPos=( -213.19, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3829.55, -124.29, 10865.93 ) LPos=( -213.19, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3830.95, -121.41, 10863.43 ) LPos=( -216.06, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3830.95, -124.29, 10863.42 ) LPos=( -216.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3820.16, -135.09, 10882.85 ) LPos=( -193.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3818.77, -140.85, 10885.35 ) LPos=( -190.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3815.98, -149.49, 10890.35 ) LPos=( -185.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3814.59, -143.75, 10892.88 ) LPos=( -182.31, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3811.80, -152.39, 10897.89 ) LPos=( -176.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3811.80, -135.14, 10897.94 ) LPos=( -176.56, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3828.16, -137.93, 10868.41 ) LPos=( -210.31, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3826.77, -137.93, 10870.92 ) LPos=( -207.44, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3830.94, -140.79, 10863.37 ) LPos=( -216.06, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3828.16, -140.80, 10868.40 ) LPos=( -210.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3826.76, -140.81, 10870.91 ) LPos=( -207.44, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3833.73, -143.65, 10858.33 ) LPos=( -221.81, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3828.16, -146.55, 10868.38 ) LPos=( -210.31, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3826.76, -146.56, 10870.90 ) LPos=( -207.44, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3830.94, -149.41, 10863.34 ) LPos=( -216.06, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3825.37, -152.32, 10873.39 ) LPos=( -204.56, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3823.98, -152.32, 10875.91 ) LPos=( -201.69, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3829.55, -155.17, 10865.84 ) LPos=( -213.19, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3826.76, -155.18, 10870.87 ) LPos=( -207.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3811.80, -183.26, 10897.80 ) LPos=( -176.56, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3813.19, -183.26, 10895.28 ) LPos=( -179.44, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3810.41, -180.40, 10900.32 ) LPos=( -173.69, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3811.80, -180.39, 10897.80 ) LPos=( -176.56, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3813.19, -180.38, 10895.29 ) LPos=( -179.44, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3818.77, -180.35, 10885.23 ) LPos=( -190.94, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3811.80, -171.76, 10897.83 ) LPos=( -176.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3810.41, -168.90, 10900.35 ) LPos=( -173.69, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3811.80, -168.89, 10897.84 ) LPos=( -176.56, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3813.20, -168.88, 10895.32 ) LPos=( -179.44, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3820.16, -168.84, 10882.75 ) LPos=( -193.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3810.41, -166.02, 10900.36 ) LPos=( -173.69, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3813.20, -166.01, 10895.33 ) LPos=( -179.44, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3814.59, -166.00, 10892.82 ) LPos=( -182.31, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3811.80, -163.14, 10897.85 ) LPos=( -176.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3813.20, -163.13, 10895.34 ) LPos=( -179.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3818.77, -163.10, 10885.28 ) LPos=( -190.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3814.59, -191.12, 10892.74 ) LPos=( -182.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3813.19, -194.01, 10895.25 ) LPos=( -179.44, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3813.19, -191.13, 10895.26 ) LPos=( -179.44, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3810.41, -202.65, 10900.25 ) LPos=( -173.69, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3830.94, -199.66, 10863.20 ) LPos=( -216.06, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:273,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3825.37, -211.19, 10873.22 ) LPos=( -204.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.61, -222.15, 10881.77 ) LPos=( -194.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.80, -222.18, 10892.27 ) LPos=( -182.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3811.89, -222.20, 10897.52 ) LPos=( -176.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3826.43, -228.12, 10871.26 ) LPos=( -206.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3823.52, -228.14, 10876.51 ) LPos=( -200.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3814.80, -228.18, 10892.25 ) LPos=( -182.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3829.34, -234.11, 10865.99 ) LPos=( -212.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3811.89, -234.20, 10897.48 ) LPos=( -176.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3817.71, -240.17, 10886.97 ) LPos=( -188.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3814.80, -246.18, 10892.20 ) LPos=( -182.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.52, -252.14, 10876.44 ) LPos=( -200.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3814.80, -252.18, 10892.18 ) LPos=( -182.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3832.24, -284.09, 10860.60 ) LPos=( -218.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3811.89, -284.20, 10897.34 ) LPos=( -176.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3811.89, -308.20, 10897.27 ) LPos=( -176.75, -307.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3820.61, -314.15, 10881.50 ) LPos=( -194.75, -313.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.80, -334.18, 10891.94 ) LPos=( -182.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3811.89, -340.20, 10897.17 ) LPos=( -176.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3811.89, -352.20, 10897.14 ) LPos=( -176.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3823.52, -364.14, 10876.11 ) LPos=( -200.75, -363.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3832.24, -370.09, 10860.34 ) LPos=( -218.75, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3826.42, -376.12, 10870.82 ) LPos=( -206.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3823.52, -376.14, 10876.07 ) LPos=( -200.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3814.79, -376.18, 10891.82 ) LPos=( -182.75, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3814.79, -390.18, 10891.78 ) LPos=( -182.75, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3826.42, -396.12, 10870.77 ) LPos=( -206.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3820.61, -396.15, 10881.26 ) LPos=( -194.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3811.89, -396.20, 10897.01 ) LPos=( -176.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3829.33, -402.11, 10865.50 ) LPos=( -212.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3826.42, -402.12, 10870.75 ) LPos=( -206.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3823.52, -402.14, 10876.00 ) LPos=( -200.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3823.52, -408.14, 10875.98 ) LPos=( -200.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3817.70, -414.17, 10886.46 ) LPos=( -188.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3811.89, -414.20, 10896.95 ) LPos=( -176.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3814.79, -420.18, 10891.69 ) LPos=( -182.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3811.89, -420.20, 10896.94 ) LPos=( -176.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:275,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3820.60, -558.15, 10880.79 ) LPos=( -194.75, -557.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:275,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3829.32, -650.11, 10864.77 ) LPos=( -212.75, -649.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3787.44, 555.67, 10943.97 ) LPos=( -126.25, 556.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3787.44, 549.67, 10943.96 ) LPos=( -126.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3784.53, 549.65, 10949.21 ) LPos=( -120.25, 550.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3787.44, 543.67, 10943.94 ) LPos=( -126.25, 544.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3787.44, 537.67, 10943.92 ) LPos=( -126.25, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 537.65, 10949.17 ) LPos=( -120.25, 538.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3787.44, 531.67, 10943.90 ) LPos=( -126.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3784.53, 531.65, 10949.15 ) LPos=( -120.25, 532.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3804.89, 499.76, 10912.32 ) LPos=( -162.25, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3801.98, 499.74, 10917.57 ) LPos=( -156.25, 500.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3801.98, 493.74, 10917.55 ) LPos=( -156.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3799.07, 487.73, 10922.78 ) LPos=( -150.25, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3793.25, 481.70, 10933.26 ) LPos=( -138.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3787.44, 481.67, 10943.76 ) LPos=( -126.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 481.65, 10949.01 ) LPos=( -120.25, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3796.16, 443.71, 10927.90 ) LPos=( -144.25, 444.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3801.98, 437.75, 10917.39 ) LPos=( -156.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3790.35, 431.68, 10938.36 ) LPos=( -132.25, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3801.98, 425.75, 10917.35 ) LPos=( -156.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 425.65, 10948.84 ) LPos=( -120.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3799.07, 419.73, 10922.58 ) LPos=( -150.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3796.16, 419.71, 10927.83 ) LPos=( -144.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3799.07, 407.73, 10922.55 ) LPos=( -150.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3796.16, 407.71, 10927.80 ) LPos=( -144.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3793.25, 407.70, 10933.04 ) LPos=( -138.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3790.34, 393.68, 10938.25 ) LPos=( -132.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3787.44, 393.67, 10943.50 ) LPos=( -126.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3790.34, 387.68, 10938.23 ) LPos=( -132.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3787.44, 387.67, 10943.48 ) LPos=( -126.25, 388.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3787.44, 381.67, 10943.46 ) LPos=( -126.25, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3784.53, 375.65, 10948.69 ) LPos=( -120.25, 376.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3799.07, 369.73, 10922.44 ) LPos=( -150.25, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3796.16, 357.71, 10927.65 ) LPos=( -144.25, 358.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.44, 351.67, 10943.38 ) LPos=( -126.25, 352.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3787.44, 337.67, 10943.33 ) LPos=( -126.25, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3790.34, 325.68, 10938.05 ) LPos=( -132.25, 326.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3804.88, 313.76, 10911.77 ) LPos=( -162.25, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.53, 313.65, 10948.51 ) LPos=( -120.25, 314.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3801.97, 307.75, 10917.01 ) LPos=( -156.25, 308.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3793.25, 301.70, 10932.73 ) LPos=( -138.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3790.34, 301.68, 10937.98 ) LPos=( -132.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3787.43, 301.67, 10943.23 ) LPos=( -126.25, 302.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3784.53, 275.65, 10948.40 ) LPos=( -120.25, 276.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3804.88, 269.76, 10911.65 ) LPos=( -162.25, 270.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3796.16, 257.72, 10927.35 ) LPos=( -144.25, 258.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3799.06, 245.73, 10922.07 ) LPos=( -150.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3787.43, 245.67, 10943.06 ) LPos=( -126.25, 246.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3790.34, 239.68, 10937.80 ) LPos=( -132.25, 240.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3792.79, 211.51, 10933.29 ) LPos=( -137.31, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3792.79, 223.01, 10933.32 ) LPos=( -137.31, 223.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3785.83, 228.72, 10945.91 ) LPos=( -122.94, 229.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3791.40, 192.13, 10935.75 ) LPos=( -134.44, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3790.01, 195.00, 10938.27 ) LPos=( -131.56, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3784.43, 186.34, 10948.30 ) LPos=( -120.06, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3799.39, 197.92, 10921.33 ) LPos=( -150.94, 198.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3796.61, 195.03, 10926.35 ) LPos=( -145.19, 195.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3798.00, 192.16, 10923.83 ) LPos=( -148.06, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3806.36, 189.33, 10908.73 ) LPos=( -165.31, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3803.57, 189.32, 10913.76 ) LPos=( -159.56, 189.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3799.39, 186.42, 10921.30 ) LPos=( -150.94, 186.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3783.04, 152.58, 10950.72 ) LPos=( -117.19, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3787.22, 155.48, 10943.18 ) LPos=( -125.81, 156.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3799.39, 158.42, 10921.21 ) LPos=( -150.94, 158.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3802.18, 161.31, 10916.19 ) LPos=( -156.69, 161.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3804.97, 167.07, 10911.18 ) LPos=( -162.44, 167.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3806.36, 169.96, 10908.67 ) LPos=( -165.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3784.43, 127.47, 10948.13 ) LPos=( -120.06, 128.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3806.36, 130.46, 10908.56 ) LPos=( -165.31, 130.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3804.97, 124.70, 10911.06 ) LPos=( -162.44, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3798.00, 124.66, 10923.63 ) LPos=( -148.06, 125.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3785.82, 96.60, 10945.52 ) LPos=( -122.94, 97.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3791.40, 102.38, 10935.48 ) LPos=( -134.44, 102.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3798.00, 116.79, 10923.61 ) LPos=( -148.06, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3798.00, 111.04, 10923.59 ) LPos=( -148.06, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3802.18, 105.31, 10916.03 ) LPos=( -156.69, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3804.97, 116.82, 10911.03 ) LPos=( -162.44, 117.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3806.36, 111.08, 10908.50 ) LPos=( -165.31, 111.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3788.61, 85.86, 10940.46 ) LPos=( -128.69, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3804.96, 88.82, 10910.95 ) LPos=( -162.44, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3799.39, 88.80, 10921.01 ) LPos=( -150.94, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3803.57, 85.94, 10913.46 ) LPos=( -159.56, 86.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3800.78, 77.30, 10918.46 ) LPos=( -153.81, 77.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3802.18, 74.44, 10915.94 ) LPos=( -156.69, 74.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3802.18, 68.69, 10915.92 ) LPos=( -156.69, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3791.39, 43.50, 10935.31 ) LPos=( -134.44, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3798.00, 52.16, 10923.42 ) LPos=( -148.06, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3799.39, 57.92, 10920.92 ) LPos=( -150.94, 58.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3799.39, 52.17, 10920.90 ) LPos=( -150.94, 52.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3800.78, 46.43, 10918.37 ) LPos=( -153.81, 46.90, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3806.36, 55.08, 10908.34 ) LPos=( -165.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3783.03, 24.08, 10950.34 ) LPos=( -117.19, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3783.03, 26.96, 10950.35 ) LPos=( -117.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3803.57, 32.82, 10913.30 ) LPos=( -159.56, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3802.18, 27.06, 10915.80 ) LPos=( -156.69, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3798.00, 27.04, 10923.34 ) LPos=( -148.06, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3800.78, 24.18, 10918.30 ) LPos=( -153.81, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:278,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3796.60, 24.16, 10925.85 ) LPos=( -145.19, 24.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3784.43, -9.66, 10947.73 ) LPos=( -120.06, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3785.82, -3.90, 10945.23 ) LPos=( -122.94, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3787.21, -1.02, 10942.72 ) LPos=( -125.81, -0.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3791.39, 4.75, 10935.20 ) LPos=( -134.44, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3796.60, 1.91, 10925.78 ) LPos=( -145.19, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3798.00, 1.91, 10923.27 ) LPos=( -148.06, 2.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3800.78, -9.57, 10918.21 ) LPos=( -153.81, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3803.57, -6.68, 10913.18 ) LPos=( -159.56, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3806.35, -12.42, 10908.14 ) LPos=( -165.31, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3790.00, -29.00, 10937.61 ) LPos=( -131.56, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3788.61, -34.76, 10940.11 ) LPos=( -128.69, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3787.21, -43.39, 10942.60 ) LPos=( -125.81, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3787.21, -29.02, 10942.64 ) LPos=( -125.81, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3785.82, -29.03, 10945.16 ) LPos=( -122.94, -28.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3796.60, -26.09, 10925.70 ) LPos=( -145.19, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3806.35, -34.67, 10908.07 ) LPos=( -165.31, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3802.17, -37.56, 10915.61 ) LPos=( -156.69, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3802.17, -40.44, 10915.60 ) LPos=( -156.69, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3785.82, -71.40, 10945.03 ) LPos=( -122.94, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3788.60, -68.51, 10940.01 ) LPos=( -128.69, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3787.21, -62.77, 10942.54 ) LPos=( -125.81, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3791.39, -62.75, 10935.00 ) LPos=( -134.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3788.60, -57.01, 10940.04 ) LPos=( -128.69, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3790.00, -57.00, 10937.53 ) LPos=( -131.56, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3785.82, -51.28, 10945.09 ) LPos=( -122.94, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3803.57, -65.56, 10913.01 ) LPos=( -159.56, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3792.78, -96.49, 10932.38 ) LPos=( -137.31, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3792.78, -79.24, 10932.43 ) LPos=( -137.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3791.39, -93.62, 10934.91 ) LPos=( -134.44, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3791.39, -90.75, 10934.92 ) LPos=( -134.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3790.00, -87.88, 10937.44 ) LPos=( -131.56, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3788.60, -87.89, 10939.95 ) LPos=( -128.69, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3788.60, -79.26, 10939.98 ) LPos=( -128.69, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3806.35, -79.17, 10907.94 ) LPos=( -165.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3797.99, -82.09, 10923.02 ) LPos=( -148.06, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3797.99, -84.96, 10923.01 ) LPos=( -148.06, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3799.39, -87.83, 10920.49 ) LPos=( -150.94, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3797.99, -87.84, 10923.01 ) LPos=( -148.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3800.78, -93.57, 10917.96 ) LPos=( -153.81, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3800.78, -96.45, 10917.95 ) LPos=( -153.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3800.78, -99.32, 10917.94 ) LPos=( -153.81, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3784.42, -110.16, 10947.43 ) LPos=( -120.06, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3783.03, -107.29, 10949.96 ) LPos=( -117.19, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3797.99, -121.59, 10922.91 ) LPos=( -148.06, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3800.78, -107.20, 10917.92 ) LPos=( -153.81, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3791.39, -146.75, 10934.75 ) LPos=( -134.44, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3785.82, -152.52, 10944.79 ) LPos=( -122.94, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3799.38, -143.83, 10920.33 ) LPos=( -150.94, -143.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3799.38, -146.70, 10920.32 ) LPos=( -150.94, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3796.60, -152.47, 10925.33 ) LPos=( -145.19, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3785.81, -183.40, 10944.70 ) LPos=( -122.94, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3788.60, -183.39, 10939.67 ) LPos=( -128.69, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3789.99, -183.38, 10937.16 ) LPos=( -131.56, -182.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3787.21, -177.64, 10942.21 ) LPos=( -125.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3784.42, -171.91, 10947.25 ) LPos=( -120.06, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3785.81, -169.02, 10944.75 ) LPos=( -122.94, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3787.21, -169.02, 10942.23 ) LPos=( -125.81, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3783.03, -166.16, 10949.78 ) LPos=( -117.19, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3787.21, -163.27, 10942.25 ) LPos=( -125.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3789.99, -163.25, 10937.22 ) LPos=( -131.56, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3796.60, -171.84, 10925.27 ) LPos=( -145.19, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3800.78, -163.20, 10917.75 ) LPos=( -153.81, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3800.78, -174.70, 10917.72 ) LPos=( -153.81, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3802.17, -174.69, 10915.21 ) LPos=( -156.69, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3803.56, -166.06, 10912.72 ) LPos=( -159.56, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3803.56, -171.81, 10912.70 ) LPos=( -159.56, -171.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3803.56, -174.68, 10912.69 ) LPos=( -159.56, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3806.35, -177.54, 10907.65 ) LPos=( -165.31, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3792.78, -211.36, 10932.05 ) LPos=( -137.31, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3792.78, -196.99, 10932.09 ) LPos=( -137.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3791.39, -205.62, 10934.58 ) LPos=( -134.44, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3791.39, -199.87, 10934.60 ) LPos=( -134.44, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3789.99, -202.75, 10937.10 ) LPos=( -131.56, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3788.60, -194.13, 10939.64 ) LPos=( -128.69, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3787.21, -199.89, 10942.14 ) LPos=( -125.81, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3787.21, -197.02, 10942.15 ) LPos=( -125.81, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3785.81, -208.52, 10944.63 ) LPos=( -122.94, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3785.81, -205.65, 10944.64 ) LPos=( -122.94, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3785.81, -197.02, 10944.66 ) LPos=( -122.94, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3784.42, -208.53, 10947.14 ) LPos=( -120.06, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3784.42, -197.03, 10947.18 ) LPos=( -120.06, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3803.56, -194.06, 10912.63 ) LPos=( -159.56, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3796.60, -194.09, 10925.21 ) LPos=( -145.19, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3799.38, -202.70, 10920.15 ) LPos=( -150.94, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3802.17, -205.56, 10915.12 ) LPos=( -156.69, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3804.96, -208.42, 10910.08 ) LPos=( -162.44, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3802.17, -208.44, 10915.11 ) LPos=( -156.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3796.60, -208.47, 10925.17 ) LPos=( -145.19, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3804.96, -211.30, 10910.07 ) LPos=( -162.44, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3803.56, -211.31, 10912.58 ) LPos=( -159.56, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3797.99, -211.34, 10922.64 ) LPos=( -148.06, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3799.05, -222.27, 10920.70 ) LPos=( -150.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3793.23, -222.30, 10931.19 ) LPos=( -138.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3787.42, -222.33, 10941.69 ) LPos=( -126.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3804.86, -228.24, 10910.18 ) LPos=( -162.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3796.14, -228.28, 10925.93 ) LPos=( -144.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3793.23, -228.30, 10931.18 ) LPos=( -138.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3796.14, -234.28, 10925.91 ) LPos=( -144.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3784.51, -246.34, 10946.87 ) LPos=( -120.25, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3801.96, -264.25, 10915.33 ) LPos=( -156.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3790.32, -278.31, 10936.28 ) LPos=( -132.25, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3784.51, -290.34, 10946.74 ) LPos=( -120.25, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3793.23, -296.30, 10930.98 ) LPos=( -138.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3799.05, -302.27, 10920.46 ) LPos=( -150.25, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.42, -320.33, 10941.40 ) LPos=( -126.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3784.51, -320.34, 10946.65 ) LPos=( -120.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3799.05, -334.27, 10920.37 ) LPos=( -150.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3787.41, -358.33, 10941.29 ) LPos=( -126.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3799.04, -370.27, 10920.26 ) LPos=( -150.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3793.23, -370.30, 10930.76 ) LPos=( -138.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3790.32, -370.31, 10936.01 ) LPos=( -132.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3784.51, -370.34, 10946.51 ) LPos=( -120.25, -369.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.41, -376.33, 10941.24 ) LPos=( -126.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3784.51, -376.34, 10946.49 ) LPos=( -120.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3799.04, -396.27, 10920.19 ) LPos=( -150.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3804.86, -408.24, 10909.66 ) LPos=( -162.25, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3801.95, -420.25, 10914.87 ) LPos=( -156.25, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3804.86, -426.24, 10909.60 ) LPos=( -162.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3799.04, -426.27, 10920.10 ) LPos=( -150.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3796.14, -426.28, 10925.35 ) LPos=( -144.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3793.23, -426.30, 10930.60 ) LPos=( -138.25, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3799.04, -432.27, 10920.08 ) LPos=( -150.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3796.13, -432.28, 10925.33 ) LPos=( -144.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3793.23, -432.30, 10930.58 ) LPos=( -138.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3790.32, -432.31, 10935.83 ) LPos=( -132.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3784.50, -432.34, 10946.32 ) LPos=( -120.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:281,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3796.13, -452.28, 10925.27 ) LPos=( -144.25, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:281,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3787.41, -488.33, 10940.91 ) LPos=( -126.25, -487.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:281,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3793.22, -582.30, 10930.14 ) LPos=( -138.25, -581.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:281,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3801.95, -600.25, 10914.34 ) LPos=( -156.25, -599.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:281,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3804.85, -656.23, 10908.93 ) LPos=( -162.25, -655.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:282,00 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3777.51, 673.62, 10962.25 ) LPos=( -105.75, 674.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:282,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3760.06, 543.52, 10993.36 ) LPos=( -69.75, 544.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:282,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3771.69, 487.59, 10972.20 ) LPos=( -93.75, 488.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:282,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3760.06, 481.52, 10993.18 ) LPos=( -69.75, 482.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3777.50, 449.62, 10961.60 ) LPos=( -105.75, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3777.50, 437.62, 10961.56 ) LPos=( -105.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3771.69, 437.59, 10972.06 ) LPos=( -93.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3765.87, 437.55, 10982.55 ) LPos=( -81.75, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3777.50, 431.62, 10961.54 ) LPos=( -105.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3774.60, 431.60, 10966.79 ) LPos=( -99.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3771.69, 431.59, 10972.04 ) LPos=( -93.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3757.15, 431.51, 10998.28 ) LPos=( -63.75, 432.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3777.50, 425.62, 10961.53 ) LPos=( -105.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3774.60, 425.60, 10966.77 ) LPos=( -99.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3771.69, 425.59, 10972.02 ) LPos=( -93.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3768.78, 425.57, 10977.27 ) LPos=( -87.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3762.97, 425.54, 10987.77 ) LPos=( -75.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3757.15, 425.51, 10998.26 ) LPos=( -63.75, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3777.50, 419.62, 10961.51 ) LPos=( -105.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,5 Anode:45 } GPos=( -3771.69, 419.59, 10972.00 ) LPos=( -93.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3762.96, 419.54, 10987.75 ) LPos=( -75.75, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3777.50, 413.62, 10961.49 ) LPos=( -105.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3774.60, 413.60, 10966.74 ) LPos=( -99.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3771.69, 413.59, 10971.99 ) LPos=( -93.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3768.78, 413.57, 10977.23 ) LPos=( -87.75, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3777.50, 407.62, 10961.47 ) LPos=( -105.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3774.60, 407.60, 10966.72 ) LPos=( -99.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3771.69, 407.59, 10971.97 ) LPos=( -93.75, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3777.50, 381.62, 10961.40 ) LPos=( -105.75, 382.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3774.59, 369.60, 10966.61 ) LPos=( -99.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3768.78, 369.57, 10977.11 ) LPos=( -87.75, 370.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3774.59, 363.60, 10966.59 ) LPos=( -99.75, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3757.15, 363.51, 10998.08 ) LPos=( -63.75, 364.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.05, 337.52, 10992.76 ) LPos=( -69.75, 338.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3771.68, 295.59, 10971.64 ) LPos=( -93.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:283,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3757.15, 295.51, 10997.88 ) LPos=( -63.75, 296.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3774.80, 211.42, 10965.76 ) LPos=( -100.19, 212.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3765.41, 191.99, 10982.65 ) LPos=( -80.81, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3758.44, 180.45, 10995.19 ) LPos=( -66.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3758.44, 152.45, 10995.11 ) LPos=( -66.44, 153.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3776.19, 136.05, 10963.03 ) LPos=( -103.06, 136.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.62, 99.39, 10972.98 ) LPos=( -91.56, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3776.19, 108.05, 10962.94 ) LPos=( -103.06, 108.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3776.19, 99.42, 10962.92 ) LPos=( -103.06, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3774.80, 88.67, 10965.40 ) LPos=( -100.19, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3774.80, 68.54, 10965.34 ) LPos=( -100.19, 69.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3764.01, 40.48, 10984.72 ) LPos=( -77.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3770.62, 60.64, 10972.86 ) LPos=( -91.56, 61.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.62, 43.39, 10972.81 ) LPos=( -91.56, 44.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3773.40, 54.91, 10967.82 ) LPos=( -97.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3764.01, 32.61, 10984.70 ) LPos=( -77.94, 33.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3777.58, 29.81, 10960.20 ) LPos=( -105.94, 30.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3774.80, 26.92, 10965.22 ) LPos=( -100.19, 27.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:284,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3777.58, 12.56, 10960.15 ) LPos=( -105.94, 13.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3764.01, -9.77, 10984.58 ) LPos=( -77.94, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3759.83, -6.91, 10992.13 ) LPos=( -69.31, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -6.89, 10984.58 ) LPos=( -77.94, -6.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3769.22, -3.99, 10975.19 ) LPos=( -88.69, -3.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3769.22, -9.74, 10975.17 ) LPos=( -88.69, -9.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.61, -12.61, 10972.65 ) LPos=( -91.56, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3777.58, 4.68, 10960.13 ) LPos=( -105.94, 5.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3777.58, -12.57, 10960.07 ) LPos=( -105.94, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3764.01, -34.89, 10984.50 ) LPos=( -77.94, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3761.22, -43.53, 10989.51 ) LPos=( -72.19, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3758.44, -34.92, 10994.56 ) LPos=( -66.44, -34.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3757.04, -40.68, 10997.06 ) LPos=( -63.56, -39.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3772.01, -23.35, 10970.10 ) LPos=( -94.44, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3770.61, -23.36, 10972.62 ) LPos=( -91.56, -22.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.61, -26.23, 10972.61 ) LPos=( -91.56, -25.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3770.61, -31.98, 10972.59 ) LPos=( -91.56, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3773.40, -37.72, 10967.55 ) LPos=( -97.31, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3772.01, -37.72, 10970.06 ) LPos=( -94.44, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3758.44, -71.54, 10994.45 ) LPos=( -66.44, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3759.83, -71.54, 10991.94 ) LPos=( -69.31, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3758.44, -68.67, 10994.46 ) LPos=( -66.44, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3758.44, -62.92, 10994.48 ) LPos=( -66.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -62.89, 10984.42 ) LPos=( -77.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3765.40, -62.88, 10981.90 ) LPos=( -80.81, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3755.65, -54.31, 10999.53 ) LPos=( -60.69, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3769.22, -59.99, 10975.02 ) LPos=( -88.69, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3772.01, -62.85, 10969.99 ) LPos=( -94.44, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3773.40, -54.22, 10967.50 ) LPos=( -97.31, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3774.79, -51.33, 10964.99 ) LPos=( -100.19, -50.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3774.79, -54.21, 10964.98 ) LPos=( -100.19, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3774.79, -57.08, 10964.97 ) LPos=( -100.19, -56.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3774.79, -59.96, 10964.97 ) LPos=( -100.19, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,5 Anode:46 } GPos=( -3776.19, -54.20, 10962.47 ) LPos=( -103.06, -53.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3776.19, -59.95, 10962.45 ) LPos=( -103.06, -59.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3776.19, -65.70, 10962.43 ) LPos=( -103.06, -65.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3776.19, -68.58, 10962.43 ) LPos=( -103.06, -67.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3776.19, -71.45, 10962.42 ) LPos=( -103.06, -70.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3765.40, -96.63, 10981.81 ) LPos=( -80.81, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3764.01, -85.14, 10984.35 ) LPos=( -77.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3762.62, -99.52, 10986.83 ) LPos=( -75.06, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3762.62, -90.90, 10986.85 ) LPos=( -75.06, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3762.62, -88.02, 10986.86 ) LPos=( -75.06, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3762.62, -79.40, 10986.89 ) LPos=( -75.06, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3761.22, -88.03, 10989.38 ) LPos=( -72.19, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3761.22, -85.15, 10989.38 ) LPos=( -72.19, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3757.04, -88.05, 10996.92 ) LPos=( -63.56, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3757.04, -82.30, 10996.94 ) LPos=( -63.56, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3755.65, -99.56, 10999.40 ) LPos=( -60.69, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3755.65, -96.68, 10999.41 ) LPos=( -60.69, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3777.58, -79.32, 10959.88 ) LPos=( -105.94, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3769.22, -82.24, 10974.96 ) LPos=( -88.69, -81.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3777.58, -85.07, 10959.86 ) LPos=( -105.94, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3772.01, -87.97, 10969.91 ) LPos=( -94.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3777.58, -90.82, 10959.85 ) LPos=( -105.94, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3774.79, -90.83, 10964.87 ) LPos=( -100.19, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3773.40, -99.47, 10967.36 ) LPos=( -97.31, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3765.40, -127.51, 10981.72 ) LPos=( -80.81, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3762.62, -124.65, 10986.75 ) LPos=( -75.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3757.04, -121.80, 10996.82 ) LPos=( -63.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3758.44, -121.79, 10994.31 ) LPos=( -66.44, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3759.83, -121.79, 10991.79 ) LPos=( -69.31, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3759.83, -118.91, 10991.80 ) LPos=( -69.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.62, -118.90, 10986.77 ) LPos=( -75.06, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -118.89, 10984.26 ) LPos=( -77.94, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3757.04, -116.05, 10996.84 ) LPos=( -63.56, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3764.01, -113.14, 10984.27 ) LPos=( -77.94, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3762.62, -110.27, 10986.80 ) LPos=( -75.06, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3755.65, -107.43, 10999.38 ) LPos=( -60.69, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3759.83, -107.41, 10991.83 ) LPos=( -69.31, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3764.01, -107.39, 10984.29 ) LPos=( -77.94, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3769.22, -124.61, 10974.84 ) LPos=( -88.69, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3772.00, -115.97, 10969.83 ) LPos=( -94.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3772.00, -118.85, 10969.82 ) LPos=( -94.44, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3772.00, -121.72, 10969.81 ) LPos=( -94.44, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3772.00, -124.60, 10969.81 ) LPos=( -94.44, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3772.00, -127.47, 10969.80 ) LPos=( -94.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3773.40, -110.22, 10967.33 ) LPos=( -97.31, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3773.40, -115.97, 10967.32 ) LPos=( -97.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3773.40, -124.59, 10967.29 ) LPos=( -97.31, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3776.18, -107.33, 10962.31 ) LPos=( -103.06, -106.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3776.18, -115.95, 10962.29 ) LPos=( -103.06, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3777.58, -124.57, 10959.75 ) LPos=( -105.94, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3778.97, -118.81, 10957.25 ) LPos=( -108.81, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3765.40, -149.76, 10981.65 ) LPos=( -80.81, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3765.40, -146.88, 10981.66 ) LPos=( -80.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3765.40, -141.13, 10981.68 ) LPos=( -80.81, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3765.40, -138.26, 10981.68 ) LPos=( -80.81, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3765.40, -135.38, 10981.69 ) LPos=( -80.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3757.04, -141.18, 10996.76 ) LPos=( -63.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3770.61, -138.23, 10972.28 ) LPos=( -91.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3777.58, -141.07, 10959.70 ) LPos=( -105.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3774.79, -141.08, 10964.73 ) LPos=( -100.19, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3773.40, -141.09, 10967.24 ) LPos=( -97.31, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,4 Anode:39 } GPos=( -3778.97, -146.81, 10957.17 ) LPos=( -108.81, -146.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3772.00, -149.72, 10969.73 ) LPos=( -94.44, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3777.58, -152.57, 10959.66 ) LPos=( -105.94, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.61, -174.90, 10986.61 ) LPos=( -75.06, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3764.01, -174.89, 10984.09 ) LPos=( -77.94, -174.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3764.01, -169.14, 10984.11 ) LPos=( -77.94, -168.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3761.22, -166.28, 10989.15 ) LPos=( -72.19, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3758.43, -163.42, 10994.18 ) LPos=( -66.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3777.58, -163.32, 10959.63 ) LPos=( -105.94, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3777.58, -166.19, 10959.62 ) LPos=( -105.94, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3778.97, -166.19, 10957.11 ) LPos=( -108.81, -165.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3778.97, -177.69, 10957.08 ) LPos=( -108.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3764.01, -200.01, 10984.02 ) LPos=( -77.94, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3762.61, -202.90, 10986.52 ) LPos=( -75.06, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3761.22, -205.78, 10989.03 ) LPos=( -72.19, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3759.83, -197.16, 10991.57 ) LPos=( -69.31, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3759.83, -194.29, 10991.58 ) LPos=( -69.31, -193.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3755.65, -208.68, 10999.08 ) LPos=( -60.69, -207.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3755.65, -200.06, 10999.11 ) LPos=( -60.69, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3773.40, -191.34, 10967.09 ) LPos=( -97.31, -190.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3774.79, -197.08, 10964.56 ) LPos=( -100.19, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3776.18, -202.83, 10962.03 ) LPos=( -103.06, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3774.79, -202.83, 10964.55 ) LPos=( -100.19, -202.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:285,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3772.00, -211.47, 10969.55 ) LPos=( -94.44, -210.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3762.95, -222.46, 10985.86 ) LPos=( -75.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.04, -222.47, 10991.11 ) LPos=( -69.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3757.13, -222.49, 10996.36 ) LPos=( -63.75, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3757.13, -228.49, 10996.34 ) LPos=( -63.75, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3757.13, -234.49, 10996.33 ) LPos=( -63.75, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.95, -240.46, 10985.81 ) LPos=( -75.75, -239.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3757.13, -246.49, 10996.29 ) LPos=( -63.75, -245.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3760.04, -252.47, 10991.03 ) LPos=( -69.75, -251.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3762.94, -258.46, 10985.76 ) LPos=( -75.75, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3768.76, -264.43, 10975.24 ) LPos=( -87.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3762.94, -264.46, 10985.74 ) LPos=( -75.75, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3762.94, -278.46, 10985.70 ) LPos=( -75.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.04, -278.47, 10990.95 ) LPos=( -69.75, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3768.76, -284.43, 10975.19 ) LPos=( -87.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3762.94, -284.46, 10985.68 ) LPos=( -75.75, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3774.57, -290.40, 10964.67 ) LPos=( -99.75, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3777.48, -296.38, 10959.41 ) LPos=( -105.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.94, -296.46, 10985.65 ) LPos=( -75.75, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3760.03, -334.47, 10990.78 ) LPos=( -69.75, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3771.66, -340.41, 10969.77 ) LPos=( -93.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3762.94, -340.46, 10985.52 ) LPos=( -75.75, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3771.66, -346.41, 10969.76 ) LPos=( -93.75, -345.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3777.48, -352.38, 10959.24 ) LPos=( -105.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3774.57, -352.40, 10964.49 ) LPos=( -99.75, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3777.48, -396.38, 10959.11 ) LPos=( -105.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3774.57, -396.40, 10964.36 ) LPos=( -99.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3771.66, -396.41, 10969.61 ) LPos=( -93.75, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3771.66, -402.41, 10969.59 ) LPos=( -93.75, -401.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3771.66, -408.41, 10969.57 ) LPos=( -93.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3768.76, -408.43, 10974.82 ) LPos=( -87.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3765.85, -408.44, 10980.07 ) LPos=( -81.75, -407.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,4 Anode:36 } GPos=( -3768.76, -414.43, 10974.80 ) LPos=( -87.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3765.85, -414.44, 10980.05 ) LPos=( -81.75, -413.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3768.75, -420.43, 10974.79 ) LPos=( -87.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,5 Anode:43 } GPos=( -3765.85, -420.44, 10980.04 ) LPos=( -81.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3762.94, -420.46, 10985.28 ) LPos=( -75.75, -419.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3771.66, -426.41, 10969.52 ) LPos=( -93.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:6,6 Anode:49 } GPos=( -3760.03, -426.47, 10990.51 ) LPos=( -69.75, -425.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:287,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3757.12, -446.49, 10995.70 ) LPos=( -63.75, -445.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:287,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3757.12, -452.49, 10995.69 ) LPos=( -63.75, -451.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:287,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3760.03, -458.47, 10990.42 ) LPos=( -69.75, -457.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:287,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3762.94, -464.46, 10985.15 ) LPos=( -75.75, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:287,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,3 Anode:25 } GPos=( -3760.03, -464.47, 10990.40 ) LPos=( -69.75, -463.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:288,00 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,1 Anode:10 } GPos=( -3735.59, 667.39, 11037.90 ) LPos=( -19.25, 668.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:288,00 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3735.59, 631.39, 11037.79 ) LPos=( -19.25, 632.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:288,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3747.22, 575.46, 11016.64 ) LPos=( -43.25, 576.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:288,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:2,2 Anode:21 } GPos=( -3744.31, 493.44, 11021.64 ) LPos=( -37.25, 494.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:288,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3735.59, 475.40, 11037.34 ) LPos=( -19.25, 476.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:288,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3738.49, 469.41, 11032.07 ) LPos=( -25.25, 470.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:288,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3750.12, 463.47, 11011.06 ) LPos=( -49.25, 464.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3741.40, 449.43, 11026.76 ) LPos=( -31.25, 450.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,2 Anode:23 } GPos=( -3750.12, 437.47, 11010.98 ) LPos=( -49.25, 438.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3729.77, 425.36, 11047.69 ) LPos=( -7.25, 426.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3741.40, 419.43, 11026.67 ) LPos=( -31.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3732.68, 419.38, 11042.42 ) LPos=( -13.25, 420.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3747.21, 413.46, 11016.16 ) LPos=( -43.25, 414.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,7 Anode:60 } GPos=( -3741.40, 407.43, 11026.64 ) LPos=( -31.25, 408.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.77, 393.36, 11047.59 ) LPos=( -7.25, 394.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:289,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3738.49, 281.41, 11031.52 ) LPos=( -25.25, 282.21, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3750.21, 191.91, 11010.10 ) LPos=( -49.44, 192.65, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3746.03, 183.26, 11017.62 ) LPos=( -40.81, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3741.85, 183.24, 11025.16 ) LPos=( -32.19, 184.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3750.21, 180.41, 11010.06 ) LPos=( -49.44, 181.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,05 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,1 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3751.60, 169.67, 11007.52 ) LPos=( -52.31, 170.40, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,08 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3738.03, 99.22, 11031.80 ) LPos=( -24.31, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3746.02, 105.01, 11017.39 ) LPos=( -40.81, 105.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,5 Anode:41 } GPos=( -3748.81, 99.28, 11012.34 ) LPos=( -46.56, 100.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,10 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3738.03, 88.47, 11031.77 ) LPos=( -24.31, 89.27, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3744.63, 40.38, 11019.71 ) LPos=( -37.94, 41.15, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3751.60, 54.79, 11007.18 ) LPos=( -52.31, 55.52, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3736.63, 20.97, 11034.09 ) LPos=( -21.44, 21.77, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:290,15 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3741.84, 15.24, 11024.67 ) LPos=( -32.19, 16.02, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,00 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3729.67, -12.82, 11046.56 ) LPos=( -7.06, -11.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3748.81, -15.60, 11012.00 ) LPos=( -46.56, -14.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,0 Anode:05 } GPos=( -3738.02, -37.90, 11031.40 ) LPos=( -24.31, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3736.63, -37.91, 11033.92 ) LPos=( -21.44, -37.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3750.20, -32.09, 11009.44 ) LPos=( -49.44, -31.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:0,7 Anode:63 } GPos=( -3751.59, -43.58, 11006.89 ) LPos=( -52.31, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3744.63, -43.62, 11019.47 ) LPos=( -37.94, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 Pix[Col,Row]:6,7 Anode:57 } GPos=( -3743.23, -43.62, 11021.98 ) LPos=( -35.06, -42.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,04 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3731.06, -63.06, 11043.90 ) LPos=( -9.94, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,04 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3735.24, -63.04, 11036.36 ) LPos=( -18.56, -62.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3736.63, -88.16, 11033.77 ) LPos=( -21.44, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3735.24, -79.54, 11036.31 ) LPos=( -18.56, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3732.45, -85.31, 11041.32 ) LPos=( -12.81, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 Pix[Col,Row]:1,6 Anode:54 } GPos=( -3729.66, -96.82, 11046.32 ) LPos=( -7.06, -95.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:0,0 Anode:07 } GPos=( -3751.59, -79.46, 11006.79 ) LPos=( -52.31, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,0 Anode:03 } GPos=( -3746.02, -79.48, 11016.85 ) LPos=( -40.81, -78.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,2 Anode:22 } GPos=( -3750.20, -85.21, 11009.28 ) LPos=( -49.44, -84.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3746.02, -88.11, 11016.82 ) LPos=( -40.81, -87.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3750.20, -90.96, 11009.27 ) LPos=( -49.44, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3741.84, -91.01, 11024.36 ) LPos=( -32.19, -90.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:3,5 Anode:44 } GPos=( -3747.41, -93.85, 11014.29 ) LPos=( -43.69, -93.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3748.80, -99.60, 11011.76 ) LPos=( -46.56, -98.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3735.23, -127.67, 11036.17 ) LPos=( -18.56, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3736.63, -124.78, 11033.66 ) LPos=( -21.44, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3738.02, -124.78, 11031.15 ) LPos=( -24.31, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,2 Anode:19 } GPos=( -3733.84, -121.92, 11038.70 ) LPos=( -15.69, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3735.24, -121.92, 11036.18 ) LPos=( -18.56, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,2 Anode:16 } GPos=( -3738.02, -121.90, 11031.15 ) LPos=( -24.31, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,3 Anode:28 } GPos=( -3732.45, -119.06, 11041.22 ) LPos=( -12.81, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,3 Anode:27 } GPos=( -3733.84, -119.05, 11038.71 ) LPos=( -15.69, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3735.24, -119.04, 11036.19 ) LPos=( -18.56, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3738.02, -119.03, 11031.16 ) LPos=( -24.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:1,4 Anode:38 } GPos=( -3729.66, -116.20, 11046.26 ) LPos=( -7.06, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3738.02, -116.15, 11031.17 ) LPos=( -24.31, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3731.06, -110.44, 11043.76 ) LPos=( -9.94, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,0 Anode:02 } GPos=( -3741.84, -121.88, 11024.27 ) LPos=( -32.19, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3743.23, -124.75, 11021.74 ) LPos=( -35.06, -123.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3743.23, -127.62, 11021.73 ) LPos=( -35.06, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:1,3 Anode:30 } GPos=( -3746.02, -110.36, 11016.76 ) LPos=( -40.81, -109.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:2,6 Anode:53 } GPos=( -3750.20, -113.21, 11009.20 ) LPos=( -49.44, -112.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3750.20, -116.09, 11009.19 ) LPos=( -49.44, -115.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3750.20, -118.96, 11009.19 ) LPos=( -49.44, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:5,6 Anode:50 } GPos=( -3750.20, -121.84, 11009.18 ) LPos=( -49.44, -121.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:7,6 Anode:48 } GPos=( -3750.20, -127.59, 11009.16 ) LPos=( -49.44, -126.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3751.59, -118.96, 11006.67 ) LPos=( -52.31, -118.23, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3735.23, -141.29, 11036.13 ) LPos=( -18.56, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3733.84, -141.30, 11038.64 ) LPos=( -15.69, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,4 Anode:37 } GPos=( -3732.45, -149.93, 11041.13 ) LPos=( -12.81, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:7,4 Anode:32 } GPos=( -3732.45, -135.56, 11041.17 ) LPos=( -12.81, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:0,5 Anode:47 } GPos=( -3731.05, -155.69, 11043.63 ) LPos=( -9.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 Pix[Col,Row]:2,7 Anode:61 } GPos=( -3728.27, -149.95, 11048.68 ) LPos=( -4.19, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3747.41, -135.48, 11014.17 ) LPos=( -43.69, -134.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:0,1 Anode:15 } GPos=( -3751.59, -138.33, 11006.61 ) LPos=( -52.31, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:2,1 Anode:13 } GPos=( -3748.80, -138.34, 11011.64 ) LPos=( -46.56, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3746.02, -138.36, 11016.67 ) LPos=( -40.81, -137.60, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3744.62, -141.24, 11019.18 ) LPos=( -37.94, -140.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,5 Anode:42 } GPos=( -3744.62, -149.87, 11019.15 ) LPos=( -37.94, -149.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:4,6 Anode:51 } GPos=( -3746.02, -152.73, 11016.63 ) LPos=( -40.81, -151.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:1,7 Anode:62 } GPos=( -3750.20, -155.59, 11009.08 ) LPos=( -49.44, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3744.62, -155.62, 11019.14 ) LPos=( -37.94, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3741.84, -155.63, 11024.17 ) LPos=( -32.19, -154.85, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3733.84, -180.80, 11038.53 ) LPos=( -15.69, -179.98, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3732.45, -177.93, 11041.05 ) LPos=( -12.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:5,3 Anode:26 } GPos=( -3746.02, -177.86, 11016.56 ) LPos=( -40.81, -177.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3750.20, -163.46, 11009.05 ) LPos=( -49.44, -162.73, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3747.41, -197.23, 11013.99 ) LPos=( -43.69, -196.48, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:2,3 Anode:29 } GPos=( -3748.80, -200.09, 11011.46 ) LPos=( -46.56, -199.35, -0.80 )
+TestDecodeAndIDs     INFO { PMT:r Rich2 R-C PD[Mod,NInMod]:291,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 Pix[Col,Row]:7,5 Anode:40 } GPos=( -3741.84, -205.88, 11024.02 ) LPos=( -32.19, -205.10, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,0 Anode:04 } GPos=( -3741.38, -222.57, 11024.79 ) LPos=( -31.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.75, -222.63, 11045.78 ) LPos=( -7.25, -221.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3741.38, -228.57, 11024.77 ) LPos=( -31.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,1 Anode:11 } GPos=( -3738.47, -228.59, 11030.02 ) LPos=( -25.25, -227.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:3,2 Anode:20 } GPos=( -3741.38, -234.57, 11024.76 ) LPos=( -31.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:5,2 Anode:18 } GPos=( -3735.56, -234.60, 11035.25 ) LPos=( -19.25, -233.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:0,6 Anode:55 } GPos=( -3750.10, -258.52, 11008.94 ) LPos=( -49.25, -257.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3738.47, -264.59, 11029.92 ) LPos=( -25.25, -263.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.75, -278.63, 11045.62 ) LPos=( -7.25, -277.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3732.66, -284.62, 11040.35 ) LPos=( -13.25, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,1 Anode:08 } GPos=( -3729.75, -284.63, 11045.60 ) LPos=( -7.25, -283.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:6,2 Anode:17 } GPos=( -3732.66, -290.62, 11040.34 ) LPos=( -13.25, -289.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:0,3 Anode:31 } GPos=( -3750.10, -296.52, 11008.83 ) LPos=( -49.25, -295.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:4,4 Anode:35 } GPos=( -3738.47, -302.59, 11029.80 ) LPos=( -25.25, -301.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 Pix[Col,Row]:7,7 Anode:56 } GPos=( -3729.75, -320.63, 11045.50 ) LPos=( -7.25, -319.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,0 Anode:00 } GPos=( -3729.75, -334.63, 11045.46 ) LPos=( -7.25, -333.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,1 Anode:12 } GPos=( -3741.38, -340.57, 11024.44 ) LPos=( -31.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,1 Anode:09 } GPos=( -3732.65, -340.62, 11040.19 ) LPos=( -13.25, -339.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:7,3 Anode:24 } GPos=( -3729.75, -352.63, 11045.40 ) LPos=( -7.25, -351.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:5,4 Anode:34 } GPos=( -3735.56, -358.60, 11034.89 ) LPos=( -19.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:6,4 Anode:33 } GPos=( -3732.65, -358.62, 11040.14 ) LPos=( -13.25, -357.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 Pix[Col,Row]:4,7 Anode:59 } GPos=( -3738.47, -376.59, 11029.59 ) LPos=( -25.25, -375.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,0 Anode:06 } GPos=( -3747.19, -390.54, 11013.80 ) LPos=( -43.25, -389.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:1,1 Anode:14 } GPos=( -3747.19, -396.54, 11013.78 ) LPos=( -43.25, -395.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:292,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 Pix[Col,Row]:5,7 Anode:58 } GPos=( -3735.56, -432.60, 11034.67 ) LPos=( -19.25, -431.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:293,00 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:0,0 Pix[Col,Row]:6,0 Anode:01 } GPos=( -3732.65, -446.62, 11039.88 ) LPos=( -13.25, -445.79, -0.80 )
+TestDecodeAndIDs     INFO { PMT:h Rich2 R-C PD[Mod,NInMod]:293,02 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:2,0 Pix[Col,Row]:3,6 Anode:52 } GPos=( -3741.37, -594.57, 11023.70 ) LPos=( -31.25, -593.79, -0.80 )
+ApplicationMgr       INFO Application Manager Stopped successfully
+EventLoopMgr         INFO Histograms converted successfully according to request.
+ApplicationMgr       INFO Application Manager Finalized successfully
+ApplicationMgr       INFO Application Manager Terminated successfully
diff --git a/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref b/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref
index 90ebefaededbabf2d5b28f7caa7163d955a353cb..6a587ef7f9edfade6f0bbdd74cc374aeed4c02f8 100644
--- a/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref
+++ b/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref
@@ -77,1031 +77,1031 @@ TestDerivedDets     DEBUG [ 1 -0 -0 0
 TestDerivedDets     DEBUG   -0 0.532877 0.846193 1441.73
 TestDerivedDets     DEBUG   0 -0.846193 0.532877 1662.84 ]
 TestDerivedDets     DEBUG   -> PD Module 0 { PMT Rich1 Top } Module(Col:NInCol)=0:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1556.04,1417.52) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1556.04,1417.52) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,09 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1570.96,1393.82) CenPtnInPanel=(546,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1556.04,1417.52) CenPtnInPanel=(518,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1570.96,1393.82) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1556.04,1417.52) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1570.96,1393.82) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1556.04,1417.52) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1570.96,1393.82) CenPtnInPanel=(490,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,14 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1556.04,1417.52) CenPtnInPanel=(462,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1570.96,1393.82) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1570.96,1393.82) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 1 { PMT Rich1 Top } Module(Col:NInCol)=0:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1556.04,1417.52) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1556.04,1417.52) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1570.96,1393.82) CenPtnInPanel=(434,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1556.04,1417.52) CenPtnInPanel=(406,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1570.96,1393.82) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1556.04,1417.52) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1570.96,1393.82) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1556.04,1417.52) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1570.96,1393.82) CenPtnInPanel=(378,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1556.04,1417.52) CenPtnInPanel=(350,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1570.96,1393.82) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1556.04,1417.52) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1570.96,1393.82) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1556.04,1417.52) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1570.96,1393.82) CenPtnInPanel=(322,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1556.04,1417.52) CenPtnInPanel=(294,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1570.96,1393.82) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1556.04,1417.52) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1570.96,1393.82) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1556.04,1417.52) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1570.96,1393.82) CenPtnInPanel=(266,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1556.04,1417.52) CenPtnInPanel=(238,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1570.96,1393.82) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1570.96,1393.82) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 2 { PMT Rich1 Top } Module(Col:NInCol)=0:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1556.04,1417.52) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1556.04,1417.52) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1570.96,1393.82) CenPtnInPanel=(210,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1556.04,1417.52) CenPtnInPanel=(182,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1570.96,1393.82) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1556.04,1417.52) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1570.96,1393.82) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1556.04,1417.52) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1570.96,1393.82) CenPtnInPanel=(154,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1556.04,1417.52) CenPtnInPanel=(126,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1570.96,1393.82) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1556.04,1417.52) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1570.96,1393.82) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1556.04,1417.52) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1570.96,1393.82) CenPtnInPanel=(98,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1556.04,1417.52) CenPtnInPanel=(70,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1570.96,1393.82) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1556.04,1417.52) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1570.96,1393.82) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1556.04,1417.52) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1570.96,1393.82) CenPtnInPanel=(42,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1556.04,1417.52) CenPtnInPanel=(14,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1570.96,1393.82) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1570.96,1393.82) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 3 { PMT Rich1 Top } Module(Col:NInCol)=0:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1556.04,1417.52) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1556.04,1417.52) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1570.96,1393.82) CenPtnInPanel=(-14,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1556.04,1417.52) CenPtnInPanel=(-42,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1570.96,1393.82) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1556.04,1417.52) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1570.96,1393.82) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1556.04,1417.52) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1570.96,1393.82) CenPtnInPanel=(-70,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1556.04,1417.52) CenPtnInPanel=(-98,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1570.96,1393.82) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1556.04,1417.52) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1570.96,1393.82) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1556.04,1417.52) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1570.96,1393.82) CenPtnInPanel=(-126,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1556.04,1417.52) CenPtnInPanel=(-154,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1570.96,1393.82) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1556.04,1417.52) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1570.96,1393.82) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1556.04,1417.52) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1570.96,1393.82) CenPtnInPanel=(-182,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1556.04,1417.52) CenPtnInPanel=(-210,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1570.96,1393.82) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1570.96,1393.82) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 4 { PMT Rich1 Top } Module(Col:NInCol)=0:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1556.04,1417.52) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1556.04,1417.52) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1570.96,1393.82) CenPtnInPanel=(-238,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1556.04,1417.52) CenPtnInPanel=(-266,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1570.96,1393.82) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1556.04,1417.52) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1570.96,1393.82) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1556.04,1417.52) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1570.96,1393.82) CenPtnInPanel=(-294,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1556.04,1417.52) CenPtnInPanel=(-322,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1570.96,1393.82) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1556.04,1417.52) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1570.96,1393.82) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1556.04,1417.52) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1570.96,1393.82) CenPtnInPanel=(-350,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1556.04,1417.52) CenPtnInPanel=(-378,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1570.96,1393.82) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1556.04,1417.52) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1570.96,1393.82) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1556.04,1417.52) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1570.96,1393.82) CenPtnInPanel=(-406,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1556.04,1417.52) CenPtnInPanel=(-434,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1570.96,1393.82) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1570.96,1393.82) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 5 { PMT Rich1 Top } Module(Col:NInCol)=0:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1556.04,1417.52) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1556.04,1417.52) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1570.96,1393.82) CenPtnInPanel=(-462,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1556.04,1417.52) CenPtnInPanel=(-490,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1570.96,1393.82) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1556.04,1417.52) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1570.96,1393.82) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1556.04,1417.52) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,05 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1570.96,1393.82) CenPtnInPanel=(-518,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1556.04,1417.52) CenPtnInPanel=(-546,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1570.96,1393.82) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1570.96,1393.82) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 6 { PMT Rich1 Top } Module(Col:NInCol)=1:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1525.93,1465.33) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1525.93,1465.33) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1540.85,1441.63) CenPtnInPanel=(602,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1525.93,1465.33) CenPtnInPanel=(574,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1540.85,1441.63) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1525.93,1465.33) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1540.85,1441.63) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1525.93,1465.33) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,09 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1540.85,1441.63) CenPtnInPanel=(546,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,10 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1525.93,1465.33) CenPtnInPanel=(518,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1540.85,1441.63) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1525.93,1465.33) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1540.85,1441.63) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1525.93,1465.33) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,13 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1540.85,1441.63) CenPtnInPanel=(490,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,14 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1525.93,1465.33) CenPtnInPanel=(462,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1540.85,1441.63) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1540.85,1441.63) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 7 { PMT Rich1 Top } Module(Col:NInCol)=1:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1525.93,1465.33) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1525.93,1465.33) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1540.85,1441.63) CenPtnInPanel=(434,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1525.93,1465.33) CenPtnInPanel=(406,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1540.85,1441.63) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1525.93,1465.33) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1540.85,1441.63) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1525.93,1465.33) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1540.85,1441.63) CenPtnInPanel=(378,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1525.93,1465.33) CenPtnInPanel=(350,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1540.85,1441.63) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1525.93,1465.33) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1540.85,1441.63) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1525.93,1465.33) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1540.85,1441.63) CenPtnInPanel=(322,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1525.93,1465.33) CenPtnInPanel=(294,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1540.85,1441.63) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1525.93,1465.33) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1540.85,1441.63) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1525.93,1465.33) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1540.85,1441.63) CenPtnInPanel=(266,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,14 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1525.93,1465.33) CenPtnInPanel=(238,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1540.85,1441.63) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1540.85,1441.63) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 8 { PMT Rich1 Top } Module(Col:NInCol)=1:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1525.93,1465.33) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1525.93,1465.33) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1540.85,1441.63) CenPtnInPanel=(210,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1525.93,1465.33) CenPtnInPanel=(182,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1540.85,1441.63) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1525.93,1465.33) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1540.85,1441.63) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1525.93,1465.33) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1540.85,1441.63) CenPtnInPanel=(154,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1525.93,1465.33) CenPtnInPanel=(126,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1540.85,1441.63) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1525.93,1465.33) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1540.85,1441.63) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1525.93,1465.33) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1540.85,1441.63) CenPtnInPanel=(98,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1525.93,1465.33) CenPtnInPanel=(70,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1540.85,1441.63) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1525.93,1465.33) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1540.85,1441.63) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1525.93,1465.33) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1540.85,1441.63) CenPtnInPanel=(42,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1525.93,1465.33) CenPtnInPanel=(14,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1540.85,1441.63) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1540.85,1441.63) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 9 { PMT Rich1 Top } Module(Col:NInCol)=1:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1525.93,1465.33) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1525.93,1465.33) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1540.85,1441.63) CenPtnInPanel=(-14,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1525.93,1465.33) CenPtnInPanel=(-42,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1540.85,1441.63) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1525.93,1465.33) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1540.85,1441.63) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1525.93,1465.33) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1540.85,1441.63) CenPtnInPanel=(-70,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1525.93,1465.33) CenPtnInPanel=(-98,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1540.85,1441.63) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1525.93,1465.33) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1540.85,1441.63) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1525.93,1465.33) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1540.85,1441.63) CenPtnInPanel=(-126,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1525.93,1465.33) CenPtnInPanel=(-154,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1540.85,1441.63) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1525.93,1465.33) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1540.85,1441.63) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1525.93,1465.33) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1540.85,1441.63) CenPtnInPanel=(-182,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1525.93,1465.33) CenPtnInPanel=(-210,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1540.85,1441.63) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1540.85,1441.63) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 10 { PMT Rich1 Top } Module(Col:NInCol)=1:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1525.93,1465.33) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1525.93,1465.33) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1540.85,1441.63) CenPtnInPanel=(-238,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1525.93,1465.33) CenPtnInPanel=(-266,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1540.85,1441.63) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1525.93,1465.33) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1540.85,1441.63) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1525.93,1465.33) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1540.85,1441.63) CenPtnInPanel=(-294,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1525.93,1465.33) CenPtnInPanel=(-322,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1540.85,1441.63) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1525.93,1465.33) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1540.85,1441.63) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1525.93,1465.33) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1540.85,1441.63) CenPtnInPanel=(-350,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1525.93,1465.33) CenPtnInPanel=(-378,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1540.85,1441.63) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1525.93,1465.33) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1540.85,1441.63) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1525.93,1465.33) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1540.85,1441.63) CenPtnInPanel=(-406,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1525.93,1465.33) CenPtnInPanel=(-434,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1540.85,1441.63) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1540.85,1441.63) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 11 { PMT Rich1 Top } Module(Col:NInCol)=1:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1525.93,1465.33) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1525.93,1465.33) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1540.85,1441.63) CenPtnInPanel=(-462,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1525.93,1465.33) CenPtnInPanel=(-490,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1540.85,1441.63) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1525.93,1465.33) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1540.85,1441.63) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1525.93,1465.33) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1540.85,1441.63) CenPtnInPanel=(-518,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1525.93,1465.33) CenPtnInPanel=(-546,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1540.85,1441.63) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1525.93,1465.33) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1540.85,1441.63) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1525.93,1465.33) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1540.85,1441.63) CenPtnInPanel=(-574,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1525.93,1465.33) CenPtnInPanel=(-602,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1540.85,1441.63) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1540.85,1441.63) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 12 { PMT Rich1 Top } Module(Col:NInCol)=2:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1495.82,1513.14) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1495.82,1513.14) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1510.74,1489.44) CenPtnInPanel=(602,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1495.82,1513.14) CenPtnInPanel=(574,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1510.74,1489.44) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1495.82,1513.14) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1510.74,1489.44) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1495.82,1513.14) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1510.74,1489.44) CenPtnInPanel=(546,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1495.82,1513.14) CenPtnInPanel=(518,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1510.74,1489.44) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1495.82,1513.14) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1510.74,1489.44) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1495.82,1513.14) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1510.74,1489.44) CenPtnInPanel=(490,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,14 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1495.82,1513.14) CenPtnInPanel=(462,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1510.74,1489.44) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1510.74,1489.44) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 13 { PMT Rich1 Top } Module(Col:NInCol)=2:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1495.82,1513.14) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1495.82,1513.14) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1510.74,1489.44) CenPtnInPanel=(434,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1495.82,1513.14) CenPtnInPanel=(406,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1510.74,1489.44) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1495.82,1513.14) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1510.74,1489.44) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1495.82,1513.14) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1510.74,1489.44) CenPtnInPanel=(378,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1495.82,1513.14) CenPtnInPanel=(350,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1510.74,1489.44) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1495.82,1513.14) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1510.74,1489.44) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1495.82,1513.14) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1510.74,1489.44) CenPtnInPanel=(322,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1495.82,1513.14) CenPtnInPanel=(294,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1510.74,1489.44) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1495.82,1513.14) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1510.74,1489.44) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1495.82,1513.14) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1510.74,1489.44) CenPtnInPanel=(266,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1495.82,1513.14) CenPtnInPanel=(238,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1510.74,1489.44) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1510.74,1489.44) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 14 { PMT Rich1 Top } Module(Col:NInCol)=2:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1495.82,1513.14) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1495.82,1513.14) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1510.74,1489.44) CenPtnInPanel=(210,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1495.82,1513.14) CenPtnInPanel=(182,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1510.74,1489.44) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1495.82,1513.14) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1510.74,1489.44) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1495.82,1513.14) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1510.74,1489.44) CenPtnInPanel=(154,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1495.82,1513.14) CenPtnInPanel=(126,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1510.74,1489.44) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1495.82,1513.14) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1510.74,1489.44) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1495.82,1513.14) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1510.74,1489.44) CenPtnInPanel=(98,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1495.82,1513.14) CenPtnInPanel=(70,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1510.74,1489.44) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1495.82,1513.14) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1510.74,1489.44) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1495.82,1513.14) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1510.74,1489.44) CenPtnInPanel=(42,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1495.82,1513.14) CenPtnInPanel=(14,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1510.74,1489.44) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1510.74,1489.44) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 15 { PMT Rich1 Top } Module(Col:NInCol)=2:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1495.82,1513.14) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1495.82,1513.14) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1510.74,1489.44) CenPtnInPanel=(-14,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1495.82,1513.14) CenPtnInPanel=(-42,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1510.74,1489.44) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1495.82,1513.14) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1510.74,1489.44) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1495.82,1513.14) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1510.74,1489.44) CenPtnInPanel=(-70,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1495.82,1513.14) CenPtnInPanel=(-98,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1510.74,1489.44) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1495.82,1513.14) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1510.74,1489.44) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1495.82,1513.14) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1510.74,1489.44) CenPtnInPanel=(-126,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1495.82,1513.14) CenPtnInPanel=(-154,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1510.74,1489.44) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1495.82,1513.14) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1510.74,1489.44) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1495.82,1513.14) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1510.74,1489.44) CenPtnInPanel=(-182,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1495.82,1513.14) CenPtnInPanel=(-210,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1510.74,1489.44) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1510.74,1489.44) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 16 { PMT Rich1 Top } Module(Col:NInCol)=2:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1495.82,1513.14) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1495.82,1513.14) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1510.74,1489.44) CenPtnInPanel=(-238,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1495.82,1513.14) CenPtnInPanel=(-266,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1510.74,1489.44) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1495.82,1513.14) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1510.74,1489.44) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1495.82,1513.14) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1510.74,1489.44) CenPtnInPanel=(-294,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1495.82,1513.14) CenPtnInPanel=(-322,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1510.74,1489.44) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1495.82,1513.14) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1510.74,1489.44) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1495.82,1513.14) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1510.74,1489.44) CenPtnInPanel=(-350,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,10 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1495.82,1513.14) CenPtnInPanel=(-378,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1510.74,1489.44) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1495.82,1513.14) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1510.74,1489.44) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1495.82,1513.14) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,13 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1510.74,1489.44) CenPtnInPanel=(-406,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,14 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1495.82,1513.14) CenPtnInPanel=(-434,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1510.74,1489.44) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1510.74,1489.44) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 17 { PMT Rich1 Top } Module(Col:NInCol)=2:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1495.82,1513.14) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1495.82,1513.14) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1510.74,1489.44) CenPtnInPanel=(-462,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1495.82,1513.14) CenPtnInPanel=(-490,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1510.74,1489.44) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1495.82,1513.14) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1510.74,1489.44) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1495.82,1513.14) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1510.74,1489.44) CenPtnInPanel=(-518,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1495.82,1513.14) CenPtnInPanel=(-546,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1510.74,1489.44) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1495.82,1513.14) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1510.74,1489.44) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1495.82,1513.14) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1510.74,1489.44) CenPtnInPanel=(-574,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1495.82,1513.14) CenPtnInPanel=(-602,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1510.74,1489.44) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1510.74,1489.44) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 18 { PMT Rich1 Top } Module(Col:NInCol)=3:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1465.72,1560.95) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1465.72,1560.95) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1480.64,1537.25) CenPtnInPanel=(602,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1465.72,1560.95) CenPtnInPanel=(574,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1480.64,1537.25) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1465.72,1560.95) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1480.64,1537.25) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1465.72,1560.95) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1480.64,1537.25) CenPtnInPanel=(546,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1465.72,1560.95) CenPtnInPanel=(518,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1480.64,1537.25) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1465.72,1560.95) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1480.64,1537.25) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1465.72,1560.95) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1480.64,1537.25) CenPtnInPanel=(490,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1465.72,1560.95) CenPtnInPanel=(462,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1480.64,1537.25) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1480.64,1537.25) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 19 { PMT Rich1 Top } Module(Col:NInCol)=3:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1465.72,1560.95) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1465.72,1560.95) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1480.64,1537.25) CenPtnInPanel=(434,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1465.72,1560.95) CenPtnInPanel=(406,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1480.64,1537.25) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1465.72,1560.95) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1480.64,1537.25) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1465.72,1560.95) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1480.64,1537.25) CenPtnInPanel=(378,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1465.72,1560.95) CenPtnInPanel=(350,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1480.64,1537.25) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1465.72,1560.95) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1480.64,1537.25) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1465.72,1560.95) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1480.64,1537.25) CenPtnInPanel=(322,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1465.72,1560.95) CenPtnInPanel=(294,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1480.64,1537.25) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1465.72,1560.95) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1480.64,1537.25) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1465.72,1560.95) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1480.64,1537.25) CenPtnInPanel=(266,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1465.72,1560.95) CenPtnInPanel=(238,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1480.64,1537.25) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1480.64,1537.25) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 20 { PMT Rich1 Top } Module(Col:NInCol)=3:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1465.72,1560.95) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1465.72,1560.95) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1480.64,1537.25) CenPtnInPanel=(210,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1465.72,1560.95) CenPtnInPanel=(182,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1480.64,1537.25) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1465.72,1560.95) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1480.64,1537.25) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1465.72,1560.95) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1480.64,1537.25) CenPtnInPanel=(154,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1465.72,1560.95) CenPtnInPanel=(126,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1480.64,1537.25) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1465.72,1560.95) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1480.64,1537.25) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1465.72,1560.95) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1480.64,1537.25) CenPtnInPanel=(98,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1465.72,1560.95) CenPtnInPanel=(70,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1480.64,1537.25) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1465.72,1560.95) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1480.64,1537.25) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1465.72,1560.95) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1480.64,1537.25) CenPtnInPanel=(42,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1465.72,1560.95) CenPtnInPanel=(14,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1480.64,1537.25) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1480.64,1537.25) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 21 { PMT Rich1 Top } Module(Col:NInCol)=3:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1465.72,1560.95) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1465.72,1560.95) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1480.64,1537.25) CenPtnInPanel=(-14,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1465.72,1560.95) CenPtnInPanel=(-42,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1480.64,1537.25) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1465.72,1560.95) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1480.64,1537.25) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1465.72,1560.95) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1480.64,1537.25) CenPtnInPanel=(-70,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1465.72,1560.95) CenPtnInPanel=(-98,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1480.64,1537.25) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1465.72,1560.95) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1480.64,1537.25) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1465.72,1560.95) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1480.64,1537.25) CenPtnInPanel=(-126,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1465.72,1560.95) CenPtnInPanel=(-154,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1480.64,1537.25) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1465.72,1560.95) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1480.64,1537.25) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1465.72,1560.95) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1480.64,1537.25) CenPtnInPanel=(-182,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1465.72,1560.95) CenPtnInPanel=(-210,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1480.64,1537.25) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1480.64,1537.25) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 22 { PMT Rich1 Top } Module(Col:NInCol)=3:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1465.72,1560.95) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1465.72,1560.95) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1480.64,1537.25) CenPtnInPanel=(-238,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1465.72,1560.95) CenPtnInPanel=(-266,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1480.64,1537.25) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1465.72,1560.95) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1480.64,1537.25) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1465.72,1560.95) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1480.64,1537.25) CenPtnInPanel=(-294,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1465.72,1560.95) CenPtnInPanel=(-322,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1480.64,1537.25) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1465.72,1560.95) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1480.64,1537.25) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1465.72,1560.95) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1480.64,1537.25) CenPtnInPanel=(-350,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1465.72,1560.95) CenPtnInPanel=(-378,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1480.64,1537.25) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1465.72,1560.95) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1480.64,1537.25) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1465.72,1560.95) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,13 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1480.64,1537.25) CenPtnInPanel=(-406,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,14 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1465.72,1560.95) CenPtnInPanel=(-434,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1480.64,1537.25) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1480.64,1537.25) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 23 { PMT Rich1 Top } Module(Col:NInCol)=3:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1465.72,1560.95) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1465.72,1560.95) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1480.64,1537.25) CenPtnInPanel=(-462,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1465.72,1560.95) CenPtnInPanel=(-490,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1480.64,1537.25) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1465.72,1560.95) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1480.64,1537.25) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1465.72,1560.95) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,05 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1480.64,1537.25) CenPtnInPanel=(-518,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1465.72,1560.95) CenPtnInPanel=(-546,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1480.64,1537.25) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1465.72,1560.95) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1480.64,1537.25) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1465.72,1560.95) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1480.64,1537.25) CenPtnInPanel=(-574,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,10 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1465.72,1560.95) CenPtnInPanel=(-602,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1480.64,1537.25) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1480.64,1537.25) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 24 { PMT Rich1 Top } Module(Col:NInCol)=4:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1435.61,1608.76) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1435.61,1608.76) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1450.53,1585.06) CenPtnInPanel=(602,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,06 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1435.61,1608.76) CenPtnInPanel=(574,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1450.53,1585.06) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1435.61,1608.76) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1450.53,1585.06) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1435.61,1608.76) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1450.53,1585.06) CenPtnInPanel=(546,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,10 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1435.61,1608.76) CenPtnInPanel=(518,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1450.53,1585.06) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1435.61,1608.76) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1450.53,1585.06) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1435.61,1608.76) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1450.53,1585.06) CenPtnInPanel=(490,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1435.61,1608.76) CenPtnInPanel=(462,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1450.53,1585.06) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1450.53,1585.06) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 25 { PMT Rich1 Top } Module(Col:NInCol)=4:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1435.61,1608.76) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1435.61,1608.76) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1450.53,1585.06) CenPtnInPanel=(434,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1435.61,1608.76) CenPtnInPanel=(406,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1450.53,1585.06) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1435.61,1608.76) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1450.53,1585.06) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1435.61,1608.76) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1450.53,1585.06) CenPtnInPanel=(378,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,06 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1435.61,1608.76) CenPtnInPanel=(350,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1450.53,1585.06) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1435.61,1608.76) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1450.53,1585.06) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1435.61,1608.76) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1450.53,1585.06) CenPtnInPanel=(322,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1435.61,1608.76) CenPtnInPanel=(294,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1450.53,1585.06) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1435.61,1608.76) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1450.53,1585.06) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1435.61,1608.76) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1450.53,1585.06) CenPtnInPanel=(266,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1435.61,1608.76) CenPtnInPanel=(238,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1450.53,1585.06) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1450.53,1585.06) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 26 { PMT Rich1 Top } Module(Col:NInCol)=4:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1435.61,1608.76) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1435.61,1608.76) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1450.53,1585.06) CenPtnInPanel=(210,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1435.61,1608.76) CenPtnInPanel=(182,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1450.53,1585.06) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1435.61,1608.76) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1450.53,1585.06) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1435.61,1608.76) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1450.53,1585.06) CenPtnInPanel=(154,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1435.61,1608.76) CenPtnInPanel=(126,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1450.53,1585.06) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1435.61,1608.76) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1450.53,1585.06) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1435.61,1608.76) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1450.53,1585.06) CenPtnInPanel=(98,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1435.61,1608.76) CenPtnInPanel=(70,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1450.53,1585.06) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1435.61,1608.76) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1450.53,1585.06) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1435.61,1608.76) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1450.53,1585.06) CenPtnInPanel=(42,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1435.61,1608.76) CenPtnInPanel=(14,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1450.53,1585.06) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1450.53,1585.06) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 27 { PMT Rich1 Top } Module(Col:NInCol)=4:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1435.61,1608.76) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1435.61,1608.76) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1450.53,1585.06) CenPtnInPanel=(-14,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1435.61,1608.76) CenPtnInPanel=(-42,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1450.53,1585.06) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1435.61,1608.76) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1450.53,1585.06) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1435.61,1608.76) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1450.53,1585.06) CenPtnInPanel=(-70,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1435.61,1608.76) CenPtnInPanel=(-98,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1450.53,1585.06) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1435.61,1608.76) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1450.53,1585.06) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1435.61,1608.76) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1450.53,1585.06) CenPtnInPanel=(-126,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1435.61,1608.76) CenPtnInPanel=(-154,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1450.53,1585.06) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1435.61,1608.76) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1450.53,1585.06) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1435.61,1608.76) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1450.53,1585.06) CenPtnInPanel=(-182,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1435.61,1608.76) CenPtnInPanel=(-210,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1450.53,1585.06) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1450.53,1585.06) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 28 { PMT Rich1 Top } Module(Col:NInCol)=4:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1435.61,1608.76) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1435.61,1608.76) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1450.53,1585.06) CenPtnInPanel=(-238,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1435.61,1608.76) CenPtnInPanel=(-266,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1450.53,1585.06) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1435.61,1608.76) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1450.53,1585.06) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1435.61,1608.76) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1450.53,1585.06) CenPtnInPanel=(-294,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,06 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1435.61,1608.76) CenPtnInPanel=(-322,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1450.53,1585.06) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1435.61,1608.76) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1450.53,1585.06) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1435.61,1608.76) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1450.53,1585.06) CenPtnInPanel=(-350,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,10 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1435.61,1608.76) CenPtnInPanel=(-378,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1450.53,1585.06) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1435.61,1608.76) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1450.53,1585.06) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1435.61,1608.76) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1450.53,1585.06) CenPtnInPanel=(-406,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,14 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1435.61,1608.76) CenPtnInPanel=(-434,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1450.53,1585.06) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1450.53,1585.06) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 29 { PMT Rich1 Top } Module(Col:NInCol)=4:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1435.61,1608.76) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1435.61,1608.76) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1450.53,1585.06) CenPtnInPanel=(-462,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1435.61,1608.76) CenPtnInPanel=(-490,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1450.53,1585.06) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1435.61,1608.76) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1450.53,1585.06) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1435.61,1608.76) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,05 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1450.53,1585.06) CenPtnInPanel=(-518,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,06 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1435.61,1608.76) CenPtnInPanel=(-546,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1450.53,1585.06) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1435.61,1608.76) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1450.53,1585.06) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1435.61,1608.76) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1450.53,1585.06) CenPtnInPanel=(-574,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,10 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1435.61,1608.76) CenPtnInPanel=(-602,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1450.53,1585.06) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1450.53,1585.06) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 30 { PMT Rich1 Top } Module(Col:NInCol)=5:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1405.5,1656.57) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1405.5,1656.57) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1420.42,1632.87) CenPtnInPanel=(602,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,06 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1405.5,1656.57) CenPtnInPanel=(574,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1420.42,1632.87) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1405.5,1656.57) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1420.42,1632.87) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1405.5,1656.57) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1420.42,1632.87) CenPtnInPanel=(546,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1405.5,1656.57) CenPtnInPanel=(518,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1420.42,1632.87) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1405.5,1656.57) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1420.42,1632.87) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1405.5,1656.57) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1420.42,1632.87) CenPtnInPanel=(490,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1405.5,1656.57) CenPtnInPanel=(462,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1420.42,1632.87) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1420.42,1632.87) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 31 { PMT Rich1 Top } Module(Col:NInCol)=5:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1405.5,1656.57) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1405.5,1656.57) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1420.42,1632.87) CenPtnInPanel=(434,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1405.5,1656.57) CenPtnInPanel=(406,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1420.42,1632.87) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1405.5,1656.57) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1420.42,1632.87) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1405.5,1656.57) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1420.42,1632.87) CenPtnInPanel=(378,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1405.5,1656.57) CenPtnInPanel=(350,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1420.42,1632.87) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1405.5,1656.57) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1420.42,1632.87) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1405.5,1656.57) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1420.42,1632.87) CenPtnInPanel=(322,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1405.5,1656.57) CenPtnInPanel=(294,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1420.42,1632.87) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1405.5,1656.57) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1420.42,1632.87) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1405.5,1656.57) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1420.42,1632.87) CenPtnInPanel=(266,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1405.5,1656.57) CenPtnInPanel=(238,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1420.42,1632.87) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1420.42,1632.87) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 32 { PMT Rich1 Top } Module(Col:NInCol)=5:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1405.5,1656.57) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1405.5,1656.57) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1420.42,1632.87) CenPtnInPanel=(210,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1405.5,1656.57) CenPtnInPanel=(182,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1420.42,1632.87) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1405.5,1656.57) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1420.42,1632.87) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1405.5,1656.57) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1420.42,1632.87) CenPtnInPanel=(154,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1405.5,1656.57) CenPtnInPanel=(126,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1420.42,1632.87) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1405.5,1656.57) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1420.42,1632.87) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1405.5,1656.57) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1420.42,1632.87) CenPtnInPanel=(98,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1405.5,1656.57) CenPtnInPanel=(70,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1420.42,1632.87) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1405.5,1656.57) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1420.42,1632.87) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1405.5,1656.57) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1420.42,1632.87) CenPtnInPanel=(42,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1405.5,1656.57) CenPtnInPanel=(14,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1420.42,1632.87) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1420.42,1632.87) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 33 { PMT Rich1 Top } Module(Col:NInCol)=5:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1405.5,1656.57) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1405.5,1656.57) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1420.42,1632.87) CenPtnInPanel=(-14,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1405.5,1656.57) CenPtnInPanel=(-42,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1420.42,1632.87) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1405.5,1656.57) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1420.42,1632.87) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1405.5,1656.57) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1420.42,1632.87) CenPtnInPanel=(-70,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1405.5,1656.57) CenPtnInPanel=(-98,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1420.42,1632.87) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1405.5,1656.57) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1420.42,1632.87) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1405.5,1656.57) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1420.42,1632.87) CenPtnInPanel=(-126,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1405.5,1656.57) CenPtnInPanel=(-154,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1420.42,1632.87) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1405.5,1656.57) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1420.42,1632.87) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1405.5,1656.57) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1420.42,1632.87) CenPtnInPanel=(-182,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1405.5,1656.57) CenPtnInPanel=(-210,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1420.42,1632.87) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1420.42,1632.87) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 34 { PMT Rich1 Top } Module(Col:NInCol)=5:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1405.5,1656.57) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1405.5,1656.57) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1420.42,1632.87) CenPtnInPanel=(-238,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1405.5,1656.57) CenPtnInPanel=(-266,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1420.42,1632.87) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1405.5,1656.57) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1420.42,1632.87) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1405.5,1656.57) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1420.42,1632.87) CenPtnInPanel=(-294,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1405.5,1656.57) CenPtnInPanel=(-322,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1420.42,1632.87) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1405.5,1656.57) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1420.42,1632.87) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1405.5,1656.57) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1420.42,1632.87) CenPtnInPanel=(-350,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1405.5,1656.57) CenPtnInPanel=(-378,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1420.42,1632.87) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1405.5,1656.57) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1420.42,1632.87) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1405.5,1656.57) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1420.42,1632.87) CenPtnInPanel=(-406,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1405.5,1656.57) CenPtnInPanel=(-434,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1420.42,1632.87) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1420.42,1632.87) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 35 { PMT Rich1 Top } Module(Col:NInCol)=5:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1405.5,1656.57) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1405.5,1656.57) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1420.42,1632.87) CenPtnInPanel=(-462,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1405.5,1656.57) CenPtnInPanel=(-490,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1420.42,1632.87) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1405.5,1656.57) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1420.42,1632.87) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1405.5,1656.57) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,05 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1420.42,1632.87) CenPtnInPanel=(-518,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1405.5,1656.57) CenPtnInPanel=(-546,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1420.42,1632.87) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1405.5,1656.57) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1420.42,1632.87) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1405.5,1656.57) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1420.42,1632.87) CenPtnInPanel=(-574,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1405.5,1656.57) CenPtnInPanel=(-602,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1420.42,1632.87) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1420.42,1632.87) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 36 { PMT Rich1 Top } Module(Col:NInCol)=6:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1375.39,1704.38) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1375.39,1704.38) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,05 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1390.31,1680.68) CenPtnInPanel=(602,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1375.39,1704.38) CenPtnInPanel=(574,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1390.31,1680.68) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1375.39,1704.38) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1390.31,1680.68) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1375.39,1704.38) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,09 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1390.31,1680.68) CenPtnInPanel=(546,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1375.39,1704.38) CenPtnInPanel=(518,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1390.31,1680.68) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1375.39,1704.38) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1390.31,1680.68) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1375.39,1704.38) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,13 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1390.31,1680.68) CenPtnInPanel=(490,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1375.39,1704.38) CenPtnInPanel=(462,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1390.31,1680.68) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1390.31,1680.68) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 37 { PMT Rich1 Top } Module(Col:NInCol)=6:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1375.39,1704.38) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1375.39,1704.38) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1390.31,1680.68) CenPtnInPanel=(434,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1375.39,1704.38) CenPtnInPanel=(406,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1390.31,1680.68) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1375.39,1704.38) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1390.31,1680.68) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1375.39,1704.38) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1390.31,1680.68) CenPtnInPanel=(378,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1375.39,1704.38) CenPtnInPanel=(350,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1390.31,1680.68) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1375.39,1704.38) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1390.31,1680.68) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1375.39,1704.38) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1390.31,1680.68) CenPtnInPanel=(322,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1375.39,1704.38) CenPtnInPanel=(294,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1390.31,1680.68) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1375.39,1704.38) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1390.31,1680.68) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1375.39,1704.38) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1390.31,1680.68) CenPtnInPanel=(266,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1375.39,1704.38) CenPtnInPanel=(238,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1390.31,1680.68) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1390.31,1680.68) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 38 { PMT Rich1 Top } Module(Col:NInCol)=6:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1375.39,1704.38) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1375.39,1704.38) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1390.31,1680.68) CenPtnInPanel=(210,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1375.39,1704.38) CenPtnInPanel=(182,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1390.31,1680.68) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1375.39,1704.38) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1390.31,1680.68) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1375.39,1704.38) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1390.31,1680.68) CenPtnInPanel=(154,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1375.39,1704.38) CenPtnInPanel=(126,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1390.31,1680.68) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1375.39,1704.38) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1390.31,1680.68) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1375.39,1704.38) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1390.31,1680.68) CenPtnInPanel=(98,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1375.39,1704.38) CenPtnInPanel=(70,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1390.31,1680.68) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1375.39,1704.38) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1390.31,1680.68) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1375.39,1704.38) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1390.31,1680.68) CenPtnInPanel=(42,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1375.39,1704.38) CenPtnInPanel=(14,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1390.31,1680.68) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1390.31,1680.68) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 39 { PMT Rich1 Top } Module(Col:NInCol)=6:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1375.39,1704.38) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1375.39,1704.38) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1390.31,1680.68) CenPtnInPanel=(-14,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1375.39,1704.38) CenPtnInPanel=(-42,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1390.31,1680.68) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1375.39,1704.38) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1390.31,1680.68) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1375.39,1704.38) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1390.31,1680.68) CenPtnInPanel=(-70,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1375.39,1704.38) CenPtnInPanel=(-98,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1390.31,1680.68) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1375.39,1704.38) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1390.31,1680.68) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1375.39,1704.38) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1390.31,1680.68) CenPtnInPanel=(-126,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1375.39,1704.38) CenPtnInPanel=(-154,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1390.31,1680.68) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1375.39,1704.38) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1390.31,1680.68) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1375.39,1704.38) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1390.31,1680.68) CenPtnInPanel=(-182,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1375.39,1704.38) CenPtnInPanel=(-210,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1390.31,1680.68) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1390.31,1680.68) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 40 { PMT Rich1 Top } Module(Col:NInCol)=6:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1375.39,1704.38) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1375.39,1704.38) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1390.31,1680.68) CenPtnInPanel=(-238,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1375.39,1704.38) CenPtnInPanel=(-266,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1390.31,1680.68) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1375.39,1704.38) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1390.31,1680.68) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1375.39,1704.38) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1390.31,1680.68) CenPtnInPanel=(-294,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1375.39,1704.38) CenPtnInPanel=(-322,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1390.31,1680.68) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1375.39,1704.38) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1390.31,1680.68) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1375.39,1704.38) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1390.31,1680.68) CenPtnInPanel=(-350,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1375.39,1704.38) CenPtnInPanel=(-378,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1390.31,1680.68) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1375.39,1704.38) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1390.31,1680.68) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1375.39,1704.38) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1390.31,1680.68) CenPtnInPanel=(-406,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1375.39,1704.38) CenPtnInPanel=(-434,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1390.31,1680.68) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1390.31,1680.68) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 41 { PMT Rich1 Top } Module(Col:NInCol)=6:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1375.39,1704.38) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1375.39,1704.38) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1390.31,1680.68) CenPtnInPanel=(-462,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1375.39,1704.38) CenPtnInPanel=(-490,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1390.31,1680.68) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1375.39,1704.38) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1390.31,1680.68) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1375.39,1704.38) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,05 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1390.31,1680.68) CenPtnInPanel=(-518,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1375.39,1704.38) CenPtnInPanel=(-546,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1390.31,1680.68) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1375.39,1704.38) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1390.31,1680.68) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1375.39,1704.38) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1390.31,1680.68) CenPtnInPanel=(-574,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1375.39,1704.38) CenPtnInPanel=(-602,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1390.31,1680.68) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1390.31,1680.68) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 42 { PMT Rich1 Top } Module(Col:NInCol)=7:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1345.29,1752.19) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1345.29,1752.19) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1360.21,1728.49) CenPtnInPanel=(602,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1345.29,1752.19) CenPtnInPanel=(574,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1360.21,1728.49) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1345.29,1752.19) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1360.21,1728.49) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1345.29,1752.19) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1360.21,1728.49) CenPtnInPanel=(546,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,10 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1345.29,1752.19) CenPtnInPanel=(518,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1360.21,1728.49) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1345.29,1752.19) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1360.21,1728.49) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1345.29,1752.19) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1360.21,1728.49) CenPtnInPanel=(490,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1345.29,1752.19) CenPtnInPanel=(462,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1360.21,1728.49) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1360.21,1728.49) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 43 { PMT Rich1 Top } Module(Col:NInCol)=7:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1345.29,1752.19) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1345.29,1752.19) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1360.21,1728.49) CenPtnInPanel=(434,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1345.29,1752.19) CenPtnInPanel=(406,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1360.21,1728.49) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1345.29,1752.19) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1360.21,1728.49) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1345.29,1752.19) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1360.21,1728.49) CenPtnInPanel=(378,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1345.29,1752.19) CenPtnInPanel=(350,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1360.21,1728.49) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1345.29,1752.19) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1360.21,1728.49) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1345.29,1752.19) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1360.21,1728.49) CenPtnInPanel=(322,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1345.29,1752.19) CenPtnInPanel=(294,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1360.21,1728.49) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1345.29,1752.19) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1360.21,1728.49) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1345.29,1752.19) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1360.21,1728.49) CenPtnInPanel=(266,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1345.29,1752.19) CenPtnInPanel=(238,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1360.21,1728.49) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1360.21,1728.49) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 44 { PMT Rich1 Top } Module(Col:NInCol)=7:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1345.29,1752.19) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1345.29,1752.19) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1360.21,1728.49) CenPtnInPanel=(210,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1345.29,1752.19) CenPtnInPanel=(182,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1360.21,1728.49) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1345.29,1752.19) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1360.21,1728.49) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1345.29,1752.19) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1360.21,1728.49) CenPtnInPanel=(154,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1345.29,1752.19) CenPtnInPanel=(126,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1360.21,1728.49) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1345.29,1752.19) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1360.21,1728.49) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1345.29,1752.19) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1360.21,1728.49) CenPtnInPanel=(98,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1345.29,1752.19) CenPtnInPanel=(70,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1360.21,1728.49) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1345.29,1752.19) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1360.21,1728.49) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1345.29,1752.19) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1360.21,1728.49) CenPtnInPanel=(42,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1345.29,1752.19) CenPtnInPanel=(14,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1360.21,1728.49) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1360.21,1728.49) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 45 { PMT Rich1 Top } Module(Col:NInCol)=7:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1345.29,1752.19) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1345.29,1752.19) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1360.21,1728.49) CenPtnInPanel=(-14,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1345.29,1752.19) CenPtnInPanel=(-42,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1360.21,1728.49) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1345.29,1752.19) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1360.21,1728.49) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1345.29,1752.19) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1360.21,1728.49) CenPtnInPanel=(-70,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1345.29,1752.19) CenPtnInPanel=(-98,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1360.21,1728.49) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1345.29,1752.19) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1360.21,1728.49) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1345.29,1752.19) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1360.21,1728.49) CenPtnInPanel=(-126,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1345.29,1752.19) CenPtnInPanel=(-154,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1360.21,1728.49) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1345.29,1752.19) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1360.21,1728.49) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1345.29,1752.19) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1360.21,1728.49) CenPtnInPanel=(-182,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1345.29,1752.19) CenPtnInPanel=(-210,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1360.21,1728.49) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1360.21,1728.49) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 46 { PMT Rich1 Top } Module(Col:NInCol)=7:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1345.29,1752.19) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1345.29,1752.19) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1360.21,1728.49) CenPtnInPanel=(-238,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1345.29,1752.19) CenPtnInPanel=(-266,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1360.21,1728.49) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1345.29,1752.19) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1360.21,1728.49) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1345.29,1752.19) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1360.21,1728.49) CenPtnInPanel=(-294,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1345.29,1752.19) CenPtnInPanel=(-322,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1360.21,1728.49) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1345.29,1752.19) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1360.21,1728.49) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1345.29,1752.19) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1360.21,1728.49) CenPtnInPanel=(-350,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1345.29,1752.19) CenPtnInPanel=(-378,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1360.21,1728.49) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1345.29,1752.19) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1360.21,1728.49) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1345.29,1752.19) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1360.21,1728.49) CenPtnInPanel=(-406,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1345.29,1752.19) CenPtnInPanel=(-434,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1360.21,1728.49) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1360.21,1728.49) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 47 { PMT Rich1 Top } Module(Col:NInCol)=7:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1345.29,1752.19) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1345.29,1752.19) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1360.21,1728.49) CenPtnInPanel=(-462,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1345.29,1752.19) CenPtnInPanel=(-490,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1360.21,1728.49) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1345.29,1752.19) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1360.21,1728.49) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1345.29,1752.19) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,05 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1360.21,1728.49) CenPtnInPanel=(-518,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,06 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1345.29,1752.19) CenPtnInPanel=(-546,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1360.21,1728.49) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1345.29,1752.19) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1360.21,1728.49) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1345.29,1752.19) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1360.21,1728.49) CenPtnInPanel=(-574,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1345.29,1752.19) CenPtnInPanel=(-602,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1360.21,1728.49) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1360.21,1728.49) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 48 { PMT Rich1 Top } Module(Col:NInCol)=8:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1315.18,1800) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1315.18,1800) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,05 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1330.1,1776.3) CenPtnInPanel=(602,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,06 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1315.18,1800) CenPtnInPanel=(574,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1330.1,1776.3) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1315.18,1800) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1330.1,1776.3) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1315.18,1800) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1330.1,1776.3) CenPtnInPanel=(546,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1315.18,1800) CenPtnInPanel=(518,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1330.1,1776.3) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1315.18,1800) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1330.1,1776.3) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1315.18,1800) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1330.1,1776.3) CenPtnInPanel=(490,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1315.18,1800) CenPtnInPanel=(462,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1330.1,1776.3) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1330.1,1776.3) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 49 { PMT Rich1 Top } Module(Col:NInCol)=8:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1315.18,1800) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1315.18,1800) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1330.1,1776.3) CenPtnInPanel=(434,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1315.18,1800) CenPtnInPanel=(406,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1330.1,1776.3) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1315.18,1800) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1330.1,1776.3) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1315.18,1800) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1330.1,1776.3) CenPtnInPanel=(378,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1315.18,1800) CenPtnInPanel=(350,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1330.1,1776.3) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1315.18,1800) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1330.1,1776.3) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1315.18,1800) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1330.1,1776.3) CenPtnInPanel=(322,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1315.18,1800) CenPtnInPanel=(294,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1330.1,1776.3) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1315.18,1800) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1330.1,1776.3) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1315.18,1800) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1330.1,1776.3) CenPtnInPanel=(266,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1315.18,1800) CenPtnInPanel=(238,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1330.1,1776.3) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1330.1,1776.3) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 50 { PMT Rich1 Top } Module(Col:NInCol)=8:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1315.18,1800) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1315.18,1800) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1330.1,1776.3) CenPtnInPanel=(210,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1315.18,1800) CenPtnInPanel=(182,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1330.1,1776.3) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1315.18,1800) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1330.1,1776.3) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1315.18,1800) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1330.1,1776.3) CenPtnInPanel=(154,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1315.18,1800) CenPtnInPanel=(126,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1330.1,1776.3) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1315.18,1800) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1330.1,1776.3) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1315.18,1800) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1330.1,1776.3) CenPtnInPanel=(98,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1315.18,1800) CenPtnInPanel=(70,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1330.1,1776.3) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1315.18,1800) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1330.1,1776.3) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1315.18,1800) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1330.1,1776.3) CenPtnInPanel=(42,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1315.18,1800) CenPtnInPanel=(14,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1330.1,1776.3) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1330.1,1776.3) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 51 { PMT Rich1 Top } Module(Col:NInCol)=8:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1315.18,1800) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1315.18,1800) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1330.1,1776.3) CenPtnInPanel=(-14,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1315.18,1800) CenPtnInPanel=(-42,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1330.1,1776.3) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1315.18,1800) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1330.1,1776.3) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1315.18,1800) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1330.1,1776.3) CenPtnInPanel=(-70,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1315.18,1800) CenPtnInPanel=(-98,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1330.1,1776.3) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1315.18,1800) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1330.1,1776.3) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1315.18,1800) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1330.1,1776.3) CenPtnInPanel=(-126,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1315.18,1800) CenPtnInPanel=(-154,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1330.1,1776.3) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1315.18,1800) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1330.1,1776.3) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1315.18,1800) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1330.1,1776.3) CenPtnInPanel=(-182,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1315.18,1800) CenPtnInPanel=(-210,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1330.1,1776.3) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1330.1,1776.3) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 52 { PMT Rich1 Top } Module(Col:NInCol)=8:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1315.18,1800) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1315.18,1800) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1330.1,1776.3) CenPtnInPanel=(-238,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1315.18,1800) CenPtnInPanel=(-266,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1330.1,1776.3) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1315.18,1800) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1330.1,1776.3) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1315.18,1800) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1330.1,1776.3) CenPtnInPanel=(-294,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1315.18,1800) CenPtnInPanel=(-322,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1330.1,1776.3) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1315.18,1800) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1330.1,1776.3) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1315.18,1800) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1330.1,1776.3) CenPtnInPanel=(-350,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1315.18,1800) CenPtnInPanel=(-378,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1330.1,1776.3) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1315.18,1800) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1330.1,1776.3) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1315.18,1800) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1330.1,1776.3) CenPtnInPanel=(-406,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1315.18,1800) CenPtnInPanel=(-434,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1330.1,1776.3) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1330.1,1776.3) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 53 { PMT Rich1 Top } Module(Col:NInCol)=8:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1315.18,1800) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1315.18,1800) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1330.1,1776.3) CenPtnInPanel=(-462,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1315.18,1800) CenPtnInPanel=(-490,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1330.1,1776.3) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1315.18,1800) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1330.1,1776.3) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1315.18,1800) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1330.1,1776.3) CenPtnInPanel=(-518,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1315.18,1800) CenPtnInPanel=(-546,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1330.1,1776.3) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1315.18,1800) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1330.1,1776.3) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1315.18,1800) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1330.1,1776.3) CenPtnInPanel=(-574,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1315.18,1800) CenPtnInPanel=(-602,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1330.1,1776.3) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1330.1,1776.3) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 54 { PMT Rich1 Top } Module(Col:NInCol)=9:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1285.07,1847.81) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1285.07,1847.81) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1299.99,1824.11) CenPtnInPanel=(602,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1285.07,1847.81) CenPtnInPanel=(574,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1299.99,1824.11) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1285.07,1847.81) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1299.99,1824.11) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1285.07,1847.81) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1299.99,1824.11) CenPtnInPanel=(546,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1285.07,1847.81) CenPtnInPanel=(518,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1299.99,1824.11) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1285.07,1847.81) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1299.99,1824.11) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1285.07,1847.81) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1299.99,1824.11) CenPtnInPanel=(490,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1285.07,1847.81) CenPtnInPanel=(462,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1299.99,1824.11) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1299.99,1824.11) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 55 { PMT Rich1 Top } Module(Col:NInCol)=9:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1285.07,1847.81) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1285.07,1847.81) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1299.99,1824.11) CenPtnInPanel=(434,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1285.07,1847.81) CenPtnInPanel=(406,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1299.99,1824.11) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1285.07,1847.81) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1299.99,1824.11) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1285.07,1847.81) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1299.99,1824.11) CenPtnInPanel=(378,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1285.07,1847.81) CenPtnInPanel=(350,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1299.99,1824.11) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1285.07,1847.81) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1299.99,1824.11) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1285.07,1847.81) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1299.99,1824.11) CenPtnInPanel=(322,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1285.07,1847.81) CenPtnInPanel=(294,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1299.99,1824.11) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1285.07,1847.81) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1299.99,1824.11) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1285.07,1847.81) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1299.99,1824.11) CenPtnInPanel=(266,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1285.07,1847.81) CenPtnInPanel=(238,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1299.99,1824.11) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1299.99,1824.11) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 56 { PMT Rich1 Top } Module(Col:NInCol)=9:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1285.07,1847.81) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1285.07,1847.81) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1299.99,1824.11) CenPtnInPanel=(210,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1285.07,1847.81) CenPtnInPanel=(182,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1299.99,1824.11) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1285.07,1847.81) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1299.99,1824.11) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1285.07,1847.81) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1299.99,1824.11) CenPtnInPanel=(154,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1285.07,1847.81) CenPtnInPanel=(126,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1299.99,1824.11) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1285.07,1847.81) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1299.99,1824.11) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1285.07,1847.81) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1299.99,1824.11) CenPtnInPanel=(98,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1285.07,1847.81) CenPtnInPanel=(70,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1299.99,1824.11) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1285.07,1847.81) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1299.99,1824.11) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1285.07,1847.81) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1299.99,1824.11) CenPtnInPanel=(42,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1285.07,1847.81) CenPtnInPanel=(14,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1299.99,1824.11) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1299.99,1824.11) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 57 { PMT Rich1 Top } Module(Col:NInCol)=9:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1285.07,1847.81) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1285.07,1847.81) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1299.99,1824.11) CenPtnInPanel=(-14,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1285.07,1847.81) CenPtnInPanel=(-42,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1299.99,1824.11) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1285.07,1847.81) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1299.99,1824.11) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1285.07,1847.81) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1299.99,1824.11) CenPtnInPanel=(-70,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1285.07,1847.81) CenPtnInPanel=(-98,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1299.99,1824.11) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1285.07,1847.81) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1299.99,1824.11) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1285.07,1847.81) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1299.99,1824.11) CenPtnInPanel=(-126,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1285.07,1847.81) CenPtnInPanel=(-154,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1299.99,1824.11) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1285.07,1847.81) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1299.99,1824.11) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1285.07,1847.81) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1299.99,1824.11) CenPtnInPanel=(-182,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1285.07,1847.81) CenPtnInPanel=(-210,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1299.99,1824.11) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1299.99,1824.11) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 58 { PMT Rich1 Top } Module(Col:NInCol)=9:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1285.07,1847.81) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1285.07,1847.81) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1299.99,1824.11) CenPtnInPanel=(-238,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1285.07,1847.81) CenPtnInPanel=(-266,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1299.99,1824.11) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1285.07,1847.81) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1299.99,1824.11) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1285.07,1847.81) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1299.99,1824.11) CenPtnInPanel=(-294,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1285.07,1847.81) CenPtnInPanel=(-322,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1299.99,1824.11) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1285.07,1847.81) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1299.99,1824.11) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1285.07,1847.81) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1299.99,1824.11) CenPtnInPanel=(-350,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1285.07,1847.81) CenPtnInPanel=(-378,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1299.99,1824.11) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1285.07,1847.81) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1299.99,1824.11) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1285.07,1847.81) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1299.99,1824.11) CenPtnInPanel=(-406,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1285.07,1847.81) CenPtnInPanel=(-434,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1299.99,1824.11) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1299.99,1824.11) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 59 { PMT Rich1 Top } Module(Col:NInCol)=9:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1285.07,1847.81) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1285.07,1847.81) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1299.99,1824.11) CenPtnInPanel=(-462,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1285.07,1847.81) CenPtnInPanel=(-490,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1299.99,1824.11) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1285.07,1847.81) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1299.99,1824.11) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1285.07,1847.81) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1299.99,1824.11) CenPtnInPanel=(-518,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1285.07,1847.81) CenPtnInPanel=(-546,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1299.99,1824.11) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1285.07,1847.81) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1299.99,1824.11) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1285.07,1847.81) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1299.99,1824.11) CenPtnInPanel=(-574,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1285.07,1847.81) CenPtnInPanel=(-602,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1299.99,1824.11) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1299.99,1824.11) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 60 { PMT Rich1 Top } Module(Col:NInCol)=10:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1254.96,1895.62) CenPtnInPanel=(602,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1254.96,1895.62) CenPtnInPanel=(602,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1269.88,1871.92) CenPtnInPanel=(602,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,06 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1254.96,1895.62) CenPtnInPanel=(574,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1269.88,1871.92) CenPtnInPanel=(574,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1254.96,1895.62) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1269.88,1871.92) CenPtnInPanel=(574,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1254.96,1895.62) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1269.88,1871.92) CenPtnInPanel=(546,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,10 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1254.96,1895.62) CenPtnInPanel=(518,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1269.88,1871.92) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1254.96,1895.62) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1269.88,1871.92) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1254.96,1895.62) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1269.88,1871.92) CenPtnInPanel=(490,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1254.96,1895.62) CenPtnInPanel=(462,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1269.88,1871.92) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1269.88,1871.92) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 61 { PMT Rich1 Top } Module(Col:NInCol)=10:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1254.96,1895.62) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1254.96,1895.62) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1269.88,1871.92) CenPtnInPanel=(434,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1254.96,1895.62) CenPtnInPanel=(406,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1269.88,1871.92) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1254.96,1895.62) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1269.88,1871.92) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1254.96,1895.62) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1269.88,1871.92) CenPtnInPanel=(378,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1254.96,1895.62) CenPtnInPanel=(350,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1269.88,1871.92) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1254.96,1895.62) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1269.88,1871.92) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1254.96,1895.62) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1269.88,1871.92) CenPtnInPanel=(322,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1254.96,1895.62) CenPtnInPanel=(294,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1269.88,1871.92) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1254.96,1895.62) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1269.88,1871.92) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1254.96,1895.62) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1269.88,1871.92) CenPtnInPanel=(266,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1254.96,1895.62) CenPtnInPanel=(238,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1269.88,1871.92) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1269.88,1871.92) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 62 { PMT Rich1 Top } Module(Col:NInCol)=10:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1254.96,1895.62) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1254.96,1895.62) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1269.88,1871.92) CenPtnInPanel=(210,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1254.96,1895.62) CenPtnInPanel=(182,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1269.88,1871.92) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1254.96,1895.62) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1269.88,1871.92) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1254.96,1895.62) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1269.88,1871.92) CenPtnInPanel=(154,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1254.96,1895.62) CenPtnInPanel=(126,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1269.88,1871.92) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1254.96,1895.62) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1269.88,1871.92) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1254.96,1895.62) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1269.88,1871.92) CenPtnInPanel=(98,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1254.96,1895.62) CenPtnInPanel=(70,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1269.88,1871.92) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1254.96,1895.62) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1269.88,1871.92) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1254.96,1895.62) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1269.88,1871.92) CenPtnInPanel=(42,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1254.96,1895.62) CenPtnInPanel=(14,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1269.88,1871.92) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1269.88,1871.92) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 63 { PMT Rich1 Top } Module(Col:NInCol)=10:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1254.96,1895.62) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1254.96,1895.62) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1269.88,1871.92) CenPtnInPanel=(-14,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1254.96,1895.62) CenPtnInPanel=(-42,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1269.88,1871.92) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1254.96,1895.62) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1269.88,1871.92) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1254.96,1895.62) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1269.88,1871.92) CenPtnInPanel=(-70,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1254.96,1895.62) CenPtnInPanel=(-98,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1269.88,1871.92) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1254.96,1895.62) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1269.88,1871.92) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1254.96,1895.62) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1269.88,1871.92) CenPtnInPanel=(-126,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1254.96,1895.62) CenPtnInPanel=(-154,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1269.88,1871.92) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1254.96,1895.62) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1269.88,1871.92) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1254.96,1895.62) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1269.88,1871.92) CenPtnInPanel=(-182,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1254.96,1895.62) CenPtnInPanel=(-210,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1269.88,1871.92) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1269.88,1871.92) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 64 { PMT Rich1 Top } Module(Col:NInCol)=10:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1254.96,1895.62) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1254.96,1895.62) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1269.88,1871.92) CenPtnInPanel=(-238,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1254.96,1895.62) CenPtnInPanel=(-266,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1269.88,1871.92) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1254.96,1895.62) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1269.88,1871.92) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1254.96,1895.62) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1269.88,1871.92) CenPtnInPanel=(-294,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1254.96,1895.62) CenPtnInPanel=(-322,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1269.88,1871.92) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1254.96,1895.62) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1269.88,1871.92) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1254.96,1895.62) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1269.88,1871.92) CenPtnInPanel=(-350,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1254.96,1895.62) CenPtnInPanel=(-378,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1269.88,1871.92) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1254.96,1895.62) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1269.88,1871.92) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1254.96,1895.62) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1269.88,1871.92) CenPtnInPanel=(-406,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1254.96,1895.62) CenPtnInPanel=(-434,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1269.88,1871.92) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1269.88,1871.92) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 65 { PMT Rich1 Top } Module(Col:NInCol)=10:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1254.96,1895.62) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1254.96,1895.62) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1269.88,1871.92) CenPtnInPanel=(-462,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1254.96,1895.62) CenPtnInPanel=(-490,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1269.88,1871.92) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1254.96,1895.62) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1269.88,1871.92) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1254.96,1895.62) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,05 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1269.88,1871.92) CenPtnInPanel=(-518,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1254.96,1895.62) CenPtnInPanel=(-546,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1269.88,1871.92) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1254.96,1895.62) CenPtnInPanel=(-574,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1269.88,1871.92) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1254.96,1895.62) CenPtnInPanel=(-574,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,09 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1269.88,1871.92) CenPtnInPanel=(-574,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1254.96,1895.62) CenPtnInPanel=(-602,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1269.88,1871.92) CenPtnInPanel=(-602,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1269.88,1871.92) CenPtnInPanel=(-602,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG  -> [ Rich1 bottom NumPDModules=92 ModNumOffset=66 ZShift=-40.2 CentrePtnInGlo=(0,-1242.12,1904.37) (x,y)HalfSizes=+-(672,310.75)  DetectionPlane=[ 0 0.846193 -0.532877 2065.87 ]
 TestDerivedDets     DEBUG   PDPanelToGlo=
 TestDerivedDets     DEBUG [ 1 -0 0 0
@@ -1120,1031 +1120,1032 @@ TestDerivedDets     DEBUG [ 1 -0 0 0
 TestDerivedDets     DEBUG   -0 0.532877 -0.846193 -1441.73
 TestDerivedDets     DEBUG   -0 0.846193 0.532877 1662.84 ]
 TestDerivedDets     DEBUG   -> PD Module 66 { PMT Rich1 Bot } Module(Col:NInCol)=0:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1556.04,1417.52) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1556.04,1417.52) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,09 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1570.96,1393.82) CenPtnInPanel=(-546,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1556.04,1417.52) CenPtnInPanel=(-518,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1570.96,1393.82) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1556.04,1417.52) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1570.96,1393.82) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1556.04,1417.52) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1570.96,1393.82) CenPtnInPanel=(-490,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,14 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1556.04,1417.52) CenPtnInPanel=(-462,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1570.96,1393.82) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1570.96,1393.82) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 67 { PMT Rich1 Bot } Module(Col:NInCol)=0:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1556.04,1417.52) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1556.04,1417.52) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1570.96,1393.82) CenPtnInPanel=(-434,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1556.04,1417.52) CenPtnInPanel=(-406,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1570.96,1393.82) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1556.04,1417.52) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1570.96,1393.82) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1556.04,1417.52) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1570.96,1393.82) CenPtnInPanel=(-378,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1556.04,1417.52) CenPtnInPanel=(-350,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1570.96,1393.82) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1556.04,1417.52) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1570.96,1393.82) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1556.04,1417.52) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1570.96,1393.82) CenPtnInPanel=(-322,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1556.04,1417.52) CenPtnInPanel=(-294,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1570.96,1393.82) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1556.04,1417.52) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1570.96,1393.82) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1556.04,1417.52) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1570.96,1393.82) CenPtnInPanel=(-266,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1556.04,1417.52) CenPtnInPanel=(-238,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1570.96,1393.82) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1570.96,1393.82) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 68 { PMT Rich1 Bot } Module(Col:NInCol)=0:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1556.04,1417.52) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1556.04,1417.52) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1570.96,1393.82) CenPtnInPanel=(-210,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1556.04,1417.52) CenPtnInPanel=(-182,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1570.96,1393.82) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1556.04,1417.52) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1570.96,1393.82) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1556.04,1417.52) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1570.96,1393.82) CenPtnInPanel=(-154,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1556.04,1417.52) CenPtnInPanel=(-126,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1570.96,1393.82) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1556.04,1417.52) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1570.96,1393.82) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1556.04,1417.52) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1570.96,1393.82) CenPtnInPanel=(-98,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1556.04,1417.52) CenPtnInPanel=(-70,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1570.96,1393.82) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1556.04,1417.52) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1570.96,1393.82) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1556.04,1417.52) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1570.96,1393.82) CenPtnInPanel=(-42,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1556.04,1417.52) CenPtnInPanel=(-14,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1570.96,1393.82) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1570.96,1393.82) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 69 { PMT Rich1 Bot } Module(Col:NInCol)=0:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1556.04,1417.52) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1556.04,1417.52) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1570.96,1393.82) CenPtnInPanel=(14,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1556.04,1417.52) CenPtnInPanel=(42,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1570.96,1393.82) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1556.04,1417.52) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1570.96,1393.82) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1556.04,1417.52) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1570.96,1393.82) CenPtnInPanel=(70,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1556.04,1417.52) CenPtnInPanel=(98,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1570.96,1393.82) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1556.04,1417.52) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1570.96,1393.82) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1556.04,1417.52) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1570.96,1393.82) CenPtnInPanel=(126,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1556.04,1417.52) CenPtnInPanel=(154,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1570.96,1393.82) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1556.04,1417.52) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1570.96,1393.82) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1556.04,1417.52) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1570.96,1393.82) CenPtnInPanel=(182,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1556.04,1417.52) CenPtnInPanel=(210,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1570.96,1393.82) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1570.96,1393.82) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 70 { PMT Rich1 Bot } Module(Col:NInCol)=0:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1556.04,1417.52) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1556.04,1417.52) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1570.96,1393.82) CenPtnInPanel=(238,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1556.04,1417.52) CenPtnInPanel=(266,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1570.96,1393.82) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1556.04,1417.52) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1570.96,1393.82) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1556.04,1417.52) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1570.96,1393.82) CenPtnInPanel=(294,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1556.04,1417.52) CenPtnInPanel=(322,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1570.96,1393.82) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1556.04,1417.52) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1570.96,1393.82) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1556.04,1417.52) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1570.96,1393.82) CenPtnInPanel=(350,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1556.04,1417.52) CenPtnInPanel=(378,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1570.96,1393.82) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1556.04,1417.52) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1570.96,1393.82) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1556.04,1417.52) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1570.96,1393.82) CenPtnInPanel=(406,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1556.04,1417.52) CenPtnInPanel=(434,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1570.96,1393.82) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1570.96,1393.82) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 71 { PMT Rich1 Bot } Module(Col:NInCol)=0:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1556.04,1417.52) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1556.04,1417.52) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1570.96,1393.82) CenPtnInPanel=(462,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1556.04,1417.52) CenPtnInPanel=(490,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1570.96,1393.82) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1556.04,1417.52) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1570.96,1393.82) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1556.04,1417.52) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,05 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1570.96,1393.82) CenPtnInPanel=(518,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1556.04,1417.52) CenPtnInPanel=(546,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1570.96,1393.82) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1570.96,1393.82) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 72 { PMT Rich1 Bot } Module(Col:NInCol)=1:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1525.93,1465.33) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1525.93,1465.33) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1540.85,1441.63) CenPtnInPanel=(-602,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1525.93,1465.33) CenPtnInPanel=(-574,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1540.85,1441.63) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1525.93,1465.33) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1540.85,1441.63) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1525.93,1465.33) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,09 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1540.85,1441.63) CenPtnInPanel=(-546,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,10 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1525.93,1465.33) CenPtnInPanel=(-518,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1540.85,1441.63) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1525.93,1465.33) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1540.85,1441.63) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1525.93,1465.33) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,13 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1540.85,1441.63) CenPtnInPanel=(-490,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,14 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1525.93,1465.33) CenPtnInPanel=(-462,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1540.85,1441.63) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1540.85,1441.63) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 73 { PMT Rich1 Bot } Module(Col:NInCol)=1:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1525.93,1465.33) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1525.93,1465.33) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1540.85,1441.63) CenPtnInPanel=(-434,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1525.93,1465.33) CenPtnInPanel=(-406,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1540.85,1441.63) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1525.93,1465.33) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1540.85,1441.63) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1525.93,1465.33) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1540.85,1441.63) CenPtnInPanel=(-378,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1525.93,1465.33) CenPtnInPanel=(-350,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1540.85,1441.63) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1525.93,1465.33) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1540.85,1441.63) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1525.93,1465.33) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1540.85,1441.63) CenPtnInPanel=(-322,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1525.93,1465.33) CenPtnInPanel=(-294,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1540.85,1441.63) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1525.93,1465.33) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1540.85,1441.63) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1525.93,1465.33) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1540.85,1441.63) CenPtnInPanel=(-266,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,14 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1525.93,1465.33) CenPtnInPanel=(-238,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1540.85,1441.63) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1540.85,1441.63) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 74 { PMT Rich1 Bot } Module(Col:NInCol)=1:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1525.93,1465.33) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1525.93,1465.33) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1540.85,1441.63) CenPtnInPanel=(-210,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1525.93,1465.33) CenPtnInPanel=(-182,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1540.85,1441.63) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1525.93,1465.33) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1540.85,1441.63) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1525.93,1465.33) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1540.85,1441.63) CenPtnInPanel=(-154,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1525.93,1465.33) CenPtnInPanel=(-126,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1540.85,1441.63) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1525.93,1465.33) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1540.85,1441.63) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1525.93,1465.33) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1540.85,1441.63) CenPtnInPanel=(-98,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1525.93,1465.33) CenPtnInPanel=(-70,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1540.85,1441.63) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1525.93,1465.33) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1540.85,1441.63) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1525.93,1465.33) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1540.85,1441.63) CenPtnInPanel=(-42,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1525.93,1465.33) CenPtnInPanel=(-14,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1540.85,1441.63) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1540.85,1441.63) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 75 { PMT Rich1 Bot } Module(Col:NInCol)=1:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1525.93,1465.33) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1525.93,1465.33) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1540.85,1441.63) CenPtnInPanel=(14,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1525.93,1465.33) CenPtnInPanel=(42,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1540.85,1441.63) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1525.93,1465.33) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1540.85,1441.63) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1525.93,1465.33) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1540.85,1441.63) CenPtnInPanel=(70,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1525.93,1465.33) CenPtnInPanel=(98,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1540.85,1441.63) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1525.93,1465.33) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1540.85,1441.63) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1525.93,1465.33) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1540.85,1441.63) CenPtnInPanel=(126,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1525.93,1465.33) CenPtnInPanel=(154,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1540.85,1441.63) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1525.93,1465.33) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1540.85,1441.63) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1525.93,1465.33) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1540.85,1441.63) CenPtnInPanel=(182,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1525.93,1465.33) CenPtnInPanel=(210,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1540.85,1441.63) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1540.85,1441.63) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 76 { PMT Rich1 Bot } Module(Col:NInCol)=1:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1525.93,1465.33) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1525.93,1465.33) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1540.85,1441.63) CenPtnInPanel=(238,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1525.93,1465.33) CenPtnInPanel=(266,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1540.85,1441.63) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1525.93,1465.33) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1540.85,1441.63) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1525.93,1465.33) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1540.85,1441.63) CenPtnInPanel=(294,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1525.93,1465.33) CenPtnInPanel=(322,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1540.85,1441.63) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1525.93,1465.33) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1540.85,1441.63) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1525.93,1465.33) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1540.85,1441.63) CenPtnInPanel=(350,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1525.93,1465.33) CenPtnInPanel=(378,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1540.85,1441.63) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1525.93,1465.33) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1540.85,1441.63) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1525.93,1465.33) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1540.85,1441.63) CenPtnInPanel=(406,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1525.93,1465.33) CenPtnInPanel=(434,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1540.85,1441.63) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1540.85,1441.63) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 77 { PMT Rich1 Bot } Module(Col:NInCol)=1:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1525.93,1465.33) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1525.93,1465.33) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1540.85,1441.63) CenPtnInPanel=(462,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1525.93,1465.33) CenPtnInPanel=(490,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1540.85,1441.63) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1525.93,1465.33) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1540.85,1441.63) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1525.93,1465.33) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1540.85,1441.63) CenPtnInPanel=(518,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1525.93,1465.33) CenPtnInPanel=(546,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1540.85,1441.63) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1525.93,1465.33) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1540.85,1441.63) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1525.93,1465.33) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1540.85,1441.63) CenPtnInPanel=(574,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1525.93,1465.33) CenPtnInPanel=(602,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1540.85,1441.63) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1540.85,1441.63) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 78 { PMT Rich1 Bot } Module(Col:NInCol)=2:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1495.82,1513.14) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1495.82,1513.14) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1510.74,1489.44) CenPtnInPanel=(-602,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1495.82,1513.14) CenPtnInPanel=(-574,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1510.74,1489.44) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1495.82,1513.14) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1510.74,1489.44) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1495.82,1513.14) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1510.74,1489.44) CenPtnInPanel=(-546,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1495.82,1513.14) CenPtnInPanel=(-518,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1510.74,1489.44) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1495.82,1513.14) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1510.74,1489.44) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1495.82,1513.14) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1510.74,1489.44) CenPtnInPanel=(-490,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,14 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1495.82,1513.14) CenPtnInPanel=(-462,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1510.74,1489.44) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1510.74,1489.44) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 79 { PMT Rich1 Bot } Module(Col:NInCol)=2:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1495.82,1513.14) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1495.82,1513.14) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1510.74,1489.44) CenPtnInPanel=(-434,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1495.82,1513.14) CenPtnInPanel=(-406,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1510.74,1489.44) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1495.82,1513.14) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1510.74,1489.44) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1495.82,1513.14) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1510.74,1489.44) CenPtnInPanel=(-378,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1495.82,1513.14) CenPtnInPanel=(-350,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1510.74,1489.44) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1495.82,1513.14) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1510.74,1489.44) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1495.82,1513.14) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1510.74,1489.44) CenPtnInPanel=(-322,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1495.82,1513.14) CenPtnInPanel=(-294,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1510.74,1489.44) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1495.82,1513.14) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1510.74,1489.44) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1495.82,1513.14) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1510.74,1489.44) CenPtnInPanel=(-266,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1495.82,1513.14) CenPtnInPanel=(-238,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1510.74,1489.44) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1510.74,1489.44) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 80 { PMT Rich1 Bot } Module(Col:NInCol)=2:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1495.82,1513.14) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1495.82,1513.14) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1510.74,1489.44) CenPtnInPanel=(-210,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1495.82,1513.14) CenPtnInPanel=(-182,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1510.74,1489.44) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1495.82,1513.14) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1510.74,1489.44) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1495.82,1513.14) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1510.74,1489.44) CenPtnInPanel=(-154,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1495.82,1513.14) CenPtnInPanel=(-126,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1510.74,1489.44) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1495.82,1513.14) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1510.74,1489.44) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1495.82,1513.14) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1510.74,1489.44) CenPtnInPanel=(-98,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1495.82,1513.14) CenPtnInPanel=(-70,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1510.74,1489.44) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1495.82,1513.14) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1510.74,1489.44) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1495.82,1513.14) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1510.74,1489.44) CenPtnInPanel=(-42,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1495.82,1513.14) CenPtnInPanel=(-14,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1510.74,1489.44) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1510.74,1489.44) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 81 { PMT Rich1 Bot } Module(Col:NInCol)=2:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1495.82,1513.14) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1495.82,1513.14) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1510.74,1489.44) CenPtnInPanel=(14,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1495.82,1513.14) CenPtnInPanel=(42,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1510.74,1489.44) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1495.82,1513.14) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1510.74,1489.44) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1495.82,1513.14) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1510.74,1489.44) CenPtnInPanel=(70,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1495.82,1513.14) CenPtnInPanel=(98,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1510.74,1489.44) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1495.82,1513.14) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1510.74,1489.44) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1495.82,1513.14) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1510.74,1489.44) CenPtnInPanel=(126,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1495.82,1513.14) CenPtnInPanel=(154,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1510.74,1489.44) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1495.82,1513.14) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1510.74,1489.44) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1495.82,1513.14) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1510.74,1489.44) CenPtnInPanel=(182,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1495.82,1513.14) CenPtnInPanel=(210,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1510.74,1489.44) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1510.74,1489.44) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 82 { PMT Rich1 Bot } Module(Col:NInCol)=2:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1495.82,1513.14) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1495.82,1513.14) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1510.74,1489.44) CenPtnInPanel=(238,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1495.82,1513.14) CenPtnInPanel=(266,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1510.74,1489.44) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1495.82,1513.14) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1510.74,1489.44) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1495.82,1513.14) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1510.74,1489.44) CenPtnInPanel=(294,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1495.82,1513.14) CenPtnInPanel=(322,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1510.74,1489.44) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1495.82,1513.14) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1510.74,1489.44) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1495.82,1513.14) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1510.74,1489.44) CenPtnInPanel=(350,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,10 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1495.82,1513.14) CenPtnInPanel=(378,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1510.74,1489.44) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1495.82,1513.14) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1510.74,1489.44) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1495.82,1513.14) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,13 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1510.74,1489.44) CenPtnInPanel=(406,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,14 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1495.82,1513.14) CenPtnInPanel=(434,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1510.74,1489.44) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1510.74,1489.44) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 83 { PMT Rich1 Bot } Module(Col:NInCol)=2:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1495.82,1513.14) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1495.82,1513.14) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1510.74,1489.44) CenPtnInPanel=(462,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1495.82,1513.14) CenPtnInPanel=(490,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1510.74,1489.44) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1495.82,1513.14) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1510.74,1489.44) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1495.82,1513.14) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1510.74,1489.44) CenPtnInPanel=(518,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1495.82,1513.14) CenPtnInPanel=(546,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1510.74,1489.44) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1495.82,1513.14) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1510.74,1489.44) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1495.82,1513.14) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1510.74,1489.44) CenPtnInPanel=(574,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1495.82,1513.14) CenPtnInPanel=(602,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1510.74,1489.44) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1510.74,1489.44) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 84 { PMT Rich1 Bot } Module(Col:NInCol)=3:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1465.72,1560.95) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1465.72,1560.95) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1480.64,1537.25) CenPtnInPanel=(-602,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1465.72,1560.95) CenPtnInPanel=(-574,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1480.64,1537.25) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1465.72,1560.95) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1480.64,1537.25) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1465.72,1560.95) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1480.64,1537.25) CenPtnInPanel=(-546,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1465.72,1560.95) CenPtnInPanel=(-518,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1480.64,1537.25) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1465.72,1560.95) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1480.64,1537.25) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1465.72,1560.95) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1480.64,1537.25) CenPtnInPanel=(-490,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1465.72,1560.95) CenPtnInPanel=(-462,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1480.64,1537.25) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1480.64,1537.25) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 85 { PMT Rich1 Bot } Module(Col:NInCol)=3:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1465.72,1560.95) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1465.72,1560.95) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1480.64,1537.25) CenPtnInPanel=(-434,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1465.72,1560.95) CenPtnInPanel=(-406,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1480.64,1537.25) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1465.72,1560.95) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1480.64,1537.25) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1465.72,1560.95) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1480.64,1537.25) CenPtnInPanel=(-378,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1465.72,1560.95) CenPtnInPanel=(-350,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1480.64,1537.25) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1465.72,1560.95) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1480.64,1537.25) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1465.72,1560.95) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1480.64,1537.25) CenPtnInPanel=(-322,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1465.72,1560.95) CenPtnInPanel=(-294,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1480.64,1537.25) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1465.72,1560.95) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1480.64,1537.25) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1465.72,1560.95) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1480.64,1537.25) CenPtnInPanel=(-266,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1465.72,1560.95) CenPtnInPanel=(-238,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1480.64,1537.25) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1480.64,1537.25) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 86 { PMT Rich1 Bot } Module(Col:NInCol)=3:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1465.72,1560.95) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1465.72,1560.95) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1480.64,1537.25) CenPtnInPanel=(-210,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1465.72,1560.95) CenPtnInPanel=(-182,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1480.64,1537.25) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1465.72,1560.95) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1480.64,1537.25) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1465.72,1560.95) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1480.64,1537.25) CenPtnInPanel=(-154,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1465.72,1560.95) CenPtnInPanel=(-126,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1480.64,1537.25) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1465.72,1560.95) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1480.64,1537.25) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1465.72,1560.95) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1480.64,1537.25) CenPtnInPanel=(-98,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1465.72,1560.95) CenPtnInPanel=(-70,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1480.64,1537.25) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1465.72,1560.95) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1480.64,1537.25) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1465.72,1560.95) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1480.64,1537.25) CenPtnInPanel=(-42,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1465.72,1560.95) CenPtnInPanel=(-14,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1480.64,1537.25) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1480.64,1537.25) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 87 { PMT Rich1 Bot } Module(Col:NInCol)=3:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1465.72,1560.95) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1465.72,1560.95) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1480.64,1537.25) CenPtnInPanel=(14,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1465.72,1560.95) CenPtnInPanel=(42,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1480.64,1537.25) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1465.72,1560.95) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1480.64,1537.25) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1465.72,1560.95) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1480.64,1537.25) CenPtnInPanel=(70,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1465.72,1560.95) CenPtnInPanel=(98,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1480.64,1537.25) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1465.72,1560.95) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1480.64,1537.25) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1465.72,1560.95) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1480.64,1537.25) CenPtnInPanel=(126,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1465.72,1560.95) CenPtnInPanel=(154,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1480.64,1537.25) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1465.72,1560.95) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1480.64,1537.25) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1465.72,1560.95) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1480.64,1537.25) CenPtnInPanel=(182,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1465.72,1560.95) CenPtnInPanel=(210,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1480.64,1537.25) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1480.64,1537.25) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 88 { PMT Rich1 Bot } Module(Col:NInCol)=3:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1465.72,1560.95) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1465.72,1560.95) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1480.64,1537.25) CenPtnInPanel=(238,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1465.72,1560.95) CenPtnInPanel=(266,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1480.64,1537.25) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1465.72,1560.95) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1480.64,1537.25) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1465.72,1560.95) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1480.64,1537.25) CenPtnInPanel=(294,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1465.72,1560.95) CenPtnInPanel=(322,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1480.64,1537.25) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1465.72,1560.95) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1480.64,1537.25) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1465.72,1560.95) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1480.64,1537.25) CenPtnInPanel=(350,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1465.72,1560.95) CenPtnInPanel=(378,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1480.64,1537.25) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1465.72,1560.95) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1480.64,1537.25) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1465.72,1560.95) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,13 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1480.64,1537.25) CenPtnInPanel=(406,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,14 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1465.72,1560.95) CenPtnInPanel=(434,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1480.64,1537.25) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1480.64,1537.25) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 89 { PMT Rich1 Bot } Module(Col:NInCol)=3:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1465.72,1560.95) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1465.72,1560.95) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1480.64,1537.25) CenPtnInPanel=(462,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1465.72,1560.95) CenPtnInPanel=(490,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1480.64,1537.25) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1465.72,1560.95) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1480.64,1537.25) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1465.72,1560.95) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,05 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1480.64,1537.25) CenPtnInPanel=(518,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1465.72,1560.95) CenPtnInPanel=(546,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1480.64,1537.25) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1465.72,1560.95) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1480.64,1537.25) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1465.72,1560.95) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1480.64,1537.25) CenPtnInPanel=(574,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,10 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1465.72,1560.95) CenPtnInPanel=(602,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1480.64,1537.25) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1480.64,1537.25) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 90 { PMT Rich1 Bot } Module(Col:NInCol)=4:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1435.61,1608.76) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1435.61,1608.76) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1450.53,1585.06) CenPtnInPanel=(-602,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,06 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1435.61,1608.76) CenPtnInPanel=(-574,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1450.53,1585.06) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1435.61,1608.76) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1450.53,1585.06) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1435.61,1608.76) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1450.53,1585.06) CenPtnInPanel=(-546,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,10 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1435.61,1608.76) CenPtnInPanel=(-518,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1450.53,1585.06) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1435.61,1608.76) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1450.53,1585.06) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1435.61,1608.76) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1450.53,1585.06) CenPtnInPanel=(-490,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1435.61,1608.76) CenPtnInPanel=(-462,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1450.53,1585.06) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1450.53,1585.06) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 91 { PMT Rich1 Bot } Module(Col:NInCol)=4:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1435.61,1608.76) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1435.61,1608.76) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1450.53,1585.06) CenPtnInPanel=(-434,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1435.61,1608.76) CenPtnInPanel=(-406,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1450.53,1585.06) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1435.61,1608.76) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1450.53,1585.06) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1435.61,1608.76) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1450.53,1585.06) CenPtnInPanel=(-378,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,06 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1435.61,1608.76) CenPtnInPanel=(-350,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1450.53,1585.06) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1435.61,1608.76) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1450.53,1585.06) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1435.61,1608.76) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1450.53,1585.06) CenPtnInPanel=(-322,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1435.61,1608.76) CenPtnInPanel=(-294,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1450.53,1585.06) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1435.61,1608.76) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1450.53,1585.06) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1435.61,1608.76) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1450.53,1585.06) CenPtnInPanel=(-266,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1435.61,1608.76) CenPtnInPanel=(-238,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1450.53,1585.06) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1450.53,1585.06) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 92 { PMT Rich1 Bot } Module(Col:NInCol)=4:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1435.61,1608.76) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1435.61,1608.76) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1450.53,1585.06) CenPtnInPanel=(-210,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1435.61,1608.76) CenPtnInPanel=(-182,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1450.53,1585.06) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1435.61,1608.76) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1450.53,1585.06) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1435.61,1608.76) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1450.53,1585.06) CenPtnInPanel=(-154,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1435.61,1608.76) CenPtnInPanel=(-126,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1450.53,1585.06) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1435.61,1608.76) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1450.53,1585.06) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1435.61,1608.76) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1450.53,1585.06) CenPtnInPanel=(-98,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1435.61,1608.76) CenPtnInPanel=(-70,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1450.53,1585.06) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1435.61,1608.76) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1450.53,1585.06) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1435.61,1608.76) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1450.53,1585.06) CenPtnInPanel=(-42,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1435.61,1608.76) CenPtnInPanel=(-14,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1450.53,1585.06) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1450.53,1585.06) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 93 { PMT Rich1 Bot } Module(Col:NInCol)=4:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1435.61,1608.76) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1435.61,1608.76) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1450.53,1585.06) CenPtnInPanel=(14,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1435.61,1608.76) CenPtnInPanel=(42,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1450.53,1585.06) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1435.61,1608.76) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1450.53,1585.06) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1435.61,1608.76) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1450.53,1585.06) CenPtnInPanel=(70,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1435.61,1608.76) CenPtnInPanel=(98,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1450.53,1585.06) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1435.61,1608.76) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1450.53,1585.06) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1435.61,1608.76) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1450.53,1585.06) CenPtnInPanel=(126,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1435.61,1608.76) CenPtnInPanel=(154,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1450.53,1585.06) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1435.61,1608.76) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1450.53,1585.06) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1435.61,1608.76) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1450.53,1585.06) CenPtnInPanel=(182,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1435.61,1608.76) CenPtnInPanel=(210,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1450.53,1585.06) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1450.53,1585.06) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 94 { PMT Rich1 Bot } Module(Col:NInCol)=4:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1435.61,1608.76) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1435.61,1608.76) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1450.53,1585.06) CenPtnInPanel=(238,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1435.61,1608.76) CenPtnInPanel=(266,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1450.53,1585.06) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1435.61,1608.76) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1450.53,1585.06) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1435.61,1608.76) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1450.53,1585.06) CenPtnInPanel=(294,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,06 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1435.61,1608.76) CenPtnInPanel=(322,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1450.53,1585.06) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1435.61,1608.76) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1450.53,1585.06) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1435.61,1608.76) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1450.53,1585.06) CenPtnInPanel=(350,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,10 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1435.61,1608.76) CenPtnInPanel=(378,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1450.53,1585.06) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1435.61,1608.76) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1450.53,1585.06) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1435.61,1608.76) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1450.53,1585.06) CenPtnInPanel=(406,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,14 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1435.61,1608.76) CenPtnInPanel=(434,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1450.53,1585.06) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1450.53,1585.06) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 95 { PMT Rich1 Bot } Module(Col:NInCol)=4:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1435.61,1608.76) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1435.61,1608.76) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1450.53,1585.06) CenPtnInPanel=(462,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1435.61,1608.76) CenPtnInPanel=(490,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1450.53,1585.06) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1435.61,1608.76) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1450.53,1585.06) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1435.61,1608.76) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,05 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1450.53,1585.06) CenPtnInPanel=(518,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,06 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1435.61,1608.76) CenPtnInPanel=(546,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1450.53,1585.06) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1435.61,1608.76) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1450.53,1585.06) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1435.61,1608.76) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1450.53,1585.06) CenPtnInPanel=(574,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,10 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1435.61,1608.76) CenPtnInPanel=(602,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1450.53,1585.06) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1450.53,1585.06) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 96 { PMT Rich1 Bot } Module(Col:NInCol)=5:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1405.5,1656.57) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1405.5,1656.57) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1420.42,1632.87) CenPtnInPanel=(-602,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,06 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1405.5,1656.57) CenPtnInPanel=(-574,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1420.42,1632.87) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1405.5,1656.57) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1420.42,1632.87) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1405.5,1656.57) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1420.42,1632.87) CenPtnInPanel=(-546,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1405.5,1656.57) CenPtnInPanel=(-518,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1420.42,1632.87) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1405.5,1656.57) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1420.42,1632.87) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1405.5,1656.57) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1420.42,1632.87) CenPtnInPanel=(-490,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1405.5,1656.57) CenPtnInPanel=(-462,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1420.42,1632.87) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1420.42,1632.87) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 97 { PMT Rich1 Bot } Module(Col:NInCol)=5:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1405.5,1656.57) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1405.5,1656.57) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1420.42,1632.87) CenPtnInPanel=(-434,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1405.5,1656.57) CenPtnInPanel=(-406,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1420.42,1632.87) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1405.5,1656.57) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1420.42,1632.87) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1405.5,1656.57) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1420.42,1632.87) CenPtnInPanel=(-378,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1405.5,1656.57) CenPtnInPanel=(-350,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1420.42,1632.87) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1405.5,1656.57) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1420.42,1632.87) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1405.5,1656.57) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1420.42,1632.87) CenPtnInPanel=(-322,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1405.5,1656.57) CenPtnInPanel=(-294,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1420.42,1632.87) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1405.5,1656.57) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1420.42,1632.87) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1405.5,1656.57) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1420.42,1632.87) CenPtnInPanel=(-266,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1405.5,1656.57) CenPtnInPanel=(-238,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1420.42,1632.87) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1420.42,1632.87) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 98 { PMT Rich1 Bot } Module(Col:NInCol)=5:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1405.5,1656.57) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1405.5,1656.57) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1420.42,1632.87) CenPtnInPanel=(-210,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1405.5,1656.57) CenPtnInPanel=(-182,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1420.42,1632.87) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1405.5,1656.57) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1420.42,1632.87) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1405.5,1656.57) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1420.42,1632.87) CenPtnInPanel=(-154,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1405.5,1656.57) CenPtnInPanel=(-126,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1420.42,1632.87) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1405.5,1656.57) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1420.42,1632.87) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1405.5,1656.57) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1420.42,1632.87) CenPtnInPanel=(-98,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1405.5,1656.57) CenPtnInPanel=(-70,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1420.42,1632.87) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1405.5,1656.57) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1420.42,1632.87) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1405.5,1656.57) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1420.42,1632.87) CenPtnInPanel=(-42,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1405.5,1656.57) CenPtnInPanel=(-14,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1420.42,1632.87) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1420.42,1632.87) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 99 { PMT Rich1 Bot } Module(Col:NInCol)=5:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1405.5,1656.57) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1405.5,1656.57) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1420.42,1632.87) CenPtnInPanel=(14,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1405.5,1656.57) CenPtnInPanel=(42,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1420.42,1632.87) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1405.5,1656.57) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1420.42,1632.87) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1405.5,1656.57) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1420.42,1632.87) CenPtnInPanel=(70,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1405.5,1656.57) CenPtnInPanel=(98,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1420.42,1632.87) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1405.5,1656.57) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1420.42,1632.87) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1405.5,1656.57) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1420.42,1632.87) CenPtnInPanel=(126,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1405.5,1656.57) CenPtnInPanel=(154,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1420.42,1632.87) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1405.5,1656.57) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1420.42,1632.87) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1405.5,1656.57) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1420.42,1632.87) CenPtnInPanel=(182,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1405.5,1656.57) CenPtnInPanel=(210,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1420.42,1632.87) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1420.42,1632.87) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 100 { PMT Rich1 Bot } Module(Col:NInCol)=5:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1405.5,1656.57) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1405.5,1656.57) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1420.42,1632.87) CenPtnInPanel=(238,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1405.5,1656.57) CenPtnInPanel=(266,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1420.42,1632.87) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1405.5,1656.57) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1420.42,1632.87) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1405.5,1656.57) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1420.42,1632.87) CenPtnInPanel=(294,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1405.5,1656.57) CenPtnInPanel=(322,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1420.42,1632.87) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1405.5,1656.57) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1420.42,1632.87) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1405.5,1656.57) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1420.42,1632.87) CenPtnInPanel=(350,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1405.5,1656.57) CenPtnInPanel=(378,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1420.42,1632.87) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1405.5,1656.57) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1420.42,1632.87) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1405.5,1656.57) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1420.42,1632.87) CenPtnInPanel=(406,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1405.5,1656.57) CenPtnInPanel=(434,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1420.42,1632.87) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1420.42,1632.87) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 101 { PMT Rich1 Bot } Module(Col:NInCol)=5:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1405.5,1656.57) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1405.5,1656.57) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1420.42,1632.87) CenPtnInPanel=(462,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1405.5,1656.57) CenPtnInPanel=(490,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1420.42,1632.87) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1405.5,1656.57) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1420.42,1632.87) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1405.5,1656.57) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,05 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1420.42,1632.87) CenPtnInPanel=(518,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1405.5,1656.57) CenPtnInPanel=(546,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1420.42,1632.87) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1405.5,1656.57) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1420.42,1632.87) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1405.5,1656.57) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1420.42,1632.87) CenPtnInPanel=(574,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1405.5,1656.57) CenPtnInPanel=(602,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1420.42,1632.87) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1420.42,1632.87) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 102 { PMT Rich1 Bot } Module(Col:NInCol)=6:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1375.39,1704.38) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1375.39,1704.38) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,05 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1390.31,1680.68) CenPtnInPanel=(-602,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1375.39,1704.38) CenPtnInPanel=(-574,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1390.31,1680.68) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1375.39,1704.38) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1390.31,1680.68) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1375.39,1704.38) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,09 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1390.31,1680.68) CenPtnInPanel=(-546,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1375.39,1704.38) CenPtnInPanel=(-518,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1390.31,1680.68) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1375.39,1704.38) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1390.31,1680.68) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1375.39,1704.38) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,13 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1390.31,1680.68) CenPtnInPanel=(-490,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1375.39,1704.38) CenPtnInPanel=(-462,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1390.31,1680.68) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1390.31,1680.68) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 103 { PMT Rich1 Bot } Module(Col:NInCol)=6:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1375.39,1704.38) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1375.39,1704.38) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1390.31,1680.68) CenPtnInPanel=(-434,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1375.39,1704.38) CenPtnInPanel=(-406,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1390.31,1680.68) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1375.39,1704.38) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1390.31,1680.68) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1375.39,1704.38) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1390.31,1680.68) CenPtnInPanel=(-378,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1375.39,1704.38) CenPtnInPanel=(-350,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1390.31,1680.68) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1375.39,1704.38) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1390.31,1680.68) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1375.39,1704.38) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1390.31,1680.68) CenPtnInPanel=(-322,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1375.39,1704.38) CenPtnInPanel=(-294,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1390.31,1680.68) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1375.39,1704.38) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1390.31,1680.68) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1375.39,1704.38) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1390.31,1680.68) CenPtnInPanel=(-266,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1375.39,1704.38) CenPtnInPanel=(-238,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1390.31,1680.68) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1390.31,1680.68) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 104 { PMT Rich1 Bot } Module(Col:NInCol)=6:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1375.39,1704.38) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1375.39,1704.38) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1390.31,1680.68) CenPtnInPanel=(-210,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1375.39,1704.38) CenPtnInPanel=(-182,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1390.31,1680.68) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1375.39,1704.38) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1390.31,1680.68) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1375.39,1704.38) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1390.31,1680.68) CenPtnInPanel=(-154,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1375.39,1704.38) CenPtnInPanel=(-126,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1390.31,1680.68) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1375.39,1704.38) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1390.31,1680.68) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1375.39,1704.38) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1390.31,1680.68) CenPtnInPanel=(-98,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1375.39,1704.38) CenPtnInPanel=(-70,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1390.31,1680.68) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1375.39,1704.38) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1390.31,1680.68) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1375.39,1704.38) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1390.31,1680.68) CenPtnInPanel=(-42,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1375.39,1704.38) CenPtnInPanel=(-14,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1390.31,1680.68) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1390.31,1680.68) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 105 { PMT Rich1 Bot } Module(Col:NInCol)=6:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1375.39,1704.38) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1375.39,1704.38) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1390.31,1680.68) CenPtnInPanel=(14,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1375.39,1704.38) CenPtnInPanel=(42,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1390.31,1680.68) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1375.39,1704.38) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1390.31,1680.68) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1375.39,1704.38) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1390.31,1680.68) CenPtnInPanel=(70,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1375.39,1704.38) CenPtnInPanel=(98,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1390.31,1680.68) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1375.39,1704.38) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1390.31,1680.68) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1375.39,1704.38) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1390.31,1680.68) CenPtnInPanel=(126,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1375.39,1704.38) CenPtnInPanel=(154,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1390.31,1680.68) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1375.39,1704.38) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1390.31,1680.68) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1375.39,1704.38) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1390.31,1680.68) CenPtnInPanel=(182,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1375.39,1704.38) CenPtnInPanel=(210,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1390.31,1680.68) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1390.31,1680.68) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 106 { PMT Rich1 Bot } Module(Col:NInCol)=6:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1375.39,1704.38) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1375.39,1704.38) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1390.31,1680.68) CenPtnInPanel=(238,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1375.39,1704.38) CenPtnInPanel=(266,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1390.31,1680.68) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1375.39,1704.38) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1390.31,1680.68) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1375.39,1704.38) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1390.31,1680.68) CenPtnInPanel=(294,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1375.39,1704.38) CenPtnInPanel=(322,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1390.31,1680.68) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1375.39,1704.38) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1390.31,1680.68) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1375.39,1704.38) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1390.31,1680.68) CenPtnInPanel=(350,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1375.39,1704.38) CenPtnInPanel=(378,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1390.31,1680.68) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1375.39,1704.38) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1390.31,1680.68) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1375.39,1704.38) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1390.31,1680.68) CenPtnInPanel=(406,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1375.39,1704.38) CenPtnInPanel=(434,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1390.31,1680.68) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1390.31,1680.68) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 107 { PMT Rich1 Bot } Module(Col:NInCol)=6:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1375.39,1704.38) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1375.39,1704.38) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1390.31,1680.68) CenPtnInPanel=(462,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1375.39,1704.38) CenPtnInPanel=(490,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1390.31,1680.68) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1375.39,1704.38) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1390.31,1680.68) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1375.39,1704.38) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,05 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1390.31,1680.68) CenPtnInPanel=(518,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1375.39,1704.38) CenPtnInPanel=(546,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1390.31,1680.68) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1375.39,1704.38) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1390.31,1680.68) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1375.39,1704.38) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1390.31,1680.68) CenPtnInPanel=(574,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1375.39,1704.38) CenPtnInPanel=(602,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1390.31,1680.68) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1390.31,1680.68) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 108 { PMT Rich1 Bot } Module(Col:NInCol)=7:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1345.29,1752.19) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1345.29,1752.19) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1360.21,1728.49) CenPtnInPanel=(-602,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1345.29,1752.19) CenPtnInPanel=(-574,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1360.21,1728.49) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1345.29,1752.19) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1360.21,1728.49) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1345.29,1752.19) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1360.21,1728.49) CenPtnInPanel=(-546,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,10 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1345.29,1752.19) CenPtnInPanel=(-518,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1360.21,1728.49) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1345.29,1752.19) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1360.21,1728.49) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1345.29,1752.19) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1360.21,1728.49) CenPtnInPanel=(-490,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1345.29,1752.19) CenPtnInPanel=(-462,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1360.21,1728.49) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1360.21,1728.49) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 109 { PMT Rich1 Bot } Module(Col:NInCol)=7:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1345.29,1752.19) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1345.29,1752.19) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1360.21,1728.49) CenPtnInPanel=(-434,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1345.29,1752.19) CenPtnInPanel=(-406,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1360.21,1728.49) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1345.29,1752.19) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1360.21,1728.49) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1345.29,1752.19) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1360.21,1728.49) CenPtnInPanel=(-378,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1345.29,1752.19) CenPtnInPanel=(-350,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1360.21,1728.49) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1345.29,1752.19) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1360.21,1728.49) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1345.29,1752.19) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1360.21,1728.49) CenPtnInPanel=(-322,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1345.29,1752.19) CenPtnInPanel=(-294,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1360.21,1728.49) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1345.29,1752.19) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1360.21,1728.49) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1345.29,1752.19) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1360.21,1728.49) CenPtnInPanel=(-266,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1345.29,1752.19) CenPtnInPanel=(-238,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1360.21,1728.49) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1360.21,1728.49) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 110 { PMT Rich1 Bot } Module(Col:NInCol)=7:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1345.29,1752.19) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1345.29,1752.19) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1360.21,1728.49) CenPtnInPanel=(-210,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1345.29,1752.19) CenPtnInPanel=(-182,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1360.21,1728.49) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1345.29,1752.19) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1360.21,1728.49) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1345.29,1752.19) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1360.21,1728.49) CenPtnInPanel=(-154,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1345.29,1752.19) CenPtnInPanel=(-126,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1360.21,1728.49) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1345.29,1752.19) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1360.21,1728.49) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1345.29,1752.19) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1360.21,1728.49) CenPtnInPanel=(-98,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1345.29,1752.19) CenPtnInPanel=(-70,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1360.21,1728.49) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1345.29,1752.19) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1360.21,1728.49) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1345.29,1752.19) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1360.21,1728.49) CenPtnInPanel=(-42,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1345.29,1752.19) CenPtnInPanel=(-14,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1360.21,1728.49) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1360.21,1728.49) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 111 { PMT Rich1 Bot } Module(Col:NInCol)=7:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1345.29,1752.19) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1345.29,1752.19) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1360.21,1728.49) CenPtnInPanel=(14,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1345.29,1752.19) CenPtnInPanel=(42,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1360.21,1728.49) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1345.29,1752.19) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1360.21,1728.49) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1345.29,1752.19) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1360.21,1728.49) CenPtnInPanel=(70,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1345.29,1752.19) CenPtnInPanel=(98,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1360.21,1728.49) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1345.29,1752.19) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1360.21,1728.49) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1345.29,1752.19) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1360.21,1728.49) CenPtnInPanel=(126,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1345.29,1752.19) CenPtnInPanel=(154,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1360.21,1728.49) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1345.29,1752.19) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1360.21,1728.49) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1345.29,1752.19) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1360.21,1728.49) CenPtnInPanel=(182,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1345.29,1752.19) CenPtnInPanel=(210,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1360.21,1728.49) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1360.21,1728.49) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 112 { PMT Rich1 Bot } Module(Col:NInCol)=7:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1345.29,1752.19) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1345.29,1752.19) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1360.21,1728.49) CenPtnInPanel=(238,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1345.29,1752.19) CenPtnInPanel=(266,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1360.21,1728.49) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1345.29,1752.19) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1360.21,1728.49) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1345.29,1752.19) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1360.21,1728.49) CenPtnInPanel=(294,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1345.29,1752.19) CenPtnInPanel=(322,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1360.21,1728.49) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1345.29,1752.19) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1360.21,1728.49) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1345.29,1752.19) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1360.21,1728.49) CenPtnInPanel=(350,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1345.29,1752.19) CenPtnInPanel=(378,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1360.21,1728.49) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1345.29,1752.19) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1360.21,1728.49) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1345.29,1752.19) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1360.21,1728.49) CenPtnInPanel=(406,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1345.29,1752.19) CenPtnInPanel=(434,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1360.21,1728.49) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1360.21,1728.49) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 113 { PMT Rich1 Bot } Module(Col:NInCol)=7:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1345.29,1752.19) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1345.29,1752.19) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1360.21,1728.49) CenPtnInPanel=(462,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1345.29,1752.19) CenPtnInPanel=(490,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1360.21,1728.49) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1345.29,1752.19) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1360.21,1728.49) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1345.29,1752.19) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,05 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1360.21,1728.49) CenPtnInPanel=(518,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,06 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1345.29,1752.19) CenPtnInPanel=(546,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1360.21,1728.49) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1345.29,1752.19) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1360.21,1728.49) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1345.29,1752.19) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1360.21,1728.49) CenPtnInPanel=(574,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1345.29,1752.19) CenPtnInPanel=(602,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1360.21,1728.49) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1360.21,1728.49) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 114 { PMT Rich1 Bot } Module(Col:NInCol)=8:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1315.18,1800) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1315.18,1800) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,05 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1330.1,1776.3) CenPtnInPanel=(-602,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,06 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1315.18,1800) CenPtnInPanel=(-574,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1330.1,1776.3) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1315.18,1800) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1330.1,1776.3) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1315.18,1800) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1330.1,1776.3) CenPtnInPanel=(-546,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1315.18,1800) CenPtnInPanel=(-518,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1330.1,1776.3) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1315.18,1800) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1330.1,1776.3) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1315.18,1800) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1330.1,1776.3) CenPtnInPanel=(-490,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1315.18,1800) CenPtnInPanel=(-462,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1330.1,1776.3) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1330.1,1776.3) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 115 { PMT Rich1 Bot } Module(Col:NInCol)=8:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1315.18,1800) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1315.18,1800) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1330.1,1776.3) CenPtnInPanel=(-434,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1315.18,1800) CenPtnInPanel=(-406,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1330.1,1776.3) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1315.18,1800) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1330.1,1776.3) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1315.18,1800) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1330.1,1776.3) CenPtnInPanel=(-378,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1315.18,1800) CenPtnInPanel=(-350,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1330.1,1776.3) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1315.18,1800) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1330.1,1776.3) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1315.18,1800) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1330.1,1776.3) CenPtnInPanel=(-322,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1315.18,1800) CenPtnInPanel=(-294,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1330.1,1776.3) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1315.18,1800) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1330.1,1776.3) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1315.18,1800) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1330.1,1776.3) CenPtnInPanel=(-266,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1315.18,1800) CenPtnInPanel=(-238,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1330.1,1776.3) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1330.1,1776.3) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 116 { PMT Rich1 Bot } Module(Col:NInCol)=8:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1315.18,1800) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1315.18,1800) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1330.1,1776.3) CenPtnInPanel=(-210,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1315.18,1800) CenPtnInPanel=(-182,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1330.1,1776.3) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1315.18,1800) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1330.1,1776.3) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1315.18,1800) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1330.1,1776.3) CenPtnInPanel=(-154,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1315.18,1800) CenPtnInPanel=(-126,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1330.1,1776.3) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1315.18,1800) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1330.1,1776.3) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1315.18,1800) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1330.1,1776.3) CenPtnInPanel=(-98,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1315.18,1800) CenPtnInPanel=(-70,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1330.1,1776.3) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1315.18,1800) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1330.1,1776.3) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1315.18,1800) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1330.1,1776.3) CenPtnInPanel=(-42,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1315.18,1800) CenPtnInPanel=(-14,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1330.1,1776.3) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1330.1,1776.3) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 117 { PMT Rich1 Bot } Module(Col:NInCol)=8:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1315.18,1800) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1315.18,1800) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1330.1,1776.3) CenPtnInPanel=(14,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1315.18,1800) CenPtnInPanel=(42,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1330.1,1776.3) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1315.18,1800) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1330.1,1776.3) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1315.18,1800) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1330.1,1776.3) CenPtnInPanel=(70,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1315.18,1800) CenPtnInPanel=(98,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1330.1,1776.3) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1315.18,1800) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1330.1,1776.3) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1315.18,1800) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1330.1,1776.3) CenPtnInPanel=(126,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1315.18,1800) CenPtnInPanel=(154,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1330.1,1776.3) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1315.18,1800) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1330.1,1776.3) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1315.18,1800) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1330.1,1776.3) CenPtnInPanel=(182,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1315.18,1800) CenPtnInPanel=(210,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1330.1,1776.3) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1330.1,1776.3) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 118 { PMT Rich1 Bot } Module(Col:NInCol)=8:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1315.18,1800) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1315.18,1800) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1330.1,1776.3) CenPtnInPanel=(238,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1315.18,1800) CenPtnInPanel=(266,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1330.1,1776.3) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1315.18,1800) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1330.1,1776.3) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1315.18,1800) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1330.1,1776.3) CenPtnInPanel=(294,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1315.18,1800) CenPtnInPanel=(322,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1330.1,1776.3) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1315.18,1800) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1330.1,1776.3) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1315.18,1800) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1330.1,1776.3) CenPtnInPanel=(350,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1315.18,1800) CenPtnInPanel=(378,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1330.1,1776.3) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1315.18,1800) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1330.1,1776.3) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1315.18,1800) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1330.1,1776.3) CenPtnInPanel=(406,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1315.18,1800) CenPtnInPanel=(434,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1330.1,1776.3) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1330.1,1776.3) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 119 { PMT Rich1 Bot } Module(Col:NInCol)=8:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1315.18,1800) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1315.18,1800) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1330.1,1776.3) CenPtnInPanel=(462,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1315.18,1800) CenPtnInPanel=(490,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1330.1,1776.3) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1315.18,1800) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1330.1,1776.3) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1315.18,1800) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1330.1,1776.3) CenPtnInPanel=(518,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1315.18,1800) CenPtnInPanel=(546,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1330.1,1776.3) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1315.18,1800) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1330.1,1776.3) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1315.18,1800) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1330.1,1776.3) CenPtnInPanel=(574,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1315.18,1800) CenPtnInPanel=(602,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1330.1,1776.3) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1330.1,1776.3) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 120 { PMT Rich1 Bot } Module(Col:NInCol)=9:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1285.07,1847.81) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1285.07,1847.81) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1299.99,1824.11) CenPtnInPanel=(-602,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1285.07,1847.81) CenPtnInPanel=(-574,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1299.99,1824.11) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1285.07,1847.81) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1299.99,1824.11) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1285.07,1847.81) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1299.99,1824.11) CenPtnInPanel=(-546,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1285.07,1847.81) CenPtnInPanel=(-518,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1299.99,1824.11) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1285.07,1847.81) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1299.99,1824.11) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1285.07,1847.81) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1299.99,1824.11) CenPtnInPanel=(-490,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1285.07,1847.81) CenPtnInPanel=(-462,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1299.99,1824.11) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1299.99,1824.11) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 121 { PMT Rich1 Bot } Module(Col:NInCol)=9:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1285.07,1847.81) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1285.07,1847.81) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1299.99,1824.11) CenPtnInPanel=(-434,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1285.07,1847.81) CenPtnInPanel=(-406,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1299.99,1824.11) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1285.07,1847.81) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1299.99,1824.11) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1285.07,1847.81) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1299.99,1824.11) CenPtnInPanel=(-378,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1285.07,1847.81) CenPtnInPanel=(-350,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1299.99,1824.11) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1285.07,1847.81) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1299.99,1824.11) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1285.07,1847.81) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1299.99,1824.11) CenPtnInPanel=(-322,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1285.07,1847.81) CenPtnInPanel=(-294,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1299.99,1824.11) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1285.07,1847.81) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1299.99,1824.11) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1285.07,1847.81) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1299.99,1824.11) CenPtnInPanel=(-266,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1285.07,1847.81) CenPtnInPanel=(-238,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1299.99,1824.11) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1299.99,1824.11) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 122 { PMT Rich1 Bot } Module(Col:NInCol)=9:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1285.07,1847.81) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1285.07,1847.81) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1299.99,1824.11) CenPtnInPanel=(-210,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1285.07,1847.81) CenPtnInPanel=(-182,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1299.99,1824.11) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1285.07,1847.81) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1299.99,1824.11) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1285.07,1847.81) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1299.99,1824.11) CenPtnInPanel=(-154,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1285.07,1847.81) CenPtnInPanel=(-126,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1299.99,1824.11) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1285.07,1847.81) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1299.99,1824.11) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1285.07,1847.81) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1299.99,1824.11) CenPtnInPanel=(-98,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1285.07,1847.81) CenPtnInPanel=(-70,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1299.99,1824.11) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1285.07,1847.81) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1299.99,1824.11) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1285.07,1847.81) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1299.99,1824.11) CenPtnInPanel=(-42,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1285.07,1847.81) CenPtnInPanel=(-14,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1299.99,1824.11) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1299.99,1824.11) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 123 { PMT Rich1 Bot } Module(Col:NInCol)=9:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1285.07,1847.81) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1285.07,1847.81) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1299.99,1824.11) CenPtnInPanel=(14,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1285.07,1847.81) CenPtnInPanel=(42,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1299.99,1824.11) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1285.07,1847.81) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1299.99,1824.11) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1285.07,1847.81) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1299.99,1824.11) CenPtnInPanel=(70,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1285.07,1847.81) CenPtnInPanel=(98,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1299.99,1824.11) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1285.07,1847.81) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1299.99,1824.11) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1285.07,1847.81) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1299.99,1824.11) CenPtnInPanel=(126,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1285.07,1847.81) CenPtnInPanel=(154,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1299.99,1824.11) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1285.07,1847.81) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1299.99,1824.11) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1285.07,1847.81) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1299.99,1824.11) CenPtnInPanel=(182,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1285.07,1847.81) CenPtnInPanel=(210,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1299.99,1824.11) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1299.99,1824.11) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 124 { PMT Rich1 Bot } Module(Col:NInCol)=9:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1285.07,1847.81) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1285.07,1847.81) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1299.99,1824.11) CenPtnInPanel=(238,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1285.07,1847.81) CenPtnInPanel=(266,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1299.99,1824.11) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1285.07,1847.81) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1299.99,1824.11) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1285.07,1847.81) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1299.99,1824.11) CenPtnInPanel=(294,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1285.07,1847.81) CenPtnInPanel=(322,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1299.99,1824.11) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1285.07,1847.81) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1299.99,1824.11) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1285.07,1847.81) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1299.99,1824.11) CenPtnInPanel=(350,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1285.07,1847.81) CenPtnInPanel=(378,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1299.99,1824.11) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1285.07,1847.81) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1299.99,1824.11) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1285.07,1847.81) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1299.99,1824.11) CenPtnInPanel=(406,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1285.07,1847.81) CenPtnInPanel=(434,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1299.99,1824.11) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1299.99,1824.11) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 125 { PMT Rich1 Bot } Module(Col:NInCol)=9:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1285.07,1847.81) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1285.07,1847.81) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1299.99,1824.11) CenPtnInPanel=(462,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1285.07,1847.81) CenPtnInPanel=(490,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1299.99,1824.11) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1285.07,1847.81) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1299.99,1824.11) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1285.07,1847.81) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1299.99,1824.11) CenPtnInPanel=(518,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1285.07,1847.81) CenPtnInPanel=(546,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1299.99,1824.11) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1285.07,1847.81) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1299.99,1824.11) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1285.07,1847.81) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1299.99,1824.11) CenPtnInPanel=(574,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1285.07,1847.81) CenPtnInPanel=(602,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1299.99,1824.11) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1299.99,1824.11) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 126 { PMT Rich1 Bot } Module(Col:NInCol)=10:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1254.96,1895.62) CenPtnInPanel=(-602,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1254.96,1895.62) CenPtnInPanel=(-602,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1269.88,1871.92) CenPtnInPanel=(-602,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,06 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1254.96,1895.62) CenPtnInPanel=(-574,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1269.88,1871.92) CenPtnInPanel=(-574,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1254.96,1895.62) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1269.88,1871.92) CenPtnInPanel=(-574,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1254.96,1895.62) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1269.88,1871.92) CenPtnInPanel=(-546,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,10 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1254.96,1895.62) CenPtnInPanel=(-518,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1269.88,1871.92) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1254.96,1895.62) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1269.88,1871.92) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1254.96,1895.62) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1269.88,1871.92) CenPtnInPanel=(-490,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1254.96,1895.62) CenPtnInPanel=(-462,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1269.88,1871.92) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1269.88,1871.92) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 127 { PMT Rich1 Bot } Module(Col:NInCol)=10:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1254.96,1895.62) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1254.96,1895.62) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1269.88,1871.92) CenPtnInPanel=(-434,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1254.96,1895.62) CenPtnInPanel=(-406,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1269.88,1871.92) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1254.96,1895.62) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1269.88,1871.92) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1254.96,1895.62) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1269.88,1871.92) CenPtnInPanel=(-378,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1254.96,1895.62) CenPtnInPanel=(-350,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1269.88,1871.92) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1254.96,1895.62) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1269.88,1871.92) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1254.96,1895.62) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1269.88,1871.92) CenPtnInPanel=(-322,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1254.96,1895.62) CenPtnInPanel=(-294,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1269.88,1871.92) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1254.96,1895.62) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1269.88,1871.92) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1254.96,1895.62) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1269.88,1871.92) CenPtnInPanel=(-266,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1254.96,1895.62) CenPtnInPanel=(-238,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1269.88,1871.92) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1269.88,1871.92) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 128 { PMT Rich1 Bot } Module(Col:NInCol)=10:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1254.96,1895.62) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1254.96,1895.62) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1269.88,1871.92) CenPtnInPanel=(-210,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1254.96,1895.62) CenPtnInPanel=(-182,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1269.88,1871.92) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1254.96,1895.62) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1269.88,1871.92) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1254.96,1895.62) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1269.88,1871.92) CenPtnInPanel=(-154,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1254.96,1895.62) CenPtnInPanel=(-126,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1269.88,1871.92) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1254.96,1895.62) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1269.88,1871.92) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1254.96,1895.62) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1269.88,1871.92) CenPtnInPanel=(-98,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1254.96,1895.62) CenPtnInPanel=(-70,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1269.88,1871.92) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1254.96,1895.62) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1269.88,1871.92) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1254.96,1895.62) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1269.88,1871.92) CenPtnInPanel=(-42,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1254.96,1895.62) CenPtnInPanel=(-14,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1269.88,1871.92) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1269.88,1871.92) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 129 { PMT Rich1 Bot } Module(Col:NInCol)=10:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1254.96,1895.62) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1254.96,1895.62) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1269.88,1871.92) CenPtnInPanel=(14,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1254.96,1895.62) CenPtnInPanel=(42,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1269.88,1871.92) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1254.96,1895.62) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1269.88,1871.92) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1254.96,1895.62) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1269.88,1871.92) CenPtnInPanel=(70,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1254.96,1895.62) CenPtnInPanel=(98,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1269.88,1871.92) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1254.96,1895.62) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1269.88,1871.92) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1254.96,1895.62) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1269.88,1871.92) CenPtnInPanel=(126,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1254.96,1895.62) CenPtnInPanel=(154,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1269.88,1871.92) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1254.96,1895.62) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1269.88,1871.92) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1254.96,1895.62) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1269.88,1871.92) CenPtnInPanel=(182,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1254.96,1895.62) CenPtnInPanel=(210,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1269.88,1871.92) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1269.88,1871.92) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 130 { PMT Rich1 Bot } Module(Col:NInCol)=10:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1254.96,1895.62) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1254.96,1895.62) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1269.88,1871.92) CenPtnInPanel=(238,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1254.96,1895.62) CenPtnInPanel=(266,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1269.88,1871.92) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1254.96,1895.62) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1269.88,1871.92) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1254.96,1895.62) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1269.88,1871.92) CenPtnInPanel=(294,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1254.96,1895.62) CenPtnInPanel=(322,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1269.88,1871.92) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1254.96,1895.62) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1269.88,1871.92) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1254.96,1895.62) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1269.88,1871.92) CenPtnInPanel=(350,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1254.96,1895.62) CenPtnInPanel=(378,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1269.88,1871.92) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1254.96,1895.62) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1269.88,1871.92) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1254.96,1895.62) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1269.88,1871.92) CenPtnInPanel=(406,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1254.96,1895.62) CenPtnInPanel=(434,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1269.88,1871.92) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1269.88,1871.92) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 131 { PMT Rich1 Bot } Module(Col:NInCol)=10:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1254.96,1895.62) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1254.96,1895.62) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1269.88,1871.92) CenPtnInPanel=(462,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1254.96,1895.62) CenPtnInPanel=(490,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1269.88,1871.92) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1254.96,1895.62) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1269.88,1871.92) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1254.96,1895.62) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,05 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1269.88,1871.92) CenPtnInPanel=(518,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1254.96,1895.62) CenPtnInPanel=(546,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1269.88,1871.92) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1254.96,1895.62) CenPtnInPanel=(574,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1269.88,1871.92) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1254.96,1895.62) CenPtnInPanel=(574,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,09 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1269.88,1871.92) CenPtnInPanel=(574,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1254.96,1895.62) CenPtnInPanel=(602,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1269.88,1871.92) CenPtnInPanel=(602,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1269.88,1871.92) CenPtnInPanel=(602,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG  { BeamPipe | StartZ=1080 EndZ=2165 StartR=27 EndR=54.1363 }
 TestDerivedDets     DEBUG  Parameter<double>         'SellC4F10F1Param' = 12305.3
 TestDerivedDets     DEBUG  Parameter<double>         'SellC4F10F2Param' = 0
 TestDerivedDets     DEBUG  Parameter<double>         'SellC4F10E1Param' = 18.938
@@ -3614,6 +3615,7 @@ TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,00 Mod
 TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,01 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-523.588,11029.9) CenPtnInPanel=(310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-579.587,11029.8) CenPtnInPanel=(310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
 TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,03 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-635.587,11029.6) CenPtnInPanel=(310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26035e-06,37.1876) Max(X,Y)=(6.90625e-06,0) } ]
+TestDerivedDets     DEBUG  { BeamPipe | StartZ=9456.96 EndZ=11869.7 StartR=144 EndR=177 }
 TestDerivedDets     DEBUG  Parameter<double>         'Rich2GasQuartzWindowThickness' = 6
 TestDerivedDets     DEBUG ]
 TestDerivedDets     DEBUG Rich::Detector::Rich1Gas [ Rich1 Rich1Gas refIndex={ NumBins=300 Min(X,Y)=(1.5e-06,1.0013) Median(X,Y)=(4.49e-06,1.00137) Max(X,Y)=(7.48e-06,1.00153) } ]
diff --git a/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref.dd4hep b/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref.dd4hep
index 4c650ae23d6eac5233da0c5bb73385d6ca2e08e9..24b077fb2f5a1fa93a8b52d6a1d7380cefe70f50 100644
--- a/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref.dd4hep
+++ b/Rich/RichDetectors/tests/refs/instanciate-pmt-detdesc-data.ref.dd4hep
@@ -2,9 +2,6 @@ ApplicationMgr    SUCCESS
 ====================================================================================================================================
 ====================================================================================================================================
 ApplicationMgr       INFO Application Manager Configured successfully
-DetectorPersist...   INFO Added successfully Conversion service:XmlCnvSvc
-DetectorDataSvc   SUCCESS Detector description database: git:/lhcb.xml
-UT                WARNING +++ The sub volume lvUX851InUT is NOT constructed.
 All                  INFO Member list: Gaudi::Hive::FetchDataFromFile/FetchDSTData, LHCb::UnpackRawEvent/UnpackODIN, createODIN/ODINFutureDecode, LHCb::Det::LbDD4hep::IOVProducer/ReserveIOVDD4hep, Rich::Future::TestDerivedDetObjects/TestDerivedDets, Rich::Future::TestConds/TestConds
 RndmGenSvc.Engine    INFO Generator engine type:CLHEP::RanluxEngine
 RndmGenSvc.Engine    INFO Current Seed:1234567 Luxury:3
@@ -25,11 +22,6 @@ EventPersistenc...   INFO Added successfully Conversion service:RootCnvSvc
 ApplicationMgr       INFO Application Manager Initialized successfully
 ApplicationMgr       INFO Application Manager Started successfully
 EventSelector     SUCCESS Reading Event record 1. Record number within stream 1: 1
-Rich::Detector:...WARNING Some functionality is still being accessed from DetDesc DeRich2Gas
-EventClockSvc.F...   INFO Event times generated from 0 with steps of 0
-Rich::Detector:...WARNING Some functionality is still being accessed from DetDesc DeRich2
-Rich::Detector:...WARNING Some functionality is still being accessed from DetDesc DeRich1Gas
-Rich::Detector:...WARNING Some functionality is still being accessed from DetDesc DeRich1
 TestDerivedDets     DEBUG Rich::Detector::Rich1 [
 TestDerivedDets     DEBUG  NomRoC=3650
 TestDerivedDets     DEBUG  NomCoCs=(0,932.897,-1493.29),(0,-932.897,-1493.29)
@@ -64,2092 +56,2093 @@ TestDerivedDets     DEBUG  -> [ Num=13 RoC=1.0405e+06 CoC=(-559.502,-264585,1.00
 TestDerivedDets     DEBUG  -> [ Num=14 RoC=1.4338e+06 CoC=(-186.501,-364815,1.38803e+06) CentrePnt=(-186.501,-981.349,1163.27) CentreNorm=(0,-0.253755,0.967269) Refl={ NumBins=643 Min(X,Y)=(1.24313e-06,0.78) Median(X,Y)=(6.83719e-06,0) Max(X,Y)=(1.24313e-05,0) } ]
 TestDerivedDets     DEBUG  -> [ Num=15 RoC=632600 CoC=(-559.503,-161507,613057) CentrePnt=(-559.503,-981.345,1163.25) CentreNorm=(0,-0.253755,0.967269) Refl={ NumBins=643 Min(X,Y)=(1.24313e-06,0.78) Median(X,Y)=(6.83719e-06,0) Max(X,Y)=(1.24313e-05,0) } ]
 TestDerivedDets     DEBUG  2 PD Panels :-
-TestDerivedDets     DEBUG  -> [ Rich1 top NumPDModules=92 ModNumOffset=0 ZShift=-40.2 CentrePtnInGlo=(0,1219.08,1940.97) (x,y)HalfSizes=+-(740,323.85)  DetectionPlane=[ 0 -0.846193 -0.532877 2065.87 ]
+TestDerivedDets     DEBUG  -> [ Rich1 top NumPDModules=92 ModNumOffset=0 ZShift=-40.2 CentrePtnInGlo=(0,1242.12,1904.37) (x,y)HalfSizes=+-(672,310.75)  DetectionPlane=[ 0 -0.846193 -0.532877 2065.87 ]
 TestDerivedDets     DEBUG   PDPanelToGlo=
 TestDerivedDets     DEBUG [ 1 0 0 0
-TestDerivedDets     DEBUG   0 0.532877 0.846193 1219.08
-TestDerivedDets     DEBUG   0 -0.846193 0.532877 1940.97 ]
+TestDerivedDets     DEBUG   0 0.532877 0.846193 1242.12
+TestDerivedDets     DEBUG   0 -0.846193 0.532877 1904.37 ]
 TestDerivedDets     DEBUG   GloToPDPanel=
 TestDerivedDets     DEBUG [ 1 -0 0 0
-TestDerivedDets     DEBUG   -0 0.532877 -0.846193 992.817
+TestDerivedDets     DEBUG   -0 0.532877 -0.846193 949.567
 TestDerivedDets     DEBUG   -0 0.846193 0.532877 -2065.87 ]
 TestDerivedDets     DEBUG   GloToLoc=
 TestDerivedDets     DEBUG [ 1 -0 0 0
-TestDerivedDets     DEBUG   -0 0.532877 -0.846193 668.967
+TestDerivedDets     DEBUG   -0 0.532877 -0.846193 638.817
 TestDerivedDets     DEBUG   -0 0.846193 0.532877 -2106.07 ]
 TestDerivedDets     DEBUG   LocToGlo=
 TestDerivedDets     DEBUG [ 1 0 0 0
-TestDerivedDets     DEBUG   0 0.532877 0.846193 1425.67
-TestDerivedDets     DEBUG   0 -0.846193 0.532877 1688.35 ]
+TestDerivedDets     DEBUG   0 0.532877 0.846193 1441.73
+TestDerivedDets     DEBUG   0 -0.846193 0.532877 1662.84 ]
 TestDerivedDets     DEBUG   -> PD Module 0 { PMT Rich1 Top } Module(Col:NInCol)=0:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1539.97,1443.03) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,09 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1554.89,1419.34) CenPtnInPanel=(546,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1539.97,1443.03) CenPtnInPanel=(518,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1554.89,1419.34) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1539.97,1443.03) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1554.89,1419.34) CenPtnInPanel=(490,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,14 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1539.97,1443.03) CenPtnInPanel=(462,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1554.89,1419.34) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1556.04,1417.52) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,09 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1570.96,1393.82) CenPtnInPanel=(546,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1556.04,1417.52) CenPtnInPanel=(518,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1570.96,1393.82) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1556.04,1417.52) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1570.96,1393.82) CenPtnInPanel=(490,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,14 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1556.04,1417.52) CenPtnInPanel=(462,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:000,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1570.96,1393.82) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 1 { PMT Rich1 Top } Module(Col:NInCol)=0:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1539.97,1443.03) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1554.89,1419.34) CenPtnInPanel=(434,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1539.97,1443.03) CenPtnInPanel=(406,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1554.89,1419.34) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1539.97,1443.03) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1554.89,1419.34) CenPtnInPanel=(378,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1539.97,1443.03) CenPtnInPanel=(350,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1554.89,1419.34) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1539.97,1443.03) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1554.89,1419.34) CenPtnInPanel=(322,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1539.97,1443.03) CenPtnInPanel=(294,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1554.89,1419.34) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1539.97,1443.03) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1554.89,1419.34) CenPtnInPanel=(266,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1539.97,1443.03) CenPtnInPanel=(238,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1554.89,1419.34) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1556.04,1417.52) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1570.96,1393.82) CenPtnInPanel=(434,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1556.04,1417.52) CenPtnInPanel=(406,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1570.96,1393.82) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1556.04,1417.52) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1570.96,1393.82) CenPtnInPanel=(378,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1556.04,1417.52) CenPtnInPanel=(350,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1570.96,1393.82) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1556.04,1417.52) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1570.96,1393.82) CenPtnInPanel=(322,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1556.04,1417.52) CenPtnInPanel=(294,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1570.96,1393.82) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1556.04,1417.52) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1570.96,1393.82) CenPtnInPanel=(266,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1556.04,1417.52) CenPtnInPanel=(238,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:001,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1570.96,1393.82) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 2 { PMT Rich1 Top } Module(Col:NInCol)=0:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1539.97,1443.03) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1554.89,1419.34) CenPtnInPanel=(210,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1539.97,1443.03) CenPtnInPanel=(182,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1554.89,1419.34) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1539.97,1443.03) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1554.89,1419.34) CenPtnInPanel=(154,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1539.97,1443.03) CenPtnInPanel=(126,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1554.89,1419.34) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1539.97,1443.03) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1554.89,1419.34) CenPtnInPanel=(98,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1539.97,1443.03) CenPtnInPanel=(70,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1554.89,1419.34) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1539.97,1443.03) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1554.89,1419.34) CenPtnInPanel=(42,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1539.97,1443.03) CenPtnInPanel=(14,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1554.89,1419.34) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1556.04,1417.52) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1570.96,1393.82) CenPtnInPanel=(210,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1556.04,1417.52) CenPtnInPanel=(182,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1570.96,1393.82) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1556.04,1417.52) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1570.96,1393.82) CenPtnInPanel=(154,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1556.04,1417.52) CenPtnInPanel=(126,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1570.96,1393.82) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1556.04,1417.52) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1570.96,1393.82) CenPtnInPanel=(98,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1556.04,1417.52) CenPtnInPanel=(70,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1570.96,1393.82) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1556.04,1417.52) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1570.96,1393.82) CenPtnInPanel=(42,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1556.04,1417.52) CenPtnInPanel=(14,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:002,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1570.96,1393.82) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 3 { PMT Rich1 Top } Module(Col:NInCol)=0:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1539.97,1443.03) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1554.89,1419.34) CenPtnInPanel=(-14,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1539.97,1443.03) CenPtnInPanel=(-42,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1554.89,1419.34) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1539.97,1443.03) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1554.89,1419.34) CenPtnInPanel=(-70,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1539.97,1443.03) CenPtnInPanel=(-98,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1554.89,1419.34) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1539.97,1443.03) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1554.89,1419.34) CenPtnInPanel=(-126,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1539.97,1443.03) CenPtnInPanel=(-154,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1554.89,1419.34) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1539.97,1443.03) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1554.89,1419.34) CenPtnInPanel=(-182,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1539.97,1443.03) CenPtnInPanel=(-210,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1554.89,1419.34) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1556.04,1417.52) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1570.96,1393.82) CenPtnInPanel=(-14,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1556.04,1417.52) CenPtnInPanel=(-42,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1570.96,1393.82) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1556.04,1417.52) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1570.96,1393.82) CenPtnInPanel=(-70,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1556.04,1417.52) CenPtnInPanel=(-98,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1570.96,1393.82) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1556.04,1417.52) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1570.96,1393.82) CenPtnInPanel=(-126,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1556.04,1417.52) CenPtnInPanel=(-154,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1570.96,1393.82) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1556.04,1417.52) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1570.96,1393.82) CenPtnInPanel=(-182,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1556.04,1417.52) CenPtnInPanel=(-210,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:003,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1570.96,1393.82) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 4 { PMT Rich1 Top } Module(Col:NInCol)=0:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1539.97,1443.03) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1554.89,1419.34) CenPtnInPanel=(-238,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1539.97,1443.03) CenPtnInPanel=(-266,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1554.89,1419.34) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1539.97,1443.03) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1554.89,1419.34) CenPtnInPanel=(-294,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1539.97,1443.03) CenPtnInPanel=(-322,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1554.89,1419.34) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1539.97,1443.03) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1554.89,1419.34) CenPtnInPanel=(-350,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1539.97,1443.03) CenPtnInPanel=(-378,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1554.89,1419.34) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1539.97,1443.03) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1554.89,1419.34) CenPtnInPanel=(-406,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1539.97,1443.03) CenPtnInPanel=(-434,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1554.89,1419.34) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1556.04,1417.52) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1570.96,1393.82) CenPtnInPanel=(-238,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1556.04,1417.52) CenPtnInPanel=(-266,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1570.96,1393.82) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1556.04,1417.52) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1570.96,1393.82) CenPtnInPanel=(-294,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1556.04,1417.52) CenPtnInPanel=(-322,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1570.96,1393.82) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1556.04,1417.52) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1570.96,1393.82) CenPtnInPanel=(-350,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1556.04,1417.52) CenPtnInPanel=(-378,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1570.96,1393.82) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1556.04,1417.52) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1570.96,1393.82) CenPtnInPanel=(-406,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1556.04,1417.52) CenPtnInPanel=(-434,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:004,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1570.96,1393.82) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 5 { PMT Rich1 Top } Module(Col:NInCol)=0:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1539.97,1443.03) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1554.89,1419.34) CenPtnInPanel=(-462,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1539.97,1443.03) CenPtnInPanel=(-490,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1554.89,1419.34) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1539.97,1443.03) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,05 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1554.89,1419.34) CenPtnInPanel=(-518,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1539.97,1443.03) CenPtnInPanel=(-546,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1554.89,1419.34) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1556.04,1417.52) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1570.96,1393.82) CenPtnInPanel=(-462,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1556.04,1417.52) CenPtnInPanel=(-490,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1570.96,1393.82) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1556.04,1417.52) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,05 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1570.96,1393.82) CenPtnInPanel=(-518,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1556.04,1417.52) CenPtnInPanel=(-546,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:005,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1570.96,1393.82) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 6 { PMT Rich1 Top } Module(Col:NInCol)=1:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1509.87,1490.84) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1524.79,1467.15) CenPtnInPanel=(602,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1509.87,1490.84) CenPtnInPanel=(574,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1524.79,1467.15) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1509.87,1490.84) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,09 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1524.79,1467.15) CenPtnInPanel=(546,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,10 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1509.87,1490.84) CenPtnInPanel=(518,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1524.79,1467.15) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1509.87,1490.84) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,13 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1524.79,1467.15) CenPtnInPanel=(490,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,14 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1509.87,1490.84) CenPtnInPanel=(462,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1524.79,1467.15) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1525.93,1465.33) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1540.85,1441.63) CenPtnInPanel=(602,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1525.93,1465.33) CenPtnInPanel=(574,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1540.85,1441.63) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1525.93,1465.33) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,09 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1540.85,1441.63) CenPtnInPanel=(546,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,10 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1525.93,1465.33) CenPtnInPanel=(518,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1540.85,1441.63) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1525.93,1465.33) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,13 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1540.85,1441.63) CenPtnInPanel=(490,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,14 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1525.93,1465.33) CenPtnInPanel=(462,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:006,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1540.85,1441.63) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 7 { PMT Rich1 Top } Module(Col:NInCol)=1:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1509.87,1490.84) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1524.79,1467.15) CenPtnInPanel=(434,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1509.87,1490.84) CenPtnInPanel=(406,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1524.79,1467.15) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1509.87,1490.84) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1524.79,1467.15) CenPtnInPanel=(378,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1509.87,1490.84) CenPtnInPanel=(350,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1524.79,1467.15) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1509.87,1490.84) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1524.79,1467.15) CenPtnInPanel=(322,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1509.87,1490.84) CenPtnInPanel=(294,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1524.79,1467.15) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1509.87,1490.84) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1524.79,1467.15) CenPtnInPanel=(266,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,14 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1509.87,1490.84) CenPtnInPanel=(238,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1524.79,1467.15) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1525.93,1465.33) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1540.85,1441.63) CenPtnInPanel=(434,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1525.93,1465.33) CenPtnInPanel=(406,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1540.85,1441.63) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1525.93,1465.33) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1540.85,1441.63) CenPtnInPanel=(378,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1525.93,1465.33) CenPtnInPanel=(350,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1540.85,1441.63) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1525.93,1465.33) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1540.85,1441.63) CenPtnInPanel=(322,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1525.93,1465.33) CenPtnInPanel=(294,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1540.85,1441.63) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1525.93,1465.33) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1540.85,1441.63) CenPtnInPanel=(266,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,14 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1525.93,1465.33) CenPtnInPanel=(238,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:007,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1540.85,1441.63) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 8 { PMT Rich1 Top } Module(Col:NInCol)=1:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1509.87,1490.84) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1524.79,1467.15) CenPtnInPanel=(210,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1509.87,1490.84) CenPtnInPanel=(182,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1524.79,1467.15) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1509.87,1490.84) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1524.79,1467.15) CenPtnInPanel=(154,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1509.87,1490.84) CenPtnInPanel=(126,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1524.79,1467.15) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1509.87,1490.84) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1524.79,1467.15) CenPtnInPanel=(98,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1509.87,1490.84) CenPtnInPanel=(70,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1524.79,1467.15) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1509.87,1490.84) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1524.79,1467.15) CenPtnInPanel=(42,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1509.87,1490.84) CenPtnInPanel=(14,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1524.79,1467.15) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1525.93,1465.33) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1540.85,1441.63) CenPtnInPanel=(210,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1525.93,1465.33) CenPtnInPanel=(182,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1540.85,1441.63) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1525.93,1465.33) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1540.85,1441.63) CenPtnInPanel=(154,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1525.93,1465.33) CenPtnInPanel=(126,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1540.85,1441.63) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1525.93,1465.33) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1540.85,1441.63) CenPtnInPanel=(98,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1525.93,1465.33) CenPtnInPanel=(70,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1540.85,1441.63) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1525.93,1465.33) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1540.85,1441.63) CenPtnInPanel=(42,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1525.93,1465.33) CenPtnInPanel=(14,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:008,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1540.85,1441.63) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 9 { PMT Rich1 Top } Module(Col:NInCol)=1:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1509.87,1490.84) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1524.79,1467.15) CenPtnInPanel=(-14,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1509.87,1490.84) CenPtnInPanel=(-42,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1524.79,1467.15) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1509.87,1490.84) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1524.79,1467.15) CenPtnInPanel=(-70,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1509.87,1490.84) CenPtnInPanel=(-98,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1524.79,1467.15) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1509.87,1490.84) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1524.79,1467.15) CenPtnInPanel=(-126,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1509.87,1490.84) CenPtnInPanel=(-154,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1524.79,1467.15) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1509.87,1490.84) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1524.79,1467.15) CenPtnInPanel=(-182,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1509.87,1490.84) CenPtnInPanel=(-210,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1524.79,1467.15) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1525.93,1465.33) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1540.85,1441.63) CenPtnInPanel=(-14,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1525.93,1465.33) CenPtnInPanel=(-42,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1540.85,1441.63) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1525.93,1465.33) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1540.85,1441.63) CenPtnInPanel=(-70,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1525.93,1465.33) CenPtnInPanel=(-98,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1540.85,1441.63) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1525.93,1465.33) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1540.85,1441.63) CenPtnInPanel=(-126,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1525.93,1465.33) CenPtnInPanel=(-154,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1540.85,1441.63) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1525.93,1465.33) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1540.85,1441.63) CenPtnInPanel=(-182,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1525.93,1465.33) CenPtnInPanel=(-210,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:009,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1540.85,1441.63) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 10 { PMT Rich1 Top } Module(Col:NInCol)=1:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1509.87,1490.84) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1524.79,1467.15) CenPtnInPanel=(-238,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1509.87,1490.84) CenPtnInPanel=(-266,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1524.79,1467.15) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1509.87,1490.84) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1524.79,1467.15) CenPtnInPanel=(-294,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1509.87,1490.84) CenPtnInPanel=(-322,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1524.79,1467.15) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1509.87,1490.84) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1524.79,1467.15) CenPtnInPanel=(-350,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1509.87,1490.84) CenPtnInPanel=(-378,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1524.79,1467.15) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1509.87,1490.84) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1524.79,1467.15) CenPtnInPanel=(-406,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1509.87,1490.84) CenPtnInPanel=(-434,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1524.79,1467.15) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1525.93,1465.33) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1540.85,1441.63) CenPtnInPanel=(-238,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1525.93,1465.33) CenPtnInPanel=(-266,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1540.85,1441.63) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1525.93,1465.33) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1540.85,1441.63) CenPtnInPanel=(-294,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1525.93,1465.33) CenPtnInPanel=(-322,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1540.85,1441.63) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1525.93,1465.33) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1540.85,1441.63) CenPtnInPanel=(-350,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1525.93,1465.33) CenPtnInPanel=(-378,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1540.85,1441.63) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1525.93,1465.33) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1540.85,1441.63) CenPtnInPanel=(-406,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1525.93,1465.33) CenPtnInPanel=(-434,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:010,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1540.85,1441.63) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 11 { PMT Rich1 Top } Module(Col:NInCol)=1:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1509.87,1490.84) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1524.79,1467.15) CenPtnInPanel=(-462,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1509.87,1490.84) CenPtnInPanel=(-490,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1524.79,1467.15) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1509.87,1490.84) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1524.79,1467.15) CenPtnInPanel=(-518,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1509.87,1490.84) CenPtnInPanel=(-546,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1524.79,1467.15) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1509.87,1490.84) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1524.79,1467.15) CenPtnInPanel=(-574,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1509.87,1490.84) CenPtnInPanel=(-602,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1524.79,1467.15) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1525.93,1465.33) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1540.85,1441.63) CenPtnInPanel=(-462,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1525.93,1465.33) CenPtnInPanel=(-490,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1540.85,1441.63) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1525.93,1465.33) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1540.85,1441.63) CenPtnInPanel=(-518,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1525.93,1465.33) CenPtnInPanel=(-546,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1540.85,1441.63) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1525.93,1465.33) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1540.85,1441.63) CenPtnInPanel=(-574,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1525.93,1465.33) CenPtnInPanel=(-602,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:011,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1540.85,1441.63) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 12 { PMT Rich1 Top } Module(Col:NInCol)=2:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1479.76,1538.65) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1494.68,1514.96) CenPtnInPanel=(602,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1479.76,1538.65) CenPtnInPanel=(574,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1494.68,1514.96) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1479.76,1538.65) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1494.68,1514.96) CenPtnInPanel=(546,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1479.76,1538.65) CenPtnInPanel=(518,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1494.68,1514.96) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1479.76,1538.65) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1494.68,1514.96) CenPtnInPanel=(490,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,14 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1479.76,1538.65) CenPtnInPanel=(462,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1494.68,1514.96) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1495.82,1513.14) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1510.74,1489.44) CenPtnInPanel=(602,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1495.82,1513.14) CenPtnInPanel=(574,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1510.74,1489.44) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1495.82,1513.14) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1510.74,1489.44) CenPtnInPanel=(546,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1495.82,1513.14) CenPtnInPanel=(518,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1510.74,1489.44) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1495.82,1513.14) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1510.74,1489.44) CenPtnInPanel=(490,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,14 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1495.82,1513.14) CenPtnInPanel=(462,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:012,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1510.74,1489.44) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 13 { PMT Rich1 Top } Module(Col:NInCol)=2:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1479.76,1538.65) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1494.68,1514.96) CenPtnInPanel=(434,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1479.76,1538.65) CenPtnInPanel=(406,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1494.68,1514.96) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1479.76,1538.65) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1494.68,1514.96) CenPtnInPanel=(378,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1479.76,1538.65) CenPtnInPanel=(350,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1494.68,1514.96) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1479.76,1538.65) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1494.68,1514.96) CenPtnInPanel=(322,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1479.76,1538.65) CenPtnInPanel=(294,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1494.68,1514.96) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1479.76,1538.65) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1494.68,1514.96) CenPtnInPanel=(266,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1479.76,1538.65) CenPtnInPanel=(238,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1494.68,1514.96) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1495.82,1513.14) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1510.74,1489.44) CenPtnInPanel=(434,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1495.82,1513.14) CenPtnInPanel=(406,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1510.74,1489.44) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1495.82,1513.14) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1510.74,1489.44) CenPtnInPanel=(378,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1495.82,1513.14) CenPtnInPanel=(350,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1510.74,1489.44) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1495.82,1513.14) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1510.74,1489.44) CenPtnInPanel=(322,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1495.82,1513.14) CenPtnInPanel=(294,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1510.74,1489.44) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1495.82,1513.14) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1510.74,1489.44) CenPtnInPanel=(266,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1495.82,1513.14) CenPtnInPanel=(238,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:013,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1510.74,1489.44) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 14 { PMT Rich1 Top } Module(Col:NInCol)=2:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1479.76,1538.65) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1494.68,1514.96) CenPtnInPanel=(210,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1479.76,1538.65) CenPtnInPanel=(182,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1494.68,1514.96) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1479.76,1538.65) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1494.68,1514.96) CenPtnInPanel=(154,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1479.76,1538.65) CenPtnInPanel=(126,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1494.68,1514.96) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1479.76,1538.65) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1494.68,1514.96) CenPtnInPanel=(98,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1479.76,1538.65) CenPtnInPanel=(70,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1494.68,1514.96) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1479.76,1538.65) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1494.68,1514.96) CenPtnInPanel=(42,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1479.76,1538.65) CenPtnInPanel=(14,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1494.68,1514.96) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1495.82,1513.14) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1510.74,1489.44) CenPtnInPanel=(210,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1495.82,1513.14) CenPtnInPanel=(182,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1510.74,1489.44) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1495.82,1513.14) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1510.74,1489.44) CenPtnInPanel=(154,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1495.82,1513.14) CenPtnInPanel=(126,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1510.74,1489.44) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1495.82,1513.14) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1510.74,1489.44) CenPtnInPanel=(98,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1495.82,1513.14) CenPtnInPanel=(70,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1510.74,1489.44) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1495.82,1513.14) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1510.74,1489.44) CenPtnInPanel=(42,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1495.82,1513.14) CenPtnInPanel=(14,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:014,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1510.74,1489.44) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 15 { PMT Rich1 Top } Module(Col:NInCol)=2:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1479.76,1538.65) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1494.68,1514.96) CenPtnInPanel=(-14,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1479.76,1538.65) CenPtnInPanel=(-42,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1494.68,1514.96) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1479.76,1538.65) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1494.68,1514.96) CenPtnInPanel=(-70,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1479.76,1538.65) CenPtnInPanel=(-98,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1494.68,1514.96) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1479.76,1538.65) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1494.68,1514.96) CenPtnInPanel=(-126,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1479.76,1538.65) CenPtnInPanel=(-154,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1494.68,1514.96) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1479.76,1538.65) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1494.68,1514.96) CenPtnInPanel=(-182,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1479.76,1538.65) CenPtnInPanel=(-210,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1494.68,1514.96) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1495.82,1513.14) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1510.74,1489.44) CenPtnInPanel=(-14,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1495.82,1513.14) CenPtnInPanel=(-42,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1510.74,1489.44) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1495.82,1513.14) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1510.74,1489.44) CenPtnInPanel=(-70,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1495.82,1513.14) CenPtnInPanel=(-98,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1510.74,1489.44) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1495.82,1513.14) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1510.74,1489.44) CenPtnInPanel=(-126,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1495.82,1513.14) CenPtnInPanel=(-154,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1510.74,1489.44) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1495.82,1513.14) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1510.74,1489.44) CenPtnInPanel=(-182,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1495.82,1513.14) CenPtnInPanel=(-210,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:015,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1510.74,1489.44) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 16 { PMT Rich1 Top } Module(Col:NInCol)=2:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1479.76,1538.65) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1494.68,1514.96) CenPtnInPanel=(-238,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1479.76,1538.65) CenPtnInPanel=(-266,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1494.68,1514.96) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1479.76,1538.65) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1494.68,1514.96) CenPtnInPanel=(-294,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1479.76,1538.65) CenPtnInPanel=(-322,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1494.68,1514.96) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1479.76,1538.65) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1494.68,1514.96) CenPtnInPanel=(-350,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,10 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1479.76,1538.65) CenPtnInPanel=(-378,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1494.68,1514.96) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1479.76,1538.65) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,13 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1494.68,1514.96) CenPtnInPanel=(-406,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,14 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1479.76,1538.65) CenPtnInPanel=(-434,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1494.68,1514.96) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1495.82,1513.14) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1510.74,1489.44) CenPtnInPanel=(-238,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1495.82,1513.14) CenPtnInPanel=(-266,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1510.74,1489.44) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1495.82,1513.14) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1510.74,1489.44) CenPtnInPanel=(-294,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1495.82,1513.14) CenPtnInPanel=(-322,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1510.74,1489.44) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1495.82,1513.14) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1510.74,1489.44) CenPtnInPanel=(-350,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,10 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1495.82,1513.14) CenPtnInPanel=(-378,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1510.74,1489.44) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1495.82,1513.14) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,13 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1510.74,1489.44) CenPtnInPanel=(-406,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,14 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1495.82,1513.14) CenPtnInPanel=(-434,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:016,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1510.74,1489.44) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 17 { PMT Rich1 Top } Module(Col:NInCol)=2:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1479.76,1538.65) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1494.68,1514.96) CenPtnInPanel=(-462,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1479.76,1538.65) CenPtnInPanel=(-490,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1494.68,1514.96) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1479.76,1538.65) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1494.68,1514.96) CenPtnInPanel=(-518,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1479.76,1538.65) CenPtnInPanel=(-546,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1494.68,1514.96) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1479.76,1538.65) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1494.68,1514.96) CenPtnInPanel=(-574,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1479.76,1538.65) CenPtnInPanel=(-602,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1494.68,1514.96) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1495.82,1513.14) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1510.74,1489.44) CenPtnInPanel=(-462,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1495.82,1513.14) CenPtnInPanel=(-490,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1510.74,1489.44) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1495.82,1513.14) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1510.74,1489.44) CenPtnInPanel=(-518,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1495.82,1513.14) CenPtnInPanel=(-546,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1510.74,1489.44) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1495.82,1513.14) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1510.74,1489.44) CenPtnInPanel=(-574,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1495.82,1513.14) CenPtnInPanel=(-602,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:017,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1510.74,1489.44) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 18 { PMT Rich1 Top } Module(Col:NInCol)=3:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1449.65,1586.46) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1464.57,1562.77) CenPtnInPanel=(602,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1449.65,1586.46) CenPtnInPanel=(574,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1464.57,1562.77) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1449.65,1586.46) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1464.57,1562.77) CenPtnInPanel=(546,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1449.65,1586.46) CenPtnInPanel=(518,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1464.57,1562.77) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1449.65,1586.46) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1464.57,1562.77) CenPtnInPanel=(490,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1449.65,1586.46) CenPtnInPanel=(462,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1464.57,1562.77) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1465.72,1560.95) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1480.64,1537.25) CenPtnInPanel=(602,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1465.72,1560.95) CenPtnInPanel=(574,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1480.64,1537.25) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1465.72,1560.95) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1480.64,1537.25) CenPtnInPanel=(546,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1465.72,1560.95) CenPtnInPanel=(518,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1480.64,1537.25) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1465.72,1560.95) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1480.64,1537.25) CenPtnInPanel=(490,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1465.72,1560.95) CenPtnInPanel=(462,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:018,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1480.64,1537.25) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 19 { PMT Rich1 Top } Module(Col:NInCol)=3:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1449.65,1586.46) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1464.57,1562.77) CenPtnInPanel=(434,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1449.65,1586.46) CenPtnInPanel=(406,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1464.57,1562.77) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1449.65,1586.46) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1464.57,1562.77) CenPtnInPanel=(378,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1449.65,1586.46) CenPtnInPanel=(350,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1464.57,1562.77) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1449.65,1586.46) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1464.57,1562.77) CenPtnInPanel=(322,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1449.65,1586.46) CenPtnInPanel=(294,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1464.57,1562.77) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1449.65,1586.46) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1464.57,1562.77) CenPtnInPanel=(266,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1449.65,1586.46) CenPtnInPanel=(238,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1464.57,1562.77) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1465.72,1560.95) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1480.64,1537.25) CenPtnInPanel=(434,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1465.72,1560.95) CenPtnInPanel=(406,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1480.64,1537.25) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1465.72,1560.95) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1480.64,1537.25) CenPtnInPanel=(378,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1465.72,1560.95) CenPtnInPanel=(350,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1480.64,1537.25) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1465.72,1560.95) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1480.64,1537.25) CenPtnInPanel=(322,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1465.72,1560.95) CenPtnInPanel=(294,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1480.64,1537.25) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1465.72,1560.95) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1480.64,1537.25) CenPtnInPanel=(266,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1465.72,1560.95) CenPtnInPanel=(238,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:019,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1480.64,1537.25) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 20 { PMT Rich1 Top } Module(Col:NInCol)=3:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1449.65,1586.46) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1464.57,1562.77) CenPtnInPanel=(210,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1449.65,1586.46) CenPtnInPanel=(182,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1464.57,1562.77) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1449.65,1586.46) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1464.57,1562.77) CenPtnInPanel=(154,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1449.65,1586.46) CenPtnInPanel=(126,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1464.57,1562.77) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1449.65,1586.46) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1464.57,1562.77) CenPtnInPanel=(98,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1449.65,1586.46) CenPtnInPanel=(70,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1464.57,1562.77) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1449.65,1586.46) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1464.57,1562.77) CenPtnInPanel=(42,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1449.65,1586.46) CenPtnInPanel=(14,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1464.57,1562.77) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1465.72,1560.95) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1480.64,1537.25) CenPtnInPanel=(210,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1465.72,1560.95) CenPtnInPanel=(182,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1480.64,1537.25) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1465.72,1560.95) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1480.64,1537.25) CenPtnInPanel=(154,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1465.72,1560.95) CenPtnInPanel=(126,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1480.64,1537.25) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1465.72,1560.95) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1480.64,1537.25) CenPtnInPanel=(98,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1465.72,1560.95) CenPtnInPanel=(70,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1480.64,1537.25) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1465.72,1560.95) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1480.64,1537.25) CenPtnInPanel=(42,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1465.72,1560.95) CenPtnInPanel=(14,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:020,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1480.64,1537.25) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 21 { PMT Rich1 Top } Module(Col:NInCol)=3:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1449.65,1586.46) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1464.57,1562.77) CenPtnInPanel=(-14,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1449.65,1586.46) CenPtnInPanel=(-42,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1464.57,1562.77) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1449.65,1586.46) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1464.57,1562.77) CenPtnInPanel=(-70,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1449.65,1586.46) CenPtnInPanel=(-98,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1464.57,1562.77) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1449.65,1586.46) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1464.57,1562.77) CenPtnInPanel=(-126,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1449.65,1586.46) CenPtnInPanel=(-154,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1464.57,1562.77) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1449.65,1586.46) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1464.57,1562.77) CenPtnInPanel=(-182,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1449.65,1586.46) CenPtnInPanel=(-210,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1464.57,1562.77) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1465.72,1560.95) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1480.64,1537.25) CenPtnInPanel=(-14,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1465.72,1560.95) CenPtnInPanel=(-42,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1480.64,1537.25) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1465.72,1560.95) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1480.64,1537.25) CenPtnInPanel=(-70,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1465.72,1560.95) CenPtnInPanel=(-98,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1480.64,1537.25) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1465.72,1560.95) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1480.64,1537.25) CenPtnInPanel=(-126,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1465.72,1560.95) CenPtnInPanel=(-154,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1480.64,1537.25) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1465.72,1560.95) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1480.64,1537.25) CenPtnInPanel=(-182,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1465.72,1560.95) CenPtnInPanel=(-210,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:021,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1480.64,1537.25) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 22 { PMT Rich1 Top } Module(Col:NInCol)=3:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1449.65,1586.46) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1464.57,1562.77) CenPtnInPanel=(-238,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1449.65,1586.46) CenPtnInPanel=(-266,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1464.57,1562.77) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1449.65,1586.46) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1464.57,1562.77) CenPtnInPanel=(-294,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1449.65,1586.46) CenPtnInPanel=(-322,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1464.57,1562.77) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1449.65,1586.46) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1464.57,1562.77) CenPtnInPanel=(-350,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1449.65,1586.46) CenPtnInPanel=(-378,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1464.57,1562.77) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1449.65,1586.46) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,13 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1464.57,1562.77) CenPtnInPanel=(-406,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,14 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1449.65,1586.46) CenPtnInPanel=(-434,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1464.57,1562.77) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1465.72,1560.95) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1480.64,1537.25) CenPtnInPanel=(-238,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1465.72,1560.95) CenPtnInPanel=(-266,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1480.64,1537.25) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1465.72,1560.95) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1480.64,1537.25) CenPtnInPanel=(-294,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1465.72,1560.95) CenPtnInPanel=(-322,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1480.64,1537.25) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1465.72,1560.95) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1480.64,1537.25) CenPtnInPanel=(-350,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1465.72,1560.95) CenPtnInPanel=(-378,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1480.64,1537.25) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1465.72,1560.95) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,13 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1480.64,1537.25) CenPtnInPanel=(-406,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,14 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1465.72,1560.95) CenPtnInPanel=(-434,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:022,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1480.64,1537.25) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 23 { PMT Rich1 Top } Module(Col:NInCol)=3:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1449.65,1586.46) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1464.57,1562.77) CenPtnInPanel=(-462,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1449.65,1586.46) CenPtnInPanel=(-490,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1464.57,1562.77) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1449.65,1586.46) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,05 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1464.57,1562.77) CenPtnInPanel=(-518,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1449.65,1586.46) CenPtnInPanel=(-546,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1464.57,1562.77) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1449.65,1586.46) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1464.57,1562.77) CenPtnInPanel=(-574,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,10 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1449.65,1586.46) CenPtnInPanel=(-602,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1464.57,1562.77) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1465.72,1560.95) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1480.64,1537.25) CenPtnInPanel=(-462,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1465.72,1560.95) CenPtnInPanel=(-490,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1480.64,1537.25) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1465.72,1560.95) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,05 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1480.64,1537.25) CenPtnInPanel=(-518,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1465.72,1560.95) CenPtnInPanel=(-546,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1480.64,1537.25) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1465.72,1560.95) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1480.64,1537.25) CenPtnInPanel=(-574,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,10 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1465.72,1560.95) CenPtnInPanel=(-602,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:023,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1480.64,1537.25) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 24 { PMT Rich1 Top } Module(Col:NInCol)=4:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1419.54,1634.27) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1434.46,1610.58) CenPtnInPanel=(602,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,06 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1419.54,1634.27) CenPtnInPanel=(574,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1434.46,1610.58) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1419.54,1634.27) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1434.46,1610.58) CenPtnInPanel=(546,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,10 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1419.54,1634.27) CenPtnInPanel=(518,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1434.46,1610.58) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1419.54,1634.27) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1434.46,1610.58) CenPtnInPanel=(490,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1419.54,1634.27) CenPtnInPanel=(462,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1434.46,1610.58) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1435.61,1608.76) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1450.53,1585.06) CenPtnInPanel=(602,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,06 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1435.61,1608.76) CenPtnInPanel=(574,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1450.53,1585.06) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1435.61,1608.76) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1450.53,1585.06) CenPtnInPanel=(546,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,10 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1435.61,1608.76) CenPtnInPanel=(518,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1450.53,1585.06) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1435.61,1608.76) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1450.53,1585.06) CenPtnInPanel=(490,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1435.61,1608.76) CenPtnInPanel=(462,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:024,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1450.53,1585.06) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 25 { PMT Rich1 Top } Module(Col:NInCol)=4:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1419.54,1634.27) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1434.46,1610.58) CenPtnInPanel=(434,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1419.54,1634.27) CenPtnInPanel=(406,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1434.46,1610.58) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1419.54,1634.27) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1434.46,1610.58) CenPtnInPanel=(378,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,06 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1419.54,1634.27) CenPtnInPanel=(350,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1434.46,1610.58) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1419.54,1634.27) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1434.46,1610.58) CenPtnInPanel=(322,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1419.54,1634.27) CenPtnInPanel=(294,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1434.46,1610.58) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1419.54,1634.27) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1434.46,1610.58) CenPtnInPanel=(266,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1419.54,1634.27) CenPtnInPanel=(238,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1434.46,1610.58) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1435.61,1608.76) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1450.53,1585.06) CenPtnInPanel=(434,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1435.61,1608.76) CenPtnInPanel=(406,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1450.53,1585.06) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1435.61,1608.76) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1450.53,1585.06) CenPtnInPanel=(378,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,06 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1435.61,1608.76) CenPtnInPanel=(350,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1450.53,1585.06) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1435.61,1608.76) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1450.53,1585.06) CenPtnInPanel=(322,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1435.61,1608.76) CenPtnInPanel=(294,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1450.53,1585.06) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1435.61,1608.76) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1450.53,1585.06) CenPtnInPanel=(266,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1435.61,1608.76) CenPtnInPanel=(238,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:025,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1450.53,1585.06) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 26 { PMT Rich1 Top } Module(Col:NInCol)=4:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1419.54,1634.27) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1434.46,1610.58) CenPtnInPanel=(210,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1419.54,1634.27) CenPtnInPanel=(182,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1434.46,1610.58) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1419.54,1634.27) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1434.46,1610.58) CenPtnInPanel=(154,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1419.54,1634.27) CenPtnInPanel=(126,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1434.46,1610.58) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1419.54,1634.27) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1434.46,1610.58) CenPtnInPanel=(98,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1419.54,1634.27) CenPtnInPanel=(70,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1434.46,1610.58) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1419.54,1634.27) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1434.46,1610.58) CenPtnInPanel=(42,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1419.54,1634.27) CenPtnInPanel=(14,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1434.46,1610.58) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1435.61,1608.76) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1450.53,1585.06) CenPtnInPanel=(210,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1435.61,1608.76) CenPtnInPanel=(182,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1450.53,1585.06) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1435.61,1608.76) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1450.53,1585.06) CenPtnInPanel=(154,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1435.61,1608.76) CenPtnInPanel=(126,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1450.53,1585.06) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1435.61,1608.76) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1450.53,1585.06) CenPtnInPanel=(98,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1435.61,1608.76) CenPtnInPanel=(70,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1450.53,1585.06) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1435.61,1608.76) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1450.53,1585.06) CenPtnInPanel=(42,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1435.61,1608.76) CenPtnInPanel=(14,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:026,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1450.53,1585.06) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 27 { PMT Rich1 Top } Module(Col:NInCol)=4:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1419.54,1634.27) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1434.46,1610.58) CenPtnInPanel=(-14,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1419.54,1634.27) CenPtnInPanel=(-42,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1434.46,1610.58) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1419.54,1634.27) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1434.46,1610.58) CenPtnInPanel=(-70,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1419.54,1634.27) CenPtnInPanel=(-98,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1434.46,1610.58) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1419.54,1634.27) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1434.46,1610.58) CenPtnInPanel=(-126,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1419.54,1634.27) CenPtnInPanel=(-154,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1434.46,1610.58) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1419.54,1634.27) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1434.46,1610.58) CenPtnInPanel=(-182,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1419.54,1634.27) CenPtnInPanel=(-210,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1434.46,1610.58) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1435.61,1608.76) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1450.53,1585.06) CenPtnInPanel=(-14,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1435.61,1608.76) CenPtnInPanel=(-42,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1450.53,1585.06) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1435.61,1608.76) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1450.53,1585.06) CenPtnInPanel=(-70,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1435.61,1608.76) CenPtnInPanel=(-98,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1450.53,1585.06) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1435.61,1608.76) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1450.53,1585.06) CenPtnInPanel=(-126,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1435.61,1608.76) CenPtnInPanel=(-154,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1450.53,1585.06) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1435.61,1608.76) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1450.53,1585.06) CenPtnInPanel=(-182,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1435.61,1608.76) CenPtnInPanel=(-210,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:027,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1450.53,1585.06) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 28 { PMT Rich1 Top } Module(Col:NInCol)=4:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1419.54,1634.27) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1434.46,1610.58) CenPtnInPanel=(-238,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1419.54,1634.27) CenPtnInPanel=(-266,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1434.46,1610.58) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1419.54,1634.27) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1434.46,1610.58) CenPtnInPanel=(-294,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,06 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1419.54,1634.27) CenPtnInPanel=(-322,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1434.46,1610.58) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1419.54,1634.27) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1434.46,1610.58) CenPtnInPanel=(-350,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,10 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1419.54,1634.27) CenPtnInPanel=(-378,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1434.46,1610.58) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1419.54,1634.27) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1434.46,1610.58) CenPtnInPanel=(-406,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,14 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1419.54,1634.27) CenPtnInPanel=(-434,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1434.46,1610.58) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1435.61,1608.76) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1450.53,1585.06) CenPtnInPanel=(-238,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1435.61,1608.76) CenPtnInPanel=(-266,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1450.53,1585.06) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1435.61,1608.76) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1450.53,1585.06) CenPtnInPanel=(-294,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,06 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1435.61,1608.76) CenPtnInPanel=(-322,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1450.53,1585.06) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1435.61,1608.76) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1450.53,1585.06) CenPtnInPanel=(-350,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,10 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1435.61,1608.76) CenPtnInPanel=(-378,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1450.53,1585.06) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1435.61,1608.76) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1450.53,1585.06) CenPtnInPanel=(-406,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,14 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1435.61,1608.76) CenPtnInPanel=(-434,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:028,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1450.53,1585.06) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 29 { PMT Rich1 Top } Module(Col:NInCol)=4:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1419.54,1634.27) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1434.46,1610.58) CenPtnInPanel=(-462,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1419.54,1634.27) CenPtnInPanel=(-490,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1434.46,1610.58) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1419.54,1634.27) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,05 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1434.46,1610.58) CenPtnInPanel=(-518,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,06 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1419.54,1634.27) CenPtnInPanel=(-546,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1434.46,1610.58) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1419.54,1634.27) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1434.46,1610.58) CenPtnInPanel=(-574,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,10 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1419.54,1634.27) CenPtnInPanel=(-602,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1434.46,1610.58) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1435.61,1608.76) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1450.53,1585.06) CenPtnInPanel=(-462,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1435.61,1608.76) CenPtnInPanel=(-490,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1450.53,1585.06) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1435.61,1608.76) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,05 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1450.53,1585.06) CenPtnInPanel=(-518,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,06 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1435.61,1608.76) CenPtnInPanel=(-546,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1450.53,1585.06) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1435.61,1608.76) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1450.53,1585.06) CenPtnInPanel=(-574,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,10 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1435.61,1608.76) CenPtnInPanel=(-602,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:029,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1450.53,1585.06) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 30 { PMT Rich1 Top } Module(Col:NInCol)=5:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1389.44,1682.08) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1404.36,1658.39) CenPtnInPanel=(602,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,06 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1389.44,1682.08) CenPtnInPanel=(574,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1404.36,1658.39) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1389.44,1682.08) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1404.36,1658.39) CenPtnInPanel=(546,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1389.44,1682.08) CenPtnInPanel=(518,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1404.36,1658.39) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1389.44,1682.08) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1404.36,1658.39) CenPtnInPanel=(490,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1389.44,1682.08) CenPtnInPanel=(462,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1404.36,1658.39) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1405.5,1656.57) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1420.42,1632.87) CenPtnInPanel=(602,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,06 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1405.5,1656.57) CenPtnInPanel=(574,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1420.42,1632.87) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1405.5,1656.57) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1420.42,1632.87) CenPtnInPanel=(546,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1405.5,1656.57) CenPtnInPanel=(518,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1420.42,1632.87) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1405.5,1656.57) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1420.42,1632.87) CenPtnInPanel=(490,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1405.5,1656.57) CenPtnInPanel=(462,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:030,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1420.42,1632.87) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 31 { PMT Rich1 Top } Module(Col:NInCol)=5:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1389.44,1682.08) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1404.36,1658.39) CenPtnInPanel=(434,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1389.44,1682.08) CenPtnInPanel=(406,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1404.36,1658.39) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1389.44,1682.08) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1404.36,1658.39) CenPtnInPanel=(378,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1389.44,1682.08) CenPtnInPanel=(350,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1404.36,1658.39) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1389.44,1682.08) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1404.36,1658.39) CenPtnInPanel=(322,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1389.44,1682.08) CenPtnInPanel=(294,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1404.36,1658.39) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1389.44,1682.08) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1404.36,1658.39) CenPtnInPanel=(266,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1389.44,1682.08) CenPtnInPanel=(238,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1404.36,1658.39) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1405.5,1656.57) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1420.42,1632.87) CenPtnInPanel=(434,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1405.5,1656.57) CenPtnInPanel=(406,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1420.42,1632.87) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1405.5,1656.57) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1420.42,1632.87) CenPtnInPanel=(378,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1405.5,1656.57) CenPtnInPanel=(350,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1420.42,1632.87) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1405.5,1656.57) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1420.42,1632.87) CenPtnInPanel=(322,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1405.5,1656.57) CenPtnInPanel=(294,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1420.42,1632.87) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1405.5,1656.57) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1420.42,1632.87) CenPtnInPanel=(266,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1405.5,1656.57) CenPtnInPanel=(238,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:031,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1420.42,1632.87) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 32 { PMT Rich1 Top } Module(Col:NInCol)=5:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1389.44,1682.08) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1404.36,1658.39) CenPtnInPanel=(210,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1389.44,1682.08) CenPtnInPanel=(182,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1404.36,1658.39) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1389.44,1682.08) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1404.36,1658.39) CenPtnInPanel=(154,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1389.44,1682.08) CenPtnInPanel=(126,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1404.36,1658.39) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1389.44,1682.08) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1404.36,1658.39) CenPtnInPanel=(98,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1389.44,1682.08) CenPtnInPanel=(70,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1404.36,1658.39) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1389.44,1682.08) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1404.36,1658.39) CenPtnInPanel=(42,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1389.44,1682.08) CenPtnInPanel=(14,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1404.36,1658.39) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1405.5,1656.57) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1420.42,1632.87) CenPtnInPanel=(210,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1405.5,1656.57) CenPtnInPanel=(182,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1420.42,1632.87) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1405.5,1656.57) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1420.42,1632.87) CenPtnInPanel=(154,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1405.5,1656.57) CenPtnInPanel=(126,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1420.42,1632.87) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1405.5,1656.57) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1420.42,1632.87) CenPtnInPanel=(98,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1405.5,1656.57) CenPtnInPanel=(70,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1420.42,1632.87) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1405.5,1656.57) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1420.42,1632.87) CenPtnInPanel=(42,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1405.5,1656.57) CenPtnInPanel=(14,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:032,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1420.42,1632.87) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 33 { PMT Rich1 Top } Module(Col:NInCol)=5:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1389.44,1682.08) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1404.36,1658.39) CenPtnInPanel=(-14,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1389.44,1682.08) CenPtnInPanel=(-42,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1404.36,1658.39) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1389.44,1682.08) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1404.36,1658.39) CenPtnInPanel=(-70,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1389.44,1682.08) CenPtnInPanel=(-98,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1404.36,1658.39) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1389.44,1682.08) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1404.36,1658.39) CenPtnInPanel=(-126,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1389.44,1682.08) CenPtnInPanel=(-154,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1404.36,1658.39) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1389.44,1682.08) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1404.36,1658.39) CenPtnInPanel=(-182,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1389.44,1682.08) CenPtnInPanel=(-210,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1404.36,1658.39) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1405.5,1656.57) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1420.42,1632.87) CenPtnInPanel=(-14,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1405.5,1656.57) CenPtnInPanel=(-42,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1420.42,1632.87) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1405.5,1656.57) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1420.42,1632.87) CenPtnInPanel=(-70,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1405.5,1656.57) CenPtnInPanel=(-98,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1420.42,1632.87) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1405.5,1656.57) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1420.42,1632.87) CenPtnInPanel=(-126,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1405.5,1656.57) CenPtnInPanel=(-154,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1420.42,1632.87) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1405.5,1656.57) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1420.42,1632.87) CenPtnInPanel=(-182,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1405.5,1656.57) CenPtnInPanel=(-210,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:033,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1420.42,1632.87) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 34 { PMT Rich1 Top } Module(Col:NInCol)=5:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1389.44,1682.08) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1404.36,1658.39) CenPtnInPanel=(-238,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1389.44,1682.08) CenPtnInPanel=(-266,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1404.36,1658.39) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1389.44,1682.08) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1404.36,1658.39) CenPtnInPanel=(-294,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1389.44,1682.08) CenPtnInPanel=(-322,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1404.36,1658.39) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1389.44,1682.08) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1404.36,1658.39) CenPtnInPanel=(-350,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1389.44,1682.08) CenPtnInPanel=(-378,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1404.36,1658.39) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1389.44,1682.08) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1404.36,1658.39) CenPtnInPanel=(-406,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1389.44,1682.08) CenPtnInPanel=(-434,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1404.36,1658.39) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1405.5,1656.57) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1420.42,1632.87) CenPtnInPanel=(-238,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1405.5,1656.57) CenPtnInPanel=(-266,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1420.42,1632.87) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1405.5,1656.57) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1420.42,1632.87) CenPtnInPanel=(-294,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1405.5,1656.57) CenPtnInPanel=(-322,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1420.42,1632.87) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1405.5,1656.57) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1420.42,1632.87) CenPtnInPanel=(-350,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1405.5,1656.57) CenPtnInPanel=(-378,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1420.42,1632.87) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1405.5,1656.57) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1420.42,1632.87) CenPtnInPanel=(-406,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1405.5,1656.57) CenPtnInPanel=(-434,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:034,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1420.42,1632.87) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 35 { PMT Rich1 Top } Module(Col:NInCol)=5:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1389.44,1682.08) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1404.36,1658.39) CenPtnInPanel=(-462,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1389.44,1682.08) CenPtnInPanel=(-490,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1404.36,1658.39) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1389.44,1682.08) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,05 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1404.36,1658.39) CenPtnInPanel=(-518,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1389.44,1682.08) CenPtnInPanel=(-546,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1404.36,1658.39) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1389.44,1682.08) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1404.36,1658.39) CenPtnInPanel=(-574,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1389.44,1682.08) CenPtnInPanel=(-602,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1404.36,1658.39) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1405.5,1656.57) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1420.42,1632.87) CenPtnInPanel=(-462,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1405.5,1656.57) CenPtnInPanel=(-490,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1420.42,1632.87) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1405.5,1656.57) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,05 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1420.42,1632.87) CenPtnInPanel=(-518,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1405.5,1656.57) CenPtnInPanel=(-546,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1420.42,1632.87) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1405.5,1656.57) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1420.42,1632.87) CenPtnInPanel=(-574,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1405.5,1656.57) CenPtnInPanel=(-602,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:035,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1420.42,1632.87) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 36 { PMT Rich1 Top } Module(Col:NInCol)=6:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1359.33,1729.89) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,05 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1374.25,1706.2) CenPtnInPanel=(602,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1359.33,1729.89) CenPtnInPanel=(574,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1374.25,1706.2) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1359.33,1729.89) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,09 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1374.25,1706.2) CenPtnInPanel=(546,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1359.33,1729.89) CenPtnInPanel=(518,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1374.25,1706.2) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1359.33,1729.89) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,13 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1374.25,1706.2) CenPtnInPanel=(490,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1359.33,1729.89) CenPtnInPanel=(462,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1374.25,1706.2) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1375.39,1704.38) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,05 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1390.31,1680.68) CenPtnInPanel=(602,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1375.39,1704.38) CenPtnInPanel=(574,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1390.31,1680.68) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1375.39,1704.38) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,09 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1390.31,1680.68) CenPtnInPanel=(546,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1375.39,1704.38) CenPtnInPanel=(518,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1390.31,1680.68) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1375.39,1704.38) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,13 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1390.31,1680.68) CenPtnInPanel=(490,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1375.39,1704.38) CenPtnInPanel=(462,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:036,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1390.31,1680.68) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 37 { PMT Rich1 Top } Module(Col:NInCol)=6:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1359.33,1729.89) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1374.25,1706.2) CenPtnInPanel=(434,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1359.33,1729.89) CenPtnInPanel=(406,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1374.25,1706.2) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1359.33,1729.89) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1374.25,1706.2) CenPtnInPanel=(378,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1359.33,1729.89) CenPtnInPanel=(350,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1374.25,1706.2) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1359.33,1729.89) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1374.25,1706.2) CenPtnInPanel=(322,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1359.33,1729.89) CenPtnInPanel=(294,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1374.25,1706.2) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1359.33,1729.89) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1374.25,1706.2) CenPtnInPanel=(266,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1359.33,1729.89) CenPtnInPanel=(238,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1374.25,1706.2) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1375.39,1704.38) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1390.31,1680.68) CenPtnInPanel=(434,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1375.39,1704.38) CenPtnInPanel=(406,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1390.31,1680.68) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1375.39,1704.38) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1390.31,1680.68) CenPtnInPanel=(378,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1375.39,1704.38) CenPtnInPanel=(350,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1390.31,1680.68) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1375.39,1704.38) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1390.31,1680.68) CenPtnInPanel=(322,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1375.39,1704.38) CenPtnInPanel=(294,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1390.31,1680.68) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1375.39,1704.38) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1390.31,1680.68) CenPtnInPanel=(266,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1375.39,1704.38) CenPtnInPanel=(238,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:037,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1390.31,1680.68) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 38 { PMT Rich1 Top } Module(Col:NInCol)=6:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1359.33,1729.89) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1374.25,1706.2) CenPtnInPanel=(210,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1359.33,1729.89) CenPtnInPanel=(182,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1374.25,1706.2) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1359.33,1729.89) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1374.25,1706.2) CenPtnInPanel=(154,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1359.33,1729.89) CenPtnInPanel=(126,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1374.25,1706.2) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1359.33,1729.89) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1374.25,1706.2) CenPtnInPanel=(98,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1359.33,1729.89) CenPtnInPanel=(70,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1374.25,1706.2) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1359.33,1729.89) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1374.25,1706.2) CenPtnInPanel=(42,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1359.33,1729.89) CenPtnInPanel=(14,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1374.25,1706.2) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1375.39,1704.38) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1390.31,1680.68) CenPtnInPanel=(210,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1375.39,1704.38) CenPtnInPanel=(182,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1390.31,1680.68) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1375.39,1704.38) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1390.31,1680.68) CenPtnInPanel=(154,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1375.39,1704.38) CenPtnInPanel=(126,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1390.31,1680.68) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1375.39,1704.38) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1390.31,1680.68) CenPtnInPanel=(98,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1375.39,1704.38) CenPtnInPanel=(70,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1390.31,1680.68) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1375.39,1704.38) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1390.31,1680.68) CenPtnInPanel=(42,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1375.39,1704.38) CenPtnInPanel=(14,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:038,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1390.31,1680.68) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 39 { PMT Rich1 Top } Module(Col:NInCol)=6:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1359.33,1729.89) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1374.25,1706.2) CenPtnInPanel=(-14,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1359.33,1729.89) CenPtnInPanel=(-42,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1374.25,1706.2) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1359.33,1729.89) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1374.25,1706.2) CenPtnInPanel=(-70,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1359.33,1729.89) CenPtnInPanel=(-98,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1374.25,1706.2) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1359.33,1729.89) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1374.25,1706.2) CenPtnInPanel=(-126,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1359.33,1729.89) CenPtnInPanel=(-154,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1374.25,1706.2) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1359.33,1729.89) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1374.25,1706.2) CenPtnInPanel=(-182,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1359.33,1729.89) CenPtnInPanel=(-210,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1374.25,1706.2) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1375.39,1704.38) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1390.31,1680.68) CenPtnInPanel=(-14,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1375.39,1704.38) CenPtnInPanel=(-42,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1390.31,1680.68) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1375.39,1704.38) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1390.31,1680.68) CenPtnInPanel=(-70,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1375.39,1704.38) CenPtnInPanel=(-98,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1390.31,1680.68) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1375.39,1704.38) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1390.31,1680.68) CenPtnInPanel=(-126,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1375.39,1704.38) CenPtnInPanel=(-154,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1390.31,1680.68) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1375.39,1704.38) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1390.31,1680.68) CenPtnInPanel=(-182,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1375.39,1704.38) CenPtnInPanel=(-210,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:039,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1390.31,1680.68) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 40 { PMT Rich1 Top } Module(Col:NInCol)=6:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1359.33,1729.89) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1374.25,1706.2) CenPtnInPanel=(-238,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1359.33,1729.89) CenPtnInPanel=(-266,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1374.25,1706.2) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1359.33,1729.89) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1374.25,1706.2) CenPtnInPanel=(-294,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1359.33,1729.89) CenPtnInPanel=(-322,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1374.25,1706.2) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1359.33,1729.89) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1374.25,1706.2) CenPtnInPanel=(-350,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1359.33,1729.89) CenPtnInPanel=(-378,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1374.25,1706.2) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1359.33,1729.89) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1374.25,1706.2) CenPtnInPanel=(-406,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1359.33,1729.89) CenPtnInPanel=(-434,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1374.25,1706.2) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1375.39,1704.38) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1390.31,1680.68) CenPtnInPanel=(-238,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1375.39,1704.38) CenPtnInPanel=(-266,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1390.31,1680.68) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1375.39,1704.38) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1390.31,1680.68) CenPtnInPanel=(-294,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1375.39,1704.38) CenPtnInPanel=(-322,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1390.31,1680.68) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1375.39,1704.38) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1390.31,1680.68) CenPtnInPanel=(-350,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1375.39,1704.38) CenPtnInPanel=(-378,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1390.31,1680.68) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1375.39,1704.38) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1390.31,1680.68) CenPtnInPanel=(-406,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1375.39,1704.38) CenPtnInPanel=(-434,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:040,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1390.31,1680.68) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 41 { PMT Rich1 Top } Module(Col:NInCol)=6:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1359.33,1729.89) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1374.25,1706.2) CenPtnInPanel=(-462,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1359.33,1729.89) CenPtnInPanel=(-490,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1374.25,1706.2) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1359.33,1729.89) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,05 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1374.25,1706.2) CenPtnInPanel=(-518,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1359.33,1729.89) CenPtnInPanel=(-546,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1374.25,1706.2) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1359.33,1729.89) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1374.25,1706.2) CenPtnInPanel=(-574,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1359.33,1729.89) CenPtnInPanel=(-602,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1374.25,1706.2) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1375.39,1704.38) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1390.31,1680.68) CenPtnInPanel=(-462,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1375.39,1704.38) CenPtnInPanel=(-490,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1390.31,1680.68) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1375.39,1704.38) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,05 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1390.31,1680.68) CenPtnInPanel=(-518,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1375.39,1704.38) CenPtnInPanel=(-546,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1390.31,1680.68) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1375.39,1704.38) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1390.31,1680.68) CenPtnInPanel=(-574,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1375.39,1704.38) CenPtnInPanel=(-602,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:041,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1390.31,1680.68) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 42 { PMT Rich1 Top } Module(Col:NInCol)=7:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1329.22,1777.7) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1344.14,1754.01) CenPtnInPanel=(602,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1329.22,1777.7) CenPtnInPanel=(574,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1344.14,1754.01) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1329.22,1777.7) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1344.14,1754.01) CenPtnInPanel=(546,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,10 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1329.22,1777.7) CenPtnInPanel=(518,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1344.14,1754.01) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1329.22,1777.7) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1344.14,1754.01) CenPtnInPanel=(490,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1329.22,1777.7) CenPtnInPanel=(462,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1344.14,1754.01) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1345.29,1752.19) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1360.21,1728.49) CenPtnInPanel=(602,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1345.29,1752.19) CenPtnInPanel=(574,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1360.21,1728.49) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1345.29,1752.19) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1360.21,1728.49) CenPtnInPanel=(546,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,10 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1345.29,1752.19) CenPtnInPanel=(518,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1360.21,1728.49) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1345.29,1752.19) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1360.21,1728.49) CenPtnInPanel=(490,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1345.29,1752.19) CenPtnInPanel=(462,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:042,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1360.21,1728.49) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 43 { PMT Rich1 Top } Module(Col:NInCol)=7:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1329.22,1777.7) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1344.14,1754.01) CenPtnInPanel=(434,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1329.22,1777.7) CenPtnInPanel=(406,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1344.14,1754.01) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1329.22,1777.7) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1344.14,1754.01) CenPtnInPanel=(378,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1329.22,1777.7) CenPtnInPanel=(350,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1344.14,1754.01) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1329.22,1777.7) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1344.14,1754.01) CenPtnInPanel=(322,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1329.22,1777.7) CenPtnInPanel=(294,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1344.14,1754.01) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1329.22,1777.7) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1344.14,1754.01) CenPtnInPanel=(266,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1329.22,1777.7) CenPtnInPanel=(238,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1344.14,1754.01) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1345.29,1752.19) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1360.21,1728.49) CenPtnInPanel=(434,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1345.29,1752.19) CenPtnInPanel=(406,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1360.21,1728.49) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1345.29,1752.19) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1360.21,1728.49) CenPtnInPanel=(378,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1345.29,1752.19) CenPtnInPanel=(350,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1360.21,1728.49) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1345.29,1752.19) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1360.21,1728.49) CenPtnInPanel=(322,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1345.29,1752.19) CenPtnInPanel=(294,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1360.21,1728.49) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1345.29,1752.19) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1360.21,1728.49) CenPtnInPanel=(266,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1345.29,1752.19) CenPtnInPanel=(238,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:043,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1360.21,1728.49) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 44 { PMT Rich1 Top } Module(Col:NInCol)=7:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1329.22,1777.7) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1344.14,1754.01) CenPtnInPanel=(210,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1329.22,1777.7) CenPtnInPanel=(182,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1344.14,1754.01) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1329.22,1777.7) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1344.14,1754.01) CenPtnInPanel=(154,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1329.22,1777.7) CenPtnInPanel=(126,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1344.14,1754.01) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1329.22,1777.7) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1344.14,1754.01) CenPtnInPanel=(98,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1329.22,1777.7) CenPtnInPanel=(70,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1344.14,1754.01) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1329.22,1777.7) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1344.14,1754.01) CenPtnInPanel=(42,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1329.22,1777.7) CenPtnInPanel=(14,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1344.14,1754.01) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1345.29,1752.19) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1360.21,1728.49) CenPtnInPanel=(210,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1345.29,1752.19) CenPtnInPanel=(182,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1360.21,1728.49) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1345.29,1752.19) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1360.21,1728.49) CenPtnInPanel=(154,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1345.29,1752.19) CenPtnInPanel=(126,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1360.21,1728.49) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1345.29,1752.19) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1360.21,1728.49) CenPtnInPanel=(98,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1345.29,1752.19) CenPtnInPanel=(70,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1360.21,1728.49) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1345.29,1752.19) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1360.21,1728.49) CenPtnInPanel=(42,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1345.29,1752.19) CenPtnInPanel=(14,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:044,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1360.21,1728.49) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 45 { PMT Rich1 Top } Module(Col:NInCol)=7:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1329.22,1777.7) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1344.14,1754.01) CenPtnInPanel=(-14,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1329.22,1777.7) CenPtnInPanel=(-42,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1344.14,1754.01) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1329.22,1777.7) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1344.14,1754.01) CenPtnInPanel=(-70,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1329.22,1777.7) CenPtnInPanel=(-98,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1344.14,1754.01) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1329.22,1777.7) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1344.14,1754.01) CenPtnInPanel=(-126,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1329.22,1777.7) CenPtnInPanel=(-154,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1344.14,1754.01) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1329.22,1777.7) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1344.14,1754.01) CenPtnInPanel=(-182,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1329.22,1777.7) CenPtnInPanel=(-210,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1344.14,1754.01) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1345.29,1752.19) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1360.21,1728.49) CenPtnInPanel=(-14,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1345.29,1752.19) CenPtnInPanel=(-42,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1360.21,1728.49) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1345.29,1752.19) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1360.21,1728.49) CenPtnInPanel=(-70,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1345.29,1752.19) CenPtnInPanel=(-98,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1360.21,1728.49) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1345.29,1752.19) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1360.21,1728.49) CenPtnInPanel=(-126,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1345.29,1752.19) CenPtnInPanel=(-154,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1360.21,1728.49) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1345.29,1752.19) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1360.21,1728.49) CenPtnInPanel=(-182,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1345.29,1752.19) CenPtnInPanel=(-210,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:045,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1360.21,1728.49) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 46 { PMT Rich1 Top } Module(Col:NInCol)=7:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1329.22,1777.7) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1344.14,1754.01) CenPtnInPanel=(-238,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1329.22,1777.7) CenPtnInPanel=(-266,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1344.14,1754.01) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1329.22,1777.7) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1344.14,1754.01) CenPtnInPanel=(-294,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1329.22,1777.7) CenPtnInPanel=(-322,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1344.14,1754.01) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1329.22,1777.7) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1344.14,1754.01) CenPtnInPanel=(-350,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1329.22,1777.7) CenPtnInPanel=(-378,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1344.14,1754.01) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1329.22,1777.7) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1344.14,1754.01) CenPtnInPanel=(-406,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1329.22,1777.7) CenPtnInPanel=(-434,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1344.14,1754.01) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1345.29,1752.19) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1360.21,1728.49) CenPtnInPanel=(-238,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1345.29,1752.19) CenPtnInPanel=(-266,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1360.21,1728.49) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1345.29,1752.19) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1360.21,1728.49) CenPtnInPanel=(-294,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1345.29,1752.19) CenPtnInPanel=(-322,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1360.21,1728.49) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1345.29,1752.19) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1360.21,1728.49) CenPtnInPanel=(-350,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1345.29,1752.19) CenPtnInPanel=(-378,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1360.21,1728.49) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1345.29,1752.19) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1360.21,1728.49) CenPtnInPanel=(-406,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1345.29,1752.19) CenPtnInPanel=(-434,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:046,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1360.21,1728.49) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 47 { PMT Rich1 Top } Module(Col:NInCol)=7:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1329.22,1777.7) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1344.14,1754.01) CenPtnInPanel=(-462,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1329.22,1777.7) CenPtnInPanel=(-490,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1344.14,1754.01) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1329.22,1777.7) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,05 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1344.14,1754.01) CenPtnInPanel=(-518,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,06 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1329.22,1777.7) CenPtnInPanel=(-546,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1344.14,1754.01) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1329.22,1777.7) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1344.14,1754.01) CenPtnInPanel=(-574,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1329.22,1777.7) CenPtnInPanel=(-602,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1344.14,1754.01) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1345.29,1752.19) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1360.21,1728.49) CenPtnInPanel=(-462,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1345.29,1752.19) CenPtnInPanel=(-490,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1360.21,1728.49) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1345.29,1752.19) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,05 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1360.21,1728.49) CenPtnInPanel=(-518,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,06 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1345.29,1752.19) CenPtnInPanel=(-546,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1360.21,1728.49) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1345.29,1752.19) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1360.21,1728.49) CenPtnInPanel=(-574,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1345.29,1752.19) CenPtnInPanel=(-602,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:047,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1360.21,1728.49) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 48 { PMT Rich1 Top } Module(Col:NInCol)=8:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1299.11,1825.51) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,05 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1314.03,1801.82) CenPtnInPanel=(602,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,06 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1299.11,1825.51) CenPtnInPanel=(574,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1314.03,1801.82) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1299.11,1825.51) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1314.03,1801.82) CenPtnInPanel=(546,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1299.11,1825.51) CenPtnInPanel=(518,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1314.03,1801.82) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1299.11,1825.51) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1314.03,1801.82) CenPtnInPanel=(490,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1299.11,1825.51) CenPtnInPanel=(462,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1314.03,1801.82) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1315.18,1800) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,05 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1330.1,1776.3) CenPtnInPanel=(602,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,06 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1315.18,1800) CenPtnInPanel=(574,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1330.1,1776.3) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1315.18,1800) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1330.1,1776.3) CenPtnInPanel=(546,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1315.18,1800) CenPtnInPanel=(518,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1330.1,1776.3) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1315.18,1800) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1330.1,1776.3) CenPtnInPanel=(490,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1315.18,1800) CenPtnInPanel=(462,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:048,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1330.1,1776.3) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 49 { PMT Rich1 Top } Module(Col:NInCol)=8:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1299.11,1825.51) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1314.03,1801.82) CenPtnInPanel=(434,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1299.11,1825.51) CenPtnInPanel=(406,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1314.03,1801.82) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1299.11,1825.51) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1314.03,1801.82) CenPtnInPanel=(378,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1299.11,1825.51) CenPtnInPanel=(350,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1314.03,1801.82) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1299.11,1825.51) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1314.03,1801.82) CenPtnInPanel=(322,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1299.11,1825.51) CenPtnInPanel=(294,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1314.03,1801.82) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1299.11,1825.51) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1314.03,1801.82) CenPtnInPanel=(266,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1299.11,1825.51) CenPtnInPanel=(238,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1314.03,1801.82) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1315.18,1800) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1330.1,1776.3) CenPtnInPanel=(434,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1315.18,1800) CenPtnInPanel=(406,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1330.1,1776.3) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1315.18,1800) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1330.1,1776.3) CenPtnInPanel=(378,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1315.18,1800) CenPtnInPanel=(350,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1330.1,1776.3) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1315.18,1800) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1330.1,1776.3) CenPtnInPanel=(322,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1315.18,1800) CenPtnInPanel=(294,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1330.1,1776.3) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1315.18,1800) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1330.1,1776.3) CenPtnInPanel=(266,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1315.18,1800) CenPtnInPanel=(238,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:049,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1330.1,1776.3) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 50 { PMT Rich1 Top } Module(Col:NInCol)=8:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1299.11,1825.51) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1314.03,1801.82) CenPtnInPanel=(210,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1299.11,1825.51) CenPtnInPanel=(182,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1314.03,1801.82) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1299.11,1825.51) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1314.03,1801.82) CenPtnInPanel=(154,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1299.11,1825.51) CenPtnInPanel=(126,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1314.03,1801.82) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1299.11,1825.51) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1314.03,1801.82) CenPtnInPanel=(98,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1299.11,1825.51) CenPtnInPanel=(70,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1314.03,1801.82) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1299.11,1825.51) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1314.03,1801.82) CenPtnInPanel=(42,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1299.11,1825.51) CenPtnInPanel=(14,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1314.03,1801.82) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1315.18,1800) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1330.1,1776.3) CenPtnInPanel=(210,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1315.18,1800) CenPtnInPanel=(182,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1330.1,1776.3) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1315.18,1800) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1330.1,1776.3) CenPtnInPanel=(154,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1315.18,1800) CenPtnInPanel=(126,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1330.1,1776.3) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1315.18,1800) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1330.1,1776.3) CenPtnInPanel=(98,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1315.18,1800) CenPtnInPanel=(70,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1330.1,1776.3) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1315.18,1800) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1330.1,1776.3) CenPtnInPanel=(42,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1315.18,1800) CenPtnInPanel=(14,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:050,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1330.1,1776.3) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 51 { PMT Rich1 Top } Module(Col:NInCol)=8:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1299.11,1825.51) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1314.03,1801.82) CenPtnInPanel=(-14,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1299.11,1825.51) CenPtnInPanel=(-42,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1314.03,1801.82) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1299.11,1825.51) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1314.03,1801.82) CenPtnInPanel=(-70,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1299.11,1825.51) CenPtnInPanel=(-98,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1314.03,1801.82) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1299.11,1825.51) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1314.03,1801.82) CenPtnInPanel=(-126,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1299.11,1825.51) CenPtnInPanel=(-154,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1314.03,1801.82) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1299.11,1825.51) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1314.03,1801.82) CenPtnInPanel=(-182,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1299.11,1825.51) CenPtnInPanel=(-210,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1314.03,1801.82) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1315.18,1800) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1330.1,1776.3) CenPtnInPanel=(-14,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1315.18,1800) CenPtnInPanel=(-42,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1330.1,1776.3) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1315.18,1800) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1330.1,1776.3) CenPtnInPanel=(-70,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1315.18,1800) CenPtnInPanel=(-98,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1330.1,1776.3) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1315.18,1800) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1330.1,1776.3) CenPtnInPanel=(-126,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1315.18,1800) CenPtnInPanel=(-154,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1330.1,1776.3) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1315.18,1800) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1330.1,1776.3) CenPtnInPanel=(-182,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1315.18,1800) CenPtnInPanel=(-210,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:051,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1330.1,1776.3) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 52 { PMT Rich1 Top } Module(Col:NInCol)=8:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1299.11,1825.51) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1314.03,1801.82) CenPtnInPanel=(-238,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1299.11,1825.51) CenPtnInPanel=(-266,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1314.03,1801.82) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1299.11,1825.51) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1314.03,1801.82) CenPtnInPanel=(-294,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1299.11,1825.51) CenPtnInPanel=(-322,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1314.03,1801.82) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1299.11,1825.51) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1314.03,1801.82) CenPtnInPanel=(-350,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1299.11,1825.51) CenPtnInPanel=(-378,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1314.03,1801.82) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1299.11,1825.51) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1314.03,1801.82) CenPtnInPanel=(-406,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1299.11,1825.51) CenPtnInPanel=(-434,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1314.03,1801.82) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1315.18,1800) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1330.1,1776.3) CenPtnInPanel=(-238,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1315.18,1800) CenPtnInPanel=(-266,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1330.1,1776.3) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1315.18,1800) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1330.1,1776.3) CenPtnInPanel=(-294,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1315.18,1800) CenPtnInPanel=(-322,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1330.1,1776.3) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1315.18,1800) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1330.1,1776.3) CenPtnInPanel=(-350,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1315.18,1800) CenPtnInPanel=(-378,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1330.1,1776.3) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1315.18,1800) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1330.1,1776.3) CenPtnInPanel=(-406,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1315.18,1800) CenPtnInPanel=(-434,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:052,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1330.1,1776.3) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 53 { PMT Rich1 Top } Module(Col:NInCol)=8:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1299.11,1825.51) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1314.03,1801.82) CenPtnInPanel=(-462,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1299.11,1825.51) CenPtnInPanel=(-490,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1314.03,1801.82) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1299.11,1825.51) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1314.03,1801.82) CenPtnInPanel=(-518,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1299.11,1825.51) CenPtnInPanel=(-546,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1314.03,1801.82) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1299.11,1825.51) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1314.03,1801.82) CenPtnInPanel=(-574,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1299.11,1825.51) CenPtnInPanel=(-602,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1314.03,1801.82) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1315.18,1800) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1330.1,1776.3) CenPtnInPanel=(-462,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1315.18,1800) CenPtnInPanel=(-490,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1330.1,1776.3) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1315.18,1800) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1330.1,1776.3) CenPtnInPanel=(-518,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1315.18,1800) CenPtnInPanel=(-546,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1330.1,1776.3) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1315.18,1800) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1330.1,1776.3) CenPtnInPanel=(-574,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1315.18,1800) CenPtnInPanel=(-602,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:053,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1330.1,1776.3) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 54 { PMT Rich1 Top } Module(Col:NInCol)=9:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1269.01,1873.32) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1283.93,1849.63) CenPtnInPanel=(602,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1269.01,1873.32) CenPtnInPanel=(574,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1283.93,1849.63) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1269.01,1873.32) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1283.93,1849.63) CenPtnInPanel=(546,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1269.01,1873.32) CenPtnInPanel=(518,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1283.93,1849.63) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1269.01,1873.32) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1283.93,1849.63) CenPtnInPanel=(490,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1269.01,1873.32) CenPtnInPanel=(462,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1283.93,1849.63) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1285.07,1847.81) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1299.99,1824.11) CenPtnInPanel=(602,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1285.07,1847.81) CenPtnInPanel=(574,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1299.99,1824.11) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1285.07,1847.81) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1299.99,1824.11) CenPtnInPanel=(546,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1285.07,1847.81) CenPtnInPanel=(518,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1299.99,1824.11) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1285.07,1847.81) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1299.99,1824.11) CenPtnInPanel=(490,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1285.07,1847.81) CenPtnInPanel=(462,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:054,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1299.99,1824.11) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 55 { PMT Rich1 Top } Module(Col:NInCol)=9:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1269.01,1873.32) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1283.93,1849.63) CenPtnInPanel=(434,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1269.01,1873.32) CenPtnInPanel=(406,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1283.93,1849.63) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1269.01,1873.32) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1283.93,1849.63) CenPtnInPanel=(378,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1269.01,1873.32) CenPtnInPanel=(350,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1283.93,1849.63) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1269.01,1873.32) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1283.93,1849.63) CenPtnInPanel=(322,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1269.01,1873.32) CenPtnInPanel=(294,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1283.93,1849.63) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1269.01,1873.32) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1283.93,1849.63) CenPtnInPanel=(266,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1269.01,1873.32) CenPtnInPanel=(238,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1283.93,1849.63) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1285.07,1847.81) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1299.99,1824.11) CenPtnInPanel=(434,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1285.07,1847.81) CenPtnInPanel=(406,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1299.99,1824.11) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1285.07,1847.81) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1299.99,1824.11) CenPtnInPanel=(378,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1285.07,1847.81) CenPtnInPanel=(350,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1299.99,1824.11) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1285.07,1847.81) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1299.99,1824.11) CenPtnInPanel=(322,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1285.07,1847.81) CenPtnInPanel=(294,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1299.99,1824.11) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1285.07,1847.81) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1299.99,1824.11) CenPtnInPanel=(266,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1285.07,1847.81) CenPtnInPanel=(238,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:055,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1299.99,1824.11) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 56 { PMT Rich1 Top } Module(Col:NInCol)=9:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1269.01,1873.32) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1283.93,1849.63) CenPtnInPanel=(210,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1269.01,1873.32) CenPtnInPanel=(182,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1283.93,1849.63) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1269.01,1873.32) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1283.93,1849.63) CenPtnInPanel=(154,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1269.01,1873.32) CenPtnInPanel=(126,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1283.93,1849.63) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1269.01,1873.32) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1283.93,1849.63) CenPtnInPanel=(98,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1269.01,1873.32) CenPtnInPanel=(70,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1283.93,1849.63) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1269.01,1873.32) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1283.93,1849.63) CenPtnInPanel=(42,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1269.01,1873.32) CenPtnInPanel=(14,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1283.93,1849.63) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1285.07,1847.81) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1299.99,1824.11) CenPtnInPanel=(210,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1285.07,1847.81) CenPtnInPanel=(182,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1299.99,1824.11) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1285.07,1847.81) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1299.99,1824.11) CenPtnInPanel=(154,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1285.07,1847.81) CenPtnInPanel=(126,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1299.99,1824.11) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1285.07,1847.81) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1299.99,1824.11) CenPtnInPanel=(98,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1285.07,1847.81) CenPtnInPanel=(70,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1299.99,1824.11) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1285.07,1847.81) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1299.99,1824.11) CenPtnInPanel=(42,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1285.07,1847.81) CenPtnInPanel=(14,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:056,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1299.99,1824.11) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 57 { PMT Rich1 Top } Module(Col:NInCol)=9:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1269.01,1873.32) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1283.93,1849.63) CenPtnInPanel=(-14,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1269.01,1873.32) CenPtnInPanel=(-42,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1283.93,1849.63) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1269.01,1873.32) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1283.93,1849.63) CenPtnInPanel=(-70,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1269.01,1873.32) CenPtnInPanel=(-98,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1283.93,1849.63) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1269.01,1873.32) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1283.93,1849.63) CenPtnInPanel=(-126,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1269.01,1873.32) CenPtnInPanel=(-154,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1283.93,1849.63) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1269.01,1873.32) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1283.93,1849.63) CenPtnInPanel=(-182,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1269.01,1873.32) CenPtnInPanel=(-210,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1283.93,1849.63) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1285.07,1847.81) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1299.99,1824.11) CenPtnInPanel=(-14,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1285.07,1847.81) CenPtnInPanel=(-42,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1299.99,1824.11) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1285.07,1847.81) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1299.99,1824.11) CenPtnInPanel=(-70,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1285.07,1847.81) CenPtnInPanel=(-98,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1299.99,1824.11) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1285.07,1847.81) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1299.99,1824.11) CenPtnInPanel=(-126,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1285.07,1847.81) CenPtnInPanel=(-154,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1299.99,1824.11) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1285.07,1847.81) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1299.99,1824.11) CenPtnInPanel=(-182,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1285.07,1847.81) CenPtnInPanel=(-210,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:057,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1299.99,1824.11) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 58 { PMT Rich1 Top } Module(Col:NInCol)=9:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1269.01,1873.32) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1283.93,1849.63) CenPtnInPanel=(-238,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1269.01,1873.32) CenPtnInPanel=(-266,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1283.93,1849.63) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1269.01,1873.32) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1283.93,1849.63) CenPtnInPanel=(-294,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1269.01,1873.32) CenPtnInPanel=(-322,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1283.93,1849.63) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1269.01,1873.32) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1283.93,1849.63) CenPtnInPanel=(-350,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1269.01,1873.32) CenPtnInPanel=(-378,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1283.93,1849.63) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1269.01,1873.32) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1283.93,1849.63) CenPtnInPanel=(-406,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1269.01,1873.32) CenPtnInPanel=(-434,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1283.93,1849.63) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1285.07,1847.81) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1299.99,1824.11) CenPtnInPanel=(-238,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1285.07,1847.81) CenPtnInPanel=(-266,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1299.99,1824.11) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1285.07,1847.81) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1299.99,1824.11) CenPtnInPanel=(-294,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1285.07,1847.81) CenPtnInPanel=(-322,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1299.99,1824.11) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1285.07,1847.81) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1299.99,1824.11) CenPtnInPanel=(-350,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1285.07,1847.81) CenPtnInPanel=(-378,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1299.99,1824.11) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1285.07,1847.81) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1299.99,1824.11) CenPtnInPanel=(-406,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1285.07,1847.81) CenPtnInPanel=(-434,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:058,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1299.99,1824.11) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 59 { PMT Rich1 Top } Module(Col:NInCol)=9:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1269.01,1873.32) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1283.93,1849.63) CenPtnInPanel=(-462,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1269.01,1873.32) CenPtnInPanel=(-490,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1283.93,1849.63) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1269.01,1873.32) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1283.93,1849.63) CenPtnInPanel=(-518,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1269.01,1873.32) CenPtnInPanel=(-546,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1283.93,1849.63) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1269.01,1873.32) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1283.93,1849.63) CenPtnInPanel=(-574,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1269.01,1873.32) CenPtnInPanel=(-602,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1283.93,1849.63) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1285.07,1847.81) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1299.99,1824.11) CenPtnInPanel=(-462,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1285.07,1847.81) CenPtnInPanel=(-490,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1299.99,1824.11) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1285.07,1847.81) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1299.99,1824.11) CenPtnInPanel=(-518,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1285.07,1847.81) CenPtnInPanel=(-546,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1299.99,1824.11) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1285.07,1847.81) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1299.99,1824.11) CenPtnInPanel=(-574,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1285.07,1847.81) CenPtnInPanel=(-602,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:059,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1299.99,1824.11) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 60 { PMT Rich1 Top } Module(Col:NInCol)=10:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1238.9,1921.13) CenPtnInPanel=(602,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,1253.82,1897.44) CenPtnInPanel=(602,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,06 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1238.9,1921.13) CenPtnInPanel=(574,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,1253.82,1897.44) CenPtnInPanel=(574,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1238.9,1921.13) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,1253.82,1897.44) CenPtnInPanel=(546,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,10 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1238.9,1921.13) CenPtnInPanel=(518,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,1253.82,1897.44) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1238.9,1921.13) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,1253.82,1897.44) CenPtnInPanel=(490,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1238.9,1921.13) CenPtnInPanel=(462,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,1253.82,1897.44) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1254.96,1895.62) CenPtnInPanel=(602,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,1269.88,1871.92) CenPtnInPanel=(602,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,06 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1254.96,1895.62) CenPtnInPanel=(574,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,1269.88,1871.92) CenPtnInPanel=(574,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1254.96,1895.62) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,1269.88,1871.92) CenPtnInPanel=(546,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,10 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1254.96,1895.62) CenPtnInPanel=(518,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,1269.88,1871.92) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1254.96,1895.62) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,1269.88,1871.92) CenPtnInPanel=(490,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1254.96,1895.62) CenPtnInPanel=(462,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:060,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,1269.88,1871.92) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 61 { PMT Rich1 Top } Module(Col:NInCol)=10:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1238.9,1921.13) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,1253.82,1897.44) CenPtnInPanel=(434,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1238.9,1921.13) CenPtnInPanel=(406,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,1253.82,1897.44) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1238.9,1921.13) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,1253.82,1897.44) CenPtnInPanel=(378,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1238.9,1921.13) CenPtnInPanel=(350,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,1253.82,1897.44) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1238.9,1921.13) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,1253.82,1897.44) CenPtnInPanel=(322,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1238.9,1921.13) CenPtnInPanel=(294,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,1253.82,1897.44) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1238.9,1921.13) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,1253.82,1897.44) CenPtnInPanel=(266,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1238.9,1921.13) CenPtnInPanel=(238,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,1253.82,1897.44) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1254.96,1895.62) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,1269.88,1871.92) CenPtnInPanel=(434,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1254.96,1895.62) CenPtnInPanel=(406,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,1269.88,1871.92) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1254.96,1895.62) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,1269.88,1871.92) CenPtnInPanel=(378,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1254.96,1895.62) CenPtnInPanel=(350,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,1269.88,1871.92) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1254.96,1895.62) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,1269.88,1871.92) CenPtnInPanel=(322,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1254.96,1895.62) CenPtnInPanel=(294,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,1269.88,1871.92) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1254.96,1895.62) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,1269.88,1871.92) CenPtnInPanel=(266,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1254.96,1895.62) CenPtnInPanel=(238,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:061,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,1269.88,1871.92) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 62 { PMT Rich1 Top } Module(Col:NInCol)=10:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1238.9,1921.13) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,1253.82,1897.44) CenPtnInPanel=(210,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1238.9,1921.13) CenPtnInPanel=(182,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,1253.82,1897.44) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1238.9,1921.13) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,1253.82,1897.44) CenPtnInPanel=(154,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1238.9,1921.13) CenPtnInPanel=(126,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,1253.82,1897.44) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1238.9,1921.13) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,1253.82,1897.44) CenPtnInPanel=(98,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1238.9,1921.13) CenPtnInPanel=(70,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,1253.82,1897.44) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1238.9,1921.13) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,1253.82,1897.44) CenPtnInPanel=(42,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1238.9,1921.13) CenPtnInPanel=(14,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,1253.82,1897.44) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1254.96,1895.62) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,1269.88,1871.92) CenPtnInPanel=(210,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1254.96,1895.62) CenPtnInPanel=(182,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,1269.88,1871.92) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1254.96,1895.62) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,1269.88,1871.92) CenPtnInPanel=(154,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1254.96,1895.62) CenPtnInPanel=(126,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,1269.88,1871.92) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1254.96,1895.62) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,1269.88,1871.92) CenPtnInPanel=(98,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1254.96,1895.62) CenPtnInPanel=(70,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,1269.88,1871.92) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1254.96,1895.62) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,1269.88,1871.92) CenPtnInPanel=(42,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1254.96,1895.62) CenPtnInPanel=(14,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:062,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,1269.88,1871.92) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 63 { PMT Rich1 Top } Module(Col:NInCol)=10:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1238.9,1921.13) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,1253.82,1897.44) CenPtnInPanel=(-14,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1238.9,1921.13) CenPtnInPanel=(-42,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,1253.82,1897.44) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1238.9,1921.13) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,1253.82,1897.44) CenPtnInPanel=(-70,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1238.9,1921.13) CenPtnInPanel=(-98,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,1253.82,1897.44) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1238.9,1921.13) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,1253.82,1897.44) CenPtnInPanel=(-126,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1238.9,1921.13) CenPtnInPanel=(-154,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,1253.82,1897.44) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1238.9,1921.13) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,1253.82,1897.44) CenPtnInPanel=(-182,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1238.9,1921.13) CenPtnInPanel=(-210,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,1253.82,1897.44) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1254.96,1895.62) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,1269.88,1871.92) CenPtnInPanel=(-14,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1254.96,1895.62) CenPtnInPanel=(-42,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,1269.88,1871.92) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1254.96,1895.62) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,1269.88,1871.92) CenPtnInPanel=(-70,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1254.96,1895.62) CenPtnInPanel=(-98,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,1269.88,1871.92) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1254.96,1895.62) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,1269.88,1871.92) CenPtnInPanel=(-126,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1254.96,1895.62) CenPtnInPanel=(-154,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,1269.88,1871.92) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1254.96,1895.62) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,1269.88,1871.92) CenPtnInPanel=(-182,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1254.96,1895.62) CenPtnInPanel=(-210,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:063,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,1269.88,1871.92) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 64 { PMT Rich1 Top } Module(Col:NInCol)=10:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1238.9,1921.13) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,1253.82,1897.44) CenPtnInPanel=(-238,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1238.9,1921.13) CenPtnInPanel=(-266,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,1253.82,1897.44) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1238.9,1921.13) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,1253.82,1897.44) CenPtnInPanel=(-294,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1238.9,1921.13) CenPtnInPanel=(-322,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,1253.82,1897.44) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1238.9,1921.13) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,1253.82,1897.44) CenPtnInPanel=(-350,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1238.9,1921.13) CenPtnInPanel=(-378,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,1253.82,1897.44) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1238.9,1921.13) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,1253.82,1897.44) CenPtnInPanel=(-406,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1238.9,1921.13) CenPtnInPanel=(-434,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,1253.82,1897.44) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1254.96,1895.62) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,1269.88,1871.92) CenPtnInPanel=(-238,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1254.96,1895.62) CenPtnInPanel=(-266,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,1269.88,1871.92) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1254.96,1895.62) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,1269.88,1871.92) CenPtnInPanel=(-294,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1254.96,1895.62) CenPtnInPanel=(-322,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,1269.88,1871.92) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1254.96,1895.62) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,1269.88,1871.92) CenPtnInPanel=(-350,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1254.96,1895.62) CenPtnInPanel=(-378,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,1269.88,1871.92) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1254.96,1895.62) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,1269.88,1871.92) CenPtnInPanel=(-406,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1254.96,1895.62) CenPtnInPanel=(-434,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:064,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,1269.88,1871.92) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 65 { PMT Rich1 Top } Module(Col:NInCol)=10:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1238.9,1921.13) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,1253.82,1897.44) CenPtnInPanel=(-462,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1238.9,1921.13) CenPtnInPanel=(-490,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,1253.82,1897.44) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1238.9,1921.13) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,05 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,1253.82,1897.44) CenPtnInPanel=(-518,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1238.9,1921.13) CenPtnInPanel=(-546,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,1253.82,1897.44) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1238.9,1921.13) CenPtnInPanel=(-574,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,09 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,1253.82,1897.44) CenPtnInPanel=(-574,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1238.9,1921.13) CenPtnInPanel=(-602,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,1253.82,1897.44) CenPtnInPanel=(-602,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG  -> [ Rich1 bottom NumPDModules=92 ModNumOffset=66 ZShift=-40.2 CentrePtnInGlo=(0,-1219.08,1940.97) (x,y)HalfSizes=+-(740,323.85)  DetectionPlane=[ 0 0.846193 -0.532877 2065.87 ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1254.96,1895.62) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,1269.88,1871.92) CenPtnInPanel=(-462,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1254.96,1895.62) CenPtnInPanel=(-490,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,1269.88,1871.92) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1254.96,1895.62) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,05 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,1269.88,1871.92) CenPtnInPanel=(-518,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1254.96,1895.62) CenPtnInPanel=(-546,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,1269.88,1871.92) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1254.96,1895.62) CenPtnInPanel=(-574,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,09 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,1269.88,1871.92) CenPtnInPanel=(-574,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1254.96,1895.62) CenPtnInPanel=(-602,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Top PD[Mod,NInMod]:065,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,1269.88,1871.92) CenPtnInPanel=(-602,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG  -> [ Rich1 bottom NumPDModules=92 ModNumOffset=66 ZShift=-40.2 CentrePtnInGlo=(0,-1242.12,1904.37) (x,y)HalfSizes=+-(672,310.75)  DetectionPlane=[ 0 0.846193 -0.532877 2065.87 ]
 TestDerivedDets     DEBUG   PDPanelToGlo=
 TestDerivedDets     DEBUG [ 1 0 0 0
-TestDerivedDets     DEBUG   0 0.532877 -0.846193 -1219.08
-TestDerivedDets     DEBUG   0 0.846193 0.532877 1940.97 ]
+TestDerivedDets     DEBUG   0 0.532877 -0.846193 -1242.12
+TestDerivedDets     DEBUG   0 0.846193 0.532877 1904.37 ]
 TestDerivedDets     DEBUG   GloToPDPanel=
 TestDerivedDets     DEBUG [ 1 -0 -0 0
-TestDerivedDets     DEBUG   -0 0.532877 0.846193 -992.817
+TestDerivedDets     DEBUG   -0 0.532877 0.846193 -949.567
 TestDerivedDets     DEBUG   0 -0.846193 0.532877 -2065.87 ]
 TestDerivedDets     DEBUG   GloToLoc=
 TestDerivedDets     DEBUG [ 1 -0 -0 0
-TestDerivedDets     DEBUG   -0 0.532877 0.846193 -668.967
+TestDerivedDets     DEBUG   -0 0.532877 0.846193 -638.817
 TestDerivedDets     DEBUG   0 -0.846193 0.532877 -2106.07 ]
 TestDerivedDets     DEBUG   LocToGlo=
 TestDerivedDets     DEBUG [ 1 0 0 0
-TestDerivedDets     DEBUG   0 0.532877 -0.846193 -1425.67
-TestDerivedDets     DEBUG   0 0.846193 0.532877 1688.35 ]
+TestDerivedDets     DEBUG   0 0.532877 -0.846193 -1441.73
+TestDerivedDets     DEBUG   0 0.846193 0.532877 1662.84 ]
 TestDerivedDets     DEBUG   -> PD Module 66 { PMT Rich1 Bot } Module(Col:NInCol)=0:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1539.97,1443.03) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,09 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1554.89,1419.34) CenPtnInPanel=(-546,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1539.97,1443.03) CenPtnInPanel=(-518,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1554.89,1419.34) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1539.97,1443.03) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1554.89,1419.34) CenPtnInPanel=(-490,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,14 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1539.97,1443.03) CenPtnInPanel=(-462,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1554.89,1419.34) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,08 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1556.04,1417.52) CenPtnInPanel=(-546,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,09 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1570.96,1393.82) CenPtnInPanel=(-546,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,10 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1556.04,1417.52) CenPtnInPanel=(-518,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,11 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1570.96,1393.82) CenPtnInPanel=(-518,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,12 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1556.04,1417.52) CenPtnInPanel=(-490,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,13 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1570.96,1393.82) CenPtnInPanel=(-490,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,14 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1556.04,1417.52) CenPtnInPanel=(-462,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:066,15 Mod[Col,NInCol]:00,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1570.96,1393.82) CenPtnInPanel=(-462,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 67 { PMT Rich1 Bot } Module(Col:NInCol)=0:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1539.97,1443.03) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1554.89,1419.34) CenPtnInPanel=(-434,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1539.97,1443.03) CenPtnInPanel=(-406,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1554.89,1419.34) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1539.97,1443.03) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1554.89,1419.34) CenPtnInPanel=(-378,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1539.97,1443.03) CenPtnInPanel=(-350,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1554.89,1419.34) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1539.97,1443.03) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1554.89,1419.34) CenPtnInPanel=(-322,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1539.97,1443.03) CenPtnInPanel=(-294,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1554.89,1419.34) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1539.97,1443.03) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1554.89,1419.34) CenPtnInPanel=(-266,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1539.97,1443.03) CenPtnInPanel=(-238,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1554.89,1419.34) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,00 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1556.04,1417.52) CenPtnInPanel=(-434,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,01 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1570.96,1393.82) CenPtnInPanel=(-434,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,02 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1556.04,1417.52) CenPtnInPanel=(-406,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,03 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1570.96,1393.82) CenPtnInPanel=(-406,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,04 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1556.04,1417.52) CenPtnInPanel=(-378,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,05 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1570.96,1393.82) CenPtnInPanel=(-378,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,06 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1556.04,1417.52) CenPtnInPanel=(-350,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,07 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1570.96,1393.82) CenPtnInPanel=(-350,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,08 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1556.04,1417.52) CenPtnInPanel=(-322,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,09 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1570.96,1393.82) CenPtnInPanel=(-322,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,10 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1556.04,1417.52) CenPtnInPanel=(-294,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,11 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1570.96,1393.82) CenPtnInPanel=(-294,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,12 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1556.04,1417.52) CenPtnInPanel=(-266,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,13 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1570.96,1393.82) CenPtnInPanel=(-266,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,14 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1556.04,1417.52) CenPtnInPanel=(-238,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:067,15 Mod[Col,NInCol]:00,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1570.96,1393.82) CenPtnInPanel=(-238,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 68 { PMT Rich1 Bot } Module(Col:NInCol)=0:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1539.97,1443.03) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1554.89,1419.34) CenPtnInPanel=(-210,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1539.97,1443.03) CenPtnInPanel=(-182,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1554.89,1419.34) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1539.97,1443.03) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1554.89,1419.34) CenPtnInPanel=(-154,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1539.97,1443.03) CenPtnInPanel=(-126,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1554.89,1419.34) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1539.97,1443.03) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1554.89,1419.34) CenPtnInPanel=(-98,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1539.97,1443.03) CenPtnInPanel=(-70,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1554.89,1419.34) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1539.97,1443.03) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1554.89,1419.34) CenPtnInPanel=(-42,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1539.97,1443.03) CenPtnInPanel=(-14,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1554.89,1419.34) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,00 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1556.04,1417.52) CenPtnInPanel=(-210,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,01 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1570.96,1393.82) CenPtnInPanel=(-210,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,02 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1556.04,1417.52) CenPtnInPanel=(-182,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,03 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1570.96,1393.82) CenPtnInPanel=(-182,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,04 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1556.04,1417.52) CenPtnInPanel=(-154,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,05 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1570.96,1393.82) CenPtnInPanel=(-154,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,06 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1556.04,1417.52) CenPtnInPanel=(-126,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,07 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1570.96,1393.82) CenPtnInPanel=(-126,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,08 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1556.04,1417.52) CenPtnInPanel=(-98,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,09 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1570.96,1393.82) CenPtnInPanel=(-98,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,10 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1556.04,1417.52) CenPtnInPanel=(-70,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,11 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1570.96,1393.82) CenPtnInPanel=(-70,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,12 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1556.04,1417.52) CenPtnInPanel=(-42,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,13 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1570.96,1393.82) CenPtnInPanel=(-42,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,14 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1556.04,1417.52) CenPtnInPanel=(-14,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:068,15 Mod[Col,NInCol]:00,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1570.96,1393.82) CenPtnInPanel=(-14,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 69 { PMT Rich1 Bot } Module(Col:NInCol)=0:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1539.97,1443.03) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1554.89,1419.34) CenPtnInPanel=(14,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1539.97,1443.03) CenPtnInPanel=(42,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1554.89,1419.34) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1539.97,1443.03) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1554.89,1419.34) CenPtnInPanel=(70,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1539.97,1443.03) CenPtnInPanel=(98,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1554.89,1419.34) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1539.97,1443.03) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1554.89,1419.34) CenPtnInPanel=(126,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1539.97,1443.03) CenPtnInPanel=(154,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1554.89,1419.34) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1539.97,1443.03) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1554.89,1419.34) CenPtnInPanel=(182,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1539.97,1443.03) CenPtnInPanel=(210,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1554.89,1419.34) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,00 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1556.04,1417.52) CenPtnInPanel=(14,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,01 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1570.96,1393.82) CenPtnInPanel=(14,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,02 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1556.04,1417.52) CenPtnInPanel=(42,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,03 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1570.96,1393.82) CenPtnInPanel=(42,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,04 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1556.04,1417.52) CenPtnInPanel=(70,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,05 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1570.96,1393.82) CenPtnInPanel=(70,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,06 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1556.04,1417.52) CenPtnInPanel=(98,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,07 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1570.96,1393.82) CenPtnInPanel=(98,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,08 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1556.04,1417.52) CenPtnInPanel=(126,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,09 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1570.96,1393.82) CenPtnInPanel=(126,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,10 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1556.04,1417.52) CenPtnInPanel=(154,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,11 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1570.96,1393.82) CenPtnInPanel=(154,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,12 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1556.04,1417.52) CenPtnInPanel=(182,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,13 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1570.96,1393.82) CenPtnInPanel=(182,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,14 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1556.04,1417.52) CenPtnInPanel=(210,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:069,15 Mod[Col,NInCol]:00,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1570.96,1393.82) CenPtnInPanel=(210,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 70 { PMT Rich1 Bot } Module(Col:NInCol)=0:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1539.97,1443.03) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1554.89,1419.34) CenPtnInPanel=(238,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1539.97,1443.03) CenPtnInPanel=(266,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1554.89,1419.34) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1539.97,1443.03) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1554.89,1419.34) CenPtnInPanel=(294,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1539.97,1443.03) CenPtnInPanel=(322,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1554.89,1419.34) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1539.97,1443.03) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1554.89,1419.34) CenPtnInPanel=(350,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1539.97,1443.03) CenPtnInPanel=(378,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1554.89,1419.34) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1539.97,1443.03) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1554.89,1419.34) CenPtnInPanel=(406,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1539.97,1443.03) CenPtnInPanel=(434,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1554.89,1419.34) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,00 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1556.04,1417.52) CenPtnInPanel=(238,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,01 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1570.96,1393.82) CenPtnInPanel=(238,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,02 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1556.04,1417.52) CenPtnInPanel=(266,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,03 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1570.96,1393.82) CenPtnInPanel=(266,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,04 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1556.04,1417.52) CenPtnInPanel=(294,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,05 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1570.96,1393.82) CenPtnInPanel=(294,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,06 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1556.04,1417.52) CenPtnInPanel=(322,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,07 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1570.96,1393.82) CenPtnInPanel=(322,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,08 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1556.04,1417.52) CenPtnInPanel=(350,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,09 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1570.96,1393.82) CenPtnInPanel=(350,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,10 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1556.04,1417.52) CenPtnInPanel=(378,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,11 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1570.96,1393.82) CenPtnInPanel=(378,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,12 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1556.04,1417.52) CenPtnInPanel=(406,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,13 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1570.96,1393.82) CenPtnInPanel=(406,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,14 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1556.04,1417.52) CenPtnInPanel=(434,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:070,15 Mod[Col,NInCol]:00,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1570.96,1393.82) CenPtnInPanel=(434,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 71 { PMT Rich1 Bot } Module(Col:NInCol)=0:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1539.97,1443.03) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1554.89,1419.34) CenPtnInPanel=(462,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1539.97,1443.03) CenPtnInPanel=(490,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1554.89,1419.34) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1539.97,1443.03) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,05 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1554.89,1419.34) CenPtnInPanel=(518,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1539.97,1443.03) CenPtnInPanel=(546,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1554.89,1419.34) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,00 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1556.04,1417.52) CenPtnInPanel=(462,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,01 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1570.96,1393.82) CenPtnInPanel=(462,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,02 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1556.04,1417.52) CenPtnInPanel=(490,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,03 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1570.96,1393.82) CenPtnInPanel=(490,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,04 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1556.04,1417.52) CenPtnInPanel=(518,-268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,05 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1570.96,1393.82) CenPtnInPanel=(518,-296.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,06 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1556.04,1417.52) CenPtnInPanel=(546,-268.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:071,07 Mod[Col,NInCol]:00,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1570.96,1393.82) CenPtnInPanel=(546,-296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 72 { PMT Rich1 Bot } Module(Col:NInCol)=1:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1509.87,1490.84) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1524.79,1467.15) CenPtnInPanel=(-602,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1509.87,1490.84) CenPtnInPanel=(-574,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1524.79,1467.15) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1509.87,1490.84) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,09 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1524.79,1467.15) CenPtnInPanel=(-546,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,10 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1509.87,1490.84) CenPtnInPanel=(-518,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1524.79,1467.15) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1509.87,1490.84) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,13 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1524.79,1467.15) CenPtnInPanel=(-490,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,14 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1509.87,1490.84) CenPtnInPanel=(-462,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1524.79,1467.15) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,04 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1525.93,1465.33) CenPtnInPanel=(-602,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,05 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1540.85,1441.63) CenPtnInPanel=(-602,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,06 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1525.93,1465.33) CenPtnInPanel=(-574,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,07 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1540.85,1441.63) CenPtnInPanel=(-574,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,08 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1525.93,1465.33) CenPtnInPanel=(-546,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,09 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1540.85,1441.63) CenPtnInPanel=(-546,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,10 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1525.93,1465.33) CenPtnInPanel=(-518,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,11 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1540.85,1441.63) CenPtnInPanel=(-518,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,12 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1525.93,1465.33) CenPtnInPanel=(-490,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,13 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1540.85,1441.63) CenPtnInPanel=(-490,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,14 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1525.93,1465.33) CenPtnInPanel=(-462,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:072,15 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1540.85,1441.63) CenPtnInPanel=(-462,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 73 { PMT Rich1 Bot } Module(Col:NInCol)=1:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1509.87,1490.84) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1524.79,1467.15) CenPtnInPanel=(-434,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1509.87,1490.84) CenPtnInPanel=(-406,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1524.79,1467.15) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1509.87,1490.84) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1524.79,1467.15) CenPtnInPanel=(-378,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1509.87,1490.84) CenPtnInPanel=(-350,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1524.79,1467.15) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1509.87,1490.84) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1524.79,1467.15) CenPtnInPanel=(-322,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1509.87,1490.84) CenPtnInPanel=(-294,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1524.79,1467.15) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1509.87,1490.84) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1524.79,1467.15) CenPtnInPanel=(-266,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,14 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1509.87,1490.84) CenPtnInPanel=(-238,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1524.79,1467.15) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1525.93,1465.33) CenPtnInPanel=(-434,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1540.85,1441.63) CenPtnInPanel=(-434,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1525.93,1465.33) CenPtnInPanel=(-406,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1540.85,1441.63) CenPtnInPanel=(-406,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,04 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1525.93,1465.33) CenPtnInPanel=(-378,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,05 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1540.85,1441.63) CenPtnInPanel=(-378,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,06 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1525.93,1465.33) CenPtnInPanel=(-350,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,07 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1540.85,1441.63) CenPtnInPanel=(-350,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,08 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1525.93,1465.33) CenPtnInPanel=(-322,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,09 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1540.85,1441.63) CenPtnInPanel=(-322,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,10 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1525.93,1465.33) CenPtnInPanel=(-294,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,11 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1540.85,1441.63) CenPtnInPanel=(-294,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,12 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1525.93,1465.33) CenPtnInPanel=(-266,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,13 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1540.85,1441.63) CenPtnInPanel=(-266,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,14 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1525.93,1465.33) CenPtnInPanel=(-238,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:073,15 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1540.85,1441.63) CenPtnInPanel=(-238,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 74 { PMT Rich1 Bot } Module(Col:NInCol)=1:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1509.87,1490.84) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1524.79,1467.15) CenPtnInPanel=(-210,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1509.87,1490.84) CenPtnInPanel=(-182,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1524.79,1467.15) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1509.87,1490.84) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1524.79,1467.15) CenPtnInPanel=(-154,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1509.87,1490.84) CenPtnInPanel=(-126,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1524.79,1467.15) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1509.87,1490.84) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1524.79,1467.15) CenPtnInPanel=(-98,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1509.87,1490.84) CenPtnInPanel=(-70,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1524.79,1467.15) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1509.87,1490.84) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1524.79,1467.15) CenPtnInPanel=(-42,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1509.87,1490.84) CenPtnInPanel=(-14,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1524.79,1467.15) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1525.93,1465.33) CenPtnInPanel=(-210,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1540.85,1441.63) CenPtnInPanel=(-210,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1525.93,1465.33) CenPtnInPanel=(-182,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1540.85,1441.63) CenPtnInPanel=(-182,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1525.93,1465.33) CenPtnInPanel=(-154,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1540.85,1441.63) CenPtnInPanel=(-154,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1525.93,1465.33) CenPtnInPanel=(-126,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1540.85,1441.63) CenPtnInPanel=(-126,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1525.93,1465.33) CenPtnInPanel=(-98,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1540.85,1441.63) CenPtnInPanel=(-98,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1525.93,1465.33) CenPtnInPanel=(-70,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1540.85,1441.63) CenPtnInPanel=(-70,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1525.93,1465.33) CenPtnInPanel=(-42,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1540.85,1441.63) CenPtnInPanel=(-42,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1525.93,1465.33) CenPtnInPanel=(-14,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:074,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1540.85,1441.63) CenPtnInPanel=(-14,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 75 { PMT Rich1 Bot } Module(Col:NInCol)=1:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1509.87,1490.84) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1524.79,1467.15) CenPtnInPanel=(14,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1509.87,1490.84) CenPtnInPanel=(42,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1524.79,1467.15) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1509.87,1490.84) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1524.79,1467.15) CenPtnInPanel=(70,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1509.87,1490.84) CenPtnInPanel=(98,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1524.79,1467.15) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1509.87,1490.84) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1524.79,1467.15) CenPtnInPanel=(126,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1509.87,1490.84) CenPtnInPanel=(154,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1524.79,1467.15) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1509.87,1490.84) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1524.79,1467.15) CenPtnInPanel=(182,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1509.87,1490.84) CenPtnInPanel=(210,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1524.79,1467.15) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1525.93,1465.33) CenPtnInPanel=(14,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1540.85,1441.63) CenPtnInPanel=(14,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1525.93,1465.33) CenPtnInPanel=(42,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1540.85,1441.63) CenPtnInPanel=(42,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1525.93,1465.33) CenPtnInPanel=(70,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1540.85,1441.63) CenPtnInPanel=(70,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1525.93,1465.33) CenPtnInPanel=(98,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1540.85,1441.63) CenPtnInPanel=(98,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1525.93,1465.33) CenPtnInPanel=(126,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1540.85,1441.63) CenPtnInPanel=(126,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1525.93,1465.33) CenPtnInPanel=(154,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1540.85,1441.63) CenPtnInPanel=(154,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1525.93,1465.33) CenPtnInPanel=(182,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1540.85,1441.63) CenPtnInPanel=(182,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1525.93,1465.33) CenPtnInPanel=(210,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:075,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1540.85,1441.63) CenPtnInPanel=(210,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 76 { PMT Rich1 Bot } Module(Col:NInCol)=1:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1509.87,1490.84) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1524.79,1467.15) CenPtnInPanel=(238,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1509.87,1490.84) CenPtnInPanel=(266,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1524.79,1467.15) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1509.87,1490.84) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1524.79,1467.15) CenPtnInPanel=(294,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1509.87,1490.84) CenPtnInPanel=(322,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1524.79,1467.15) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1509.87,1490.84) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1524.79,1467.15) CenPtnInPanel=(350,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1509.87,1490.84) CenPtnInPanel=(378,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1524.79,1467.15) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1509.87,1490.84) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1524.79,1467.15) CenPtnInPanel=(406,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1509.87,1490.84) CenPtnInPanel=(434,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1524.79,1467.15) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1525.93,1465.33) CenPtnInPanel=(238,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1540.85,1441.63) CenPtnInPanel=(238,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1525.93,1465.33) CenPtnInPanel=(266,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1540.85,1441.63) CenPtnInPanel=(266,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,04 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1525.93,1465.33) CenPtnInPanel=(294,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,05 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1540.85,1441.63) CenPtnInPanel=(294,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,06 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1525.93,1465.33) CenPtnInPanel=(322,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,07 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1540.85,1441.63) CenPtnInPanel=(322,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,08 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1525.93,1465.33) CenPtnInPanel=(350,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,09 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1540.85,1441.63) CenPtnInPanel=(350,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,10 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1525.93,1465.33) CenPtnInPanel=(378,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,11 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1540.85,1441.63) CenPtnInPanel=(378,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,12 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1525.93,1465.33) CenPtnInPanel=(406,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,13 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1540.85,1441.63) CenPtnInPanel=(406,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,14 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1525.93,1465.33) CenPtnInPanel=(434,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:076,15 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1540.85,1441.63) CenPtnInPanel=(434,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 77 { PMT Rich1 Bot } Module(Col:NInCol)=1:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1509.87,1490.84) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1524.79,1467.15) CenPtnInPanel=(462,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1509.87,1490.84) CenPtnInPanel=(490,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1524.79,1467.15) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1509.87,1490.84) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1524.79,1467.15) CenPtnInPanel=(518,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1509.87,1490.84) CenPtnInPanel=(546,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1524.79,1467.15) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1509.87,1490.84) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1524.79,1467.15) CenPtnInPanel=(574,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1509.87,1490.84) CenPtnInPanel=(602,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1524.79,1467.15) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1525.93,1465.33) CenPtnInPanel=(462,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1540.85,1441.63) CenPtnInPanel=(462,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1525.93,1465.33) CenPtnInPanel=(490,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1540.85,1441.63) CenPtnInPanel=(490,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,04 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1525.93,1465.33) CenPtnInPanel=(518,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,05 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1540.85,1441.63) CenPtnInPanel=(518,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,06 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1525.93,1465.33) CenPtnInPanel=(546,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,07 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1540.85,1441.63) CenPtnInPanel=(546,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,08 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1525.93,1465.33) CenPtnInPanel=(574,-212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,09 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1540.85,1441.63) CenPtnInPanel=(574,-240,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,10 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1525.93,1465.33) CenPtnInPanel=(602,-212,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:077,11 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1540.85,1441.63) CenPtnInPanel=(602,-240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 78 { PMT Rich1 Bot } Module(Col:NInCol)=2:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1479.76,1538.65) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1494.68,1514.96) CenPtnInPanel=(-602,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1479.76,1538.65) CenPtnInPanel=(-574,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1494.68,1514.96) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1479.76,1538.65) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1494.68,1514.96) CenPtnInPanel=(-546,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1479.76,1538.65) CenPtnInPanel=(-518,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1494.68,1514.96) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1479.76,1538.65) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1494.68,1514.96) CenPtnInPanel=(-490,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,14 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1479.76,1538.65) CenPtnInPanel=(-462,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1494.68,1514.96) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,04 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1495.82,1513.14) CenPtnInPanel=(-602,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,05 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1510.74,1489.44) CenPtnInPanel=(-602,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,06 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1495.82,1513.14) CenPtnInPanel=(-574,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,07 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1510.74,1489.44) CenPtnInPanel=(-574,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,08 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1495.82,1513.14) CenPtnInPanel=(-546,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,09 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1510.74,1489.44) CenPtnInPanel=(-546,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,10 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1495.82,1513.14) CenPtnInPanel=(-518,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,11 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1510.74,1489.44) CenPtnInPanel=(-518,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,12 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1495.82,1513.14) CenPtnInPanel=(-490,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,13 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1510.74,1489.44) CenPtnInPanel=(-490,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,14 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1495.82,1513.14) CenPtnInPanel=(-462,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:078,15 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1510.74,1489.44) CenPtnInPanel=(-462,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 79 { PMT Rich1 Bot } Module(Col:NInCol)=2:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1479.76,1538.65) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1494.68,1514.96) CenPtnInPanel=(-434,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1479.76,1538.65) CenPtnInPanel=(-406,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1494.68,1514.96) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1479.76,1538.65) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1494.68,1514.96) CenPtnInPanel=(-378,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1479.76,1538.65) CenPtnInPanel=(-350,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1494.68,1514.96) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1479.76,1538.65) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1494.68,1514.96) CenPtnInPanel=(-322,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1479.76,1538.65) CenPtnInPanel=(-294,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1494.68,1514.96) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1479.76,1538.65) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1494.68,1514.96) CenPtnInPanel=(-266,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1479.76,1538.65) CenPtnInPanel=(-238,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1494.68,1514.96) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1495.82,1513.14) CenPtnInPanel=(-434,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1510.74,1489.44) CenPtnInPanel=(-434,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1495.82,1513.14) CenPtnInPanel=(-406,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1510.74,1489.44) CenPtnInPanel=(-406,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,04 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1495.82,1513.14) CenPtnInPanel=(-378,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,05 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1510.74,1489.44) CenPtnInPanel=(-378,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,06 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1495.82,1513.14) CenPtnInPanel=(-350,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,07 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1510.74,1489.44) CenPtnInPanel=(-350,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,08 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1495.82,1513.14) CenPtnInPanel=(-322,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,09 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1510.74,1489.44) CenPtnInPanel=(-322,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,10 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1495.82,1513.14) CenPtnInPanel=(-294,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,11 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1510.74,1489.44) CenPtnInPanel=(-294,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,12 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1495.82,1513.14) CenPtnInPanel=(-266,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,13 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1510.74,1489.44) CenPtnInPanel=(-266,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,14 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1495.82,1513.14) CenPtnInPanel=(-238,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:079,15 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1510.74,1489.44) CenPtnInPanel=(-238,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 80 { PMT Rich1 Bot } Module(Col:NInCol)=2:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1479.76,1538.65) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1494.68,1514.96) CenPtnInPanel=(-210,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1479.76,1538.65) CenPtnInPanel=(-182,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1494.68,1514.96) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1479.76,1538.65) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1494.68,1514.96) CenPtnInPanel=(-154,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1479.76,1538.65) CenPtnInPanel=(-126,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1494.68,1514.96) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1479.76,1538.65) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1494.68,1514.96) CenPtnInPanel=(-98,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1479.76,1538.65) CenPtnInPanel=(-70,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1494.68,1514.96) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1479.76,1538.65) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1494.68,1514.96) CenPtnInPanel=(-42,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1479.76,1538.65) CenPtnInPanel=(-14,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1494.68,1514.96) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1495.82,1513.14) CenPtnInPanel=(-210,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1510.74,1489.44) CenPtnInPanel=(-210,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1495.82,1513.14) CenPtnInPanel=(-182,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1510.74,1489.44) CenPtnInPanel=(-182,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1495.82,1513.14) CenPtnInPanel=(-154,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1510.74,1489.44) CenPtnInPanel=(-154,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1495.82,1513.14) CenPtnInPanel=(-126,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1510.74,1489.44) CenPtnInPanel=(-126,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1495.82,1513.14) CenPtnInPanel=(-98,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1510.74,1489.44) CenPtnInPanel=(-98,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1495.82,1513.14) CenPtnInPanel=(-70,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1510.74,1489.44) CenPtnInPanel=(-70,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1495.82,1513.14) CenPtnInPanel=(-42,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1510.74,1489.44) CenPtnInPanel=(-42,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1495.82,1513.14) CenPtnInPanel=(-14,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:080,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1510.74,1489.44) CenPtnInPanel=(-14,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 81 { PMT Rich1 Bot } Module(Col:NInCol)=2:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1479.76,1538.65) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1494.68,1514.96) CenPtnInPanel=(14,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1479.76,1538.65) CenPtnInPanel=(42,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1494.68,1514.96) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1479.76,1538.65) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1494.68,1514.96) CenPtnInPanel=(70,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1479.76,1538.65) CenPtnInPanel=(98,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1494.68,1514.96) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1479.76,1538.65) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1494.68,1514.96) CenPtnInPanel=(126,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1479.76,1538.65) CenPtnInPanel=(154,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1494.68,1514.96) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1479.76,1538.65) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1494.68,1514.96) CenPtnInPanel=(182,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1479.76,1538.65) CenPtnInPanel=(210,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1494.68,1514.96) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1495.82,1513.14) CenPtnInPanel=(14,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1510.74,1489.44) CenPtnInPanel=(14,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1495.82,1513.14) CenPtnInPanel=(42,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1510.74,1489.44) CenPtnInPanel=(42,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1495.82,1513.14) CenPtnInPanel=(70,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1510.74,1489.44) CenPtnInPanel=(70,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1495.82,1513.14) CenPtnInPanel=(98,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1510.74,1489.44) CenPtnInPanel=(98,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1495.82,1513.14) CenPtnInPanel=(126,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1510.74,1489.44) CenPtnInPanel=(126,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1495.82,1513.14) CenPtnInPanel=(154,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1510.74,1489.44) CenPtnInPanel=(154,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1495.82,1513.14) CenPtnInPanel=(182,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1510.74,1489.44) CenPtnInPanel=(182,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1495.82,1513.14) CenPtnInPanel=(210,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:081,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1510.74,1489.44) CenPtnInPanel=(210,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 82 { PMT Rich1 Bot } Module(Col:NInCol)=2:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1479.76,1538.65) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1494.68,1514.96) CenPtnInPanel=(238,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1479.76,1538.65) CenPtnInPanel=(266,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1494.68,1514.96) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1479.76,1538.65) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1494.68,1514.96) CenPtnInPanel=(294,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1479.76,1538.65) CenPtnInPanel=(322,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1494.68,1514.96) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1479.76,1538.65) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1494.68,1514.96) CenPtnInPanel=(350,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,10 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1479.76,1538.65) CenPtnInPanel=(378,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1494.68,1514.96) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1479.76,1538.65) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,13 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1494.68,1514.96) CenPtnInPanel=(406,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,14 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1479.76,1538.65) CenPtnInPanel=(434,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1494.68,1514.96) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1495.82,1513.14) CenPtnInPanel=(238,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1510.74,1489.44) CenPtnInPanel=(238,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1495.82,1513.14) CenPtnInPanel=(266,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1510.74,1489.44) CenPtnInPanel=(266,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,04 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1495.82,1513.14) CenPtnInPanel=(294,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,05 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1510.74,1489.44) CenPtnInPanel=(294,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,06 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1495.82,1513.14) CenPtnInPanel=(322,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,07 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1510.74,1489.44) CenPtnInPanel=(322,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,08 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1495.82,1513.14) CenPtnInPanel=(350,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,09 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1510.74,1489.44) CenPtnInPanel=(350,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,10 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1495.82,1513.14) CenPtnInPanel=(378,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,11 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1510.74,1489.44) CenPtnInPanel=(378,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,12 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1495.82,1513.14) CenPtnInPanel=(406,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,13 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1510.74,1489.44) CenPtnInPanel=(406,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,14 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1495.82,1513.14) CenPtnInPanel=(434,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:082,15 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1510.74,1489.44) CenPtnInPanel=(434,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 83 { PMT Rich1 Bot } Module(Col:NInCol)=2:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1479.76,1538.65) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1494.68,1514.96) CenPtnInPanel=(462,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1479.76,1538.65) CenPtnInPanel=(490,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1494.68,1514.96) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1479.76,1538.65) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1494.68,1514.96) CenPtnInPanel=(518,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1479.76,1538.65) CenPtnInPanel=(546,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1494.68,1514.96) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1479.76,1538.65) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1494.68,1514.96) CenPtnInPanel=(574,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1479.76,1538.65) CenPtnInPanel=(602,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1494.68,1514.96) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1495.82,1513.14) CenPtnInPanel=(462,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1510.74,1489.44) CenPtnInPanel=(462,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1495.82,1513.14) CenPtnInPanel=(490,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1510.74,1489.44) CenPtnInPanel=(490,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,04 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1495.82,1513.14) CenPtnInPanel=(518,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,05 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1510.74,1489.44) CenPtnInPanel=(518,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,06 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1495.82,1513.14) CenPtnInPanel=(546,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,07 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1510.74,1489.44) CenPtnInPanel=(546,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,08 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1495.82,1513.14) CenPtnInPanel=(574,-155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,09 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1510.74,1489.44) CenPtnInPanel=(574,-183.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,10 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1495.82,1513.14) CenPtnInPanel=(602,-155.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:083,11 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1510.74,1489.44) CenPtnInPanel=(602,-183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 84 { PMT Rich1 Bot } Module(Col:NInCol)=3:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1449.65,1586.46) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1464.57,1562.77) CenPtnInPanel=(-602,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1449.65,1586.46) CenPtnInPanel=(-574,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1464.57,1562.77) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1449.65,1586.46) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1464.57,1562.77) CenPtnInPanel=(-546,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1449.65,1586.46) CenPtnInPanel=(-518,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1464.57,1562.77) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1449.65,1586.46) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1464.57,1562.77) CenPtnInPanel=(-490,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1449.65,1586.46) CenPtnInPanel=(-462,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1464.57,1562.77) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,04 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1465.72,1560.95) CenPtnInPanel=(-602,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,05 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1480.64,1537.25) CenPtnInPanel=(-602,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,06 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1465.72,1560.95) CenPtnInPanel=(-574,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,07 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1480.64,1537.25) CenPtnInPanel=(-574,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,08 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1465.72,1560.95) CenPtnInPanel=(-546,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,09 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1480.64,1537.25) CenPtnInPanel=(-546,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,10 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1465.72,1560.95) CenPtnInPanel=(-518,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,11 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1480.64,1537.25) CenPtnInPanel=(-518,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,12 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1465.72,1560.95) CenPtnInPanel=(-490,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,13 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1480.64,1537.25) CenPtnInPanel=(-490,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,14 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1465.72,1560.95) CenPtnInPanel=(-462,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:084,15 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1480.64,1537.25) CenPtnInPanel=(-462,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 85 { PMT Rich1 Bot } Module(Col:NInCol)=3:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1449.65,1586.46) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1464.57,1562.77) CenPtnInPanel=(-434,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1449.65,1586.46) CenPtnInPanel=(-406,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1464.57,1562.77) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1449.65,1586.46) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1464.57,1562.77) CenPtnInPanel=(-378,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1449.65,1586.46) CenPtnInPanel=(-350,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1464.57,1562.77) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1449.65,1586.46) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1464.57,1562.77) CenPtnInPanel=(-322,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1449.65,1586.46) CenPtnInPanel=(-294,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1464.57,1562.77) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1449.65,1586.46) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1464.57,1562.77) CenPtnInPanel=(-266,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1449.65,1586.46) CenPtnInPanel=(-238,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1464.57,1562.77) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1465.72,1560.95) CenPtnInPanel=(-434,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1480.64,1537.25) CenPtnInPanel=(-434,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1465.72,1560.95) CenPtnInPanel=(-406,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1480.64,1537.25) CenPtnInPanel=(-406,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,04 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1465.72,1560.95) CenPtnInPanel=(-378,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,05 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1480.64,1537.25) CenPtnInPanel=(-378,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,06 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1465.72,1560.95) CenPtnInPanel=(-350,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,07 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1480.64,1537.25) CenPtnInPanel=(-350,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,08 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1465.72,1560.95) CenPtnInPanel=(-322,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,09 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1480.64,1537.25) CenPtnInPanel=(-322,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,10 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1465.72,1560.95) CenPtnInPanel=(-294,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,11 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1480.64,1537.25) CenPtnInPanel=(-294,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,12 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1465.72,1560.95) CenPtnInPanel=(-266,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,13 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1480.64,1537.25) CenPtnInPanel=(-266,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,14 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1465.72,1560.95) CenPtnInPanel=(-238,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:085,15 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1480.64,1537.25) CenPtnInPanel=(-238,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 86 { PMT Rich1 Bot } Module(Col:NInCol)=3:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1449.65,1586.46) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1464.57,1562.77) CenPtnInPanel=(-210,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1449.65,1586.46) CenPtnInPanel=(-182,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1464.57,1562.77) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1449.65,1586.46) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1464.57,1562.77) CenPtnInPanel=(-154,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1449.65,1586.46) CenPtnInPanel=(-126,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1464.57,1562.77) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1449.65,1586.46) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1464.57,1562.77) CenPtnInPanel=(-98,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1449.65,1586.46) CenPtnInPanel=(-70,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1464.57,1562.77) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1449.65,1586.46) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1464.57,1562.77) CenPtnInPanel=(-42,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1449.65,1586.46) CenPtnInPanel=(-14,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1464.57,1562.77) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1465.72,1560.95) CenPtnInPanel=(-210,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1480.64,1537.25) CenPtnInPanel=(-210,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1465.72,1560.95) CenPtnInPanel=(-182,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1480.64,1537.25) CenPtnInPanel=(-182,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1465.72,1560.95) CenPtnInPanel=(-154,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1480.64,1537.25) CenPtnInPanel=(-154,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1465.72,1560.95) CenPtnInPanel=(-126,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1480.64,1537.25) CenPtnInPanel=(-126,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1465.72,1560.95) CenPtnInPanel=(-98,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1480.64,1537.25) CenPtnInPanel=(-98,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1465.72,1560.95) CenPtnInPanel=(-70,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1480.64,1537.25) CenPtnInPanel=(-70,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1465.72,1560.95) CenPtnInPanel=(-42,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1480.64,1537.25) CenPtnInPanel=(-42,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1465.72,1560.95) CenPtnInPanel=(-14,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:086,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1480.64,1537.25) CenPtnInPanel=(-14,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 87 { PMT Rich1 Bot } Module(Col:NInCol)=3:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1449.65,1586.46) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1464.57,1562.77) CenPtnInPanel=(14,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1449.65,1586.46) CenPtnInPanel=(42,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1464.57,1562.77) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1449.65,1586.46) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1464.57,1562.77) CenPtnInPanel=(70,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1449.65,1586.46) CenPtnInPanel=(98,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1464.57,1562.77) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1449.65,1586.46) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1464.57,1562.77) CenPtnInPanel=(126,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1449.65,1586.46) CenPtnInPanel=(154,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1464.57,1562.77) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1449.65,1586.46) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1464.57,1562.77) CenPtnInPanel=(182,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1449.65,1586.46) CenPtnInPanel=(210,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1464.57,1562.77) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1465.72,1560.95) CenPtnInPanel=(14,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1480.64,1537.25) CenPtnInPanel=(14,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1465.72,1560.95) CenPtnInPanel=(42,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1480.64,1537.25) CenPtnInPanel=(42,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1465.72,1560.95) CenPtnInPanel=(70,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1480.64,1537.25) CenPtnInPanel=(70,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1465.72,1560.95) CenPtnInPanel=(98,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1480.64,1537.25) CenPtnInPanel=(98,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1465.72,1560.95) CenPtnInPanel=(126,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1480.64,1537.25) CenPtnInPanel=(126,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1465.72,1560.95) CenPtnInPanel=(154,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1480.64,1537.25) CenPtnInPanel=(154,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1465.72,1560.95) CenPtnInPanel=(182,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1480.64,1537.25) CenPtnInPanel=(182,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1465.72,1560.95) CenPtnInPanel=(210,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:087,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1480.64,1537.25) CenPtnInPanel=(210,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 88 { PMT Rich1 Bot } Module(Col:NInCol)=3:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1449.65,1586.46) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1464.57,1562.77) CenPtnInPanel=(238,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1449.65,1586.46) CenPtnInPanel=(266,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1464.57,1562.77) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1449.65,1586.46) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1464.57,1562.77) CenPtnInPanel=(294,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1449.65,1586.46) CenPtnInPanel=(322,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1464.57,1562.77) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1449.65,1586.46) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1464.57,1562.77) CenPtnInPanel=(350,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1449.65,1586.46) CenPtnInPanel=(378,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1464.57,1562.77) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1449.65,1586.46) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,13 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1464.57,1562.77) CenPtnInPanel=(406,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,14 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1449.65,1586.46) CenPtnInPanel=(434,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1464.57,1562.77) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1465.72,1560.95) CenPtnInPanel=(238,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1480.64,1537.25) CenPtnInPanel=(238,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1465.72,1560.95) CenPtnInPanel=(266,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1480.64,1537.25) CenPtnInPanel=(266,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,04 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1465.72,1560.95) CenPtnInPanel=(294,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,05 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1480.64,1537.25) CenPtnInPanel=(294,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,06 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1465.72,1560.95) CenPtnInPanel=(322,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,07 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1480.64,1537.25) CenPtnInPanel=(322,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,08 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1465.72,1560.95) CenPtnInPanel=(350,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,09 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1480.64,1537.25) CenPtnInPanel=(350,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,10 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1465.72,1560.95) CenPtnInPanel=(378,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,11 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1480.64,1537.25) CenPtnInPanel=(378,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,12 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1465.72,1560.95) CenPtnInPanel=(406,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,13 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1480.64,1537.25) CenPtnInPanel=(406,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,14 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1465.72,1560.95) CenPtnInPanel=(434,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:088,15 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1480.64,1537.25) CenPtnInPanel=(434,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 89 { PMT Rich1 Bot } Module(Col:NInCol)=3:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1449.65,1586.46) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1464.57,1562.77) CenPtnInPanel=(462,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1449.65,1586.46) CenPtnInPanel=(490,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1464.57,1562.77) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1449.65,1586.46) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,05 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1464.57,1562.77) CenPtnInPanel=(518,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1449.65,1586.46) CenPtnInPanel=(546,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1464.57,1562.77) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1449.65,1586.46) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1464.57,1562.77) CenPtnInPanel=(574,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,10 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1449.65,1586.46) CenPtnInPanel=(602,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1464.57,1562.77) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1465.72,1560.95) CenPtnInPanel=(462,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1480.64,1537.25) CenPtnInPanel=(462,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1465.72,1560.95) CenPtnInPanel=(490,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1480.64,1537.25) CenPtnInPanel=(490,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,04 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1465.72,1560.95) CenPtnInPanel=(518,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,05 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1480.64,1537.25) CenPtnInPanel=(518,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,06 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1465.72,1560.95) CenPtnInPanel=(546,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,07 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1480.64,1537.25) CenPtnInPanel=(546,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,08 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1465.72,1560.95) CenPtnInPanel=(574,-99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,09 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1480.64,1537.25) CenPtnInPanel=(574,-127,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,10 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1465.72,1560.95) CenPtnInPanel=(602,-99,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:089,11 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1480.64,1537.25) CenPtnInPanel=(602,-127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 90 { PMT Rich1 Bot } Module(Col:NInCol)=4:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1419.54,1634.27) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1434.46,1610.58) CenPtnInPanel=(-602,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,06 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1419.54,1634.27) CenPtnInPanel=(-574,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1434.46,1610.58) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1419.54,1634.27) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1434.46,1610.58) CenPtnInPanel=(-546,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,10 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1419.54,1634.27) CenPtnInPanel=(-518,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1434.46,1610.58) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1419.54,1634.27) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1434.46,1610.58) CenPtnInPanel=(-490,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1419.54,1634.27) CenPtnInPanel=(-462,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1434.46,1610.58) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,04 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1435.61,1608.76) CenPtnInPanel=(-602,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,05 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1450.53,1585.06) CenPtnInPanel=(-602,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,06 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1435.61,1608.76) CenPtnInPanel=(-574,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,07 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1450.53,1585.06) CenPtnInPanel=(-574,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,08 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1435.61,1608.76) CenPtnInPanel=(-546,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,09 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1450.53,1585.06) CenPtnInPanel=(-546,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,10 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1435.61,1608.76) CenPtnInPanel=(-518,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,11 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1450.53,1585.06) CenPtnInPanel=(-518,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,12 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1435.61,1608.76) CenPtnInPanel=(-490,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,13 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1450.53,1585.06) CenPtnInPanel=(-490,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,14 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1435.61,1608.76) CenPtnInPanel=(-462,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:090,15 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1450.53,1585.06) CenPtnInPanel=(-462,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 91 { PMT Rich1 Bot } Module(Col:NInCol)=4:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1419.54,1634.27) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1434.46,1610.58) CenPtnInPanel=(-434,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1419.54,1634.27) CenPtnInPanel=(-406,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1434.46,1610.58) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1419.54,1634.27) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1434.46,1610.58) CenPtnInPanel=(-378,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,06 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1419.54,1634.27) CenPtnInPanel=(-350,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1434.46,1610.58) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1419.54,1634.27) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1434.46,1610.58) CenPtnInPanel=(-322,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1419.54,1634.27) CenPtnInPanel=(-294,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1434.46,1610.58) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1419.54,1634.27) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1434.46,1610.58) CenPtnInPanel=(-266,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1419.54,1634.27) CenPtnInPanel=(-238,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1434.46,1610.58) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1435.61,1608.76) CenPtnInPanel=(-434,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1450.53,1585.06) CenPtnInPanel=(-434,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1435.61,1608.76) CenPtnInPanel=(-406,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1450.53,1585.06) CenPtnInPanel=(-406,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,04 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1435.61,1608.76) CenPtnInPanel=(-378,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,05 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1450.53,1585.06) CenPtnInPanel=(-378,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,06 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1435.61,1608.76) CenPtnInPanel=(-350,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,07 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1450.53,1585.06) CenPtnInPanel=(-350,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,08 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1435.61,1608.76) CenPtnInPanel=(-322,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,09 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1450.53,1585.06) CenPtnInPanel=(-322,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,10 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1435.61,1608.76) CenPtnInPanel=(-294,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,11 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1450.53,1585.06) CenPtnInPanel=(-294,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,12 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1435.61,1608.76) CenPtnInPanel=(-266,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,13 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1450.53,1585.06) CenPtnInPanel=(-266,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,14 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1435.61,1608.76) CenPtnInPanel=(-238,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:091,15 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1450.53,1585.06) CenPtnInPanel=(-238,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 92 { PMT Rich1 Bot } Module(Col:NInCol)=4:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1419.54,1634.27) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1434.46,1610.58) CenPtnInPanel=(-210,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1419.54,1634.27) CenPtnInPanel=(-182,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1434.46,1610.58) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1419.54,1634.27) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1434.46,1610.58) CenPtnInPanel=(-154,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1419.54,1634.27) CenPtnInPanel=(-126,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1434.46,1610.58) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1419.54,1634.27) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1434.46,1610.58) CenPtnInPanel=(-98,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1419.54,1634.27) CenPtnInPanel=(-70,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1434.46,1610.58) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1419.54,1634.27) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1434.46,1610.58) CenPtnInPanel=(-42,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1419.54,1634.27) CenPtnInPanel=(-14,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1434.46,1610.58) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1435.61,1608.76) CenPtnInPanel=(-210,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1450.53,1585.06) CenPtnInPanel=(-210,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1435.61,1608.76) CenPtnInPanel=(-182,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1450.53,1585.06) CenPtnInPanel=(-182,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1435.61,1608.76) CenPtnInPanel=(-154,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1450.53,1585.06) CenPtnInPanel=(-154,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1435.61,1608.76) CenPtnInPanel=(-126,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1450.53,1585.06) CenPtnInPanel=(-126,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1435.61,1608.76) CenPtnInPanel=(-98,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1450.53,1585.06) CenPtnInPanel=(-98,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1435.61,1608.76) CenPtnInPanel=(-70,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1450.53,1585.06) CenPtnInPanel=(-70,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1435.61,1608.76) CenPtnInPanel=(-42,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1450.53,1585.06) CenPtnInPanel=(-42,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1435.61,1608.76) CenPtnInPanel=(-14,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:092,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1450.53,1585.06) CenPtnInPanel=(-14,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 93 { PMT Rich1 Bot } Module(Col:NInCol)=4:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1419.54,1634.27) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1434.46,1610.58) CenPtnInPanel=(14,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1419.54,1634.27) CenPtnInPanel=(42,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1434.46,1610.58) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1419.54,1634.27) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1434.46,1610.58) CenPtnInPanel=(70,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1419.54,1634.27) CenPtnInPanel=(98,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1434.46,1610.58) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1419.54,1634.27) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1434.46,1610.58) CenPtnInPanel=(126,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1419.54,1634.27) CenPtnInPanel=(154,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1434.46,1610.58) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1419.54,1634.27) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1434.46,1610.58) CenPtnInPanel=(182,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1419.54,1634.27) CenPtnInPanel=(210,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1434.46,1610.58) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1435.61,1608.76) CenPtnInPanel=(14,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1450.53,1585.06) CenPtnInPanel=(14,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1435.61,1608.76) CenPtnInPanel=(42,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1450.53,1585.06) CenPtnInPanel=(42,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1435.61,1608.76) CenPtnInPanel=(70,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1450.53,1585.06) CenPtnInPanel=(70,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1435.61,1608.76) CenPtnInPanel=(98,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1450.53,1585.06) CenPtnInPanel=(98,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1435.61,1608.76) CenPtnInPanel=(126,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1450.53,1585.06) CenPtnInPanel=(126,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1435.61,1608.76) CenPtnInPanel=(154,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1450.53,1585.06) CenPtnInPanel=(154,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1435.61,1608.76) CenPtnInPanel=(182,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1450.53,1585.06) CenPtnInPanel=(182,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1435.61,1608.76) CenPtnInPanel=(210,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:093,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1450.53,1585.06) CenPtnInPanel=(210,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 94 { PMT Rich1 Bot } Module(Col:NInCol)=4:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1419.54,1634.27) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1434.46,1610.58) CenPtnInPanel=(238,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1419.54,1634.27) CenPtnInPanel=(266,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1434.46,1610.58) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1419.54,1634.27) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1434.46,1610.58) CenPtnInPanel=(294,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,06 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1419.54,1634.27) CenPtnInPanel=(322,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1434.46,1610.58) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1419.54,1634.27) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1434.46,1610.58) CenPtnInPanel=(350,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,10 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1419.54,1634.27) CenPtnInPanel=(378,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1434.46,1610.58) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1419.54,1634.27) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1434.46,1610.58) CenPtnInPanel=(406,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,14 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1419.54,1634.27) CenPtnInPanel=(434,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1434.46,1610.58) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1435.61,1608.76) CenPtnInPanel=(238,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1450.53,1585.06) CenPtnInPanel=(238,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1435.61,1608.76) CenPtnInPanel=(266,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1450.53,1585.06) CenPtnInPanel=(266,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,04 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1435.61,1608.76) CenPtnInPanel=(294,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,05 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1450.53,1585.06) CenPtnInPanel=(294,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,06 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1435.61,1608.76) CenPtnInPanel=(322,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,07 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1450.53,1585.06) CenPtnInPanel=(322,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,08 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1435.61,1608.76) CenPtnInPanel=(350,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,09 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1450.53,1585.06) CenPtnInPanel=(350,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,10 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1435.61,1608.76) CenPtnInPanel=(378,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,11 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1450.53,1585.06) CenPtnInPanel=(378,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,12 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1435.61,1608.76) CenPtnInPanel=(406,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,13 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1450.53,1585.06) CenPtnInPanel=(406,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,14 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1435.61,1608.76) CenPtnInPanel=(434,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:094,15 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1450.53,1585.06) CenPtnInPanel=(434,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 95 { PMT Rich1 Bot } Module(Col:NInCol)=4:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1419.54,1634.27) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1434.46,1610.58) CenPtnInPanel=(462,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1419.54,1634.27) CenPtnInPanel=(490,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1434.46,1610.58) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1419.54,1634.27) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,05 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1434.46,1610.58) CenPtnInPanel=(518,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,06 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1419.54,1634.27) CenPtnInPanel=(546,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1434.46,1610.58) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1419.54,1634.27) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1434.46,1610.58) CenPtnInPanel=(574,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,10 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1419.54,1634.27) CenPtnInPanel=(602,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1434.46,1610.58) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1435.61,1608.76) CenPtnInPanel=(462,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1450.53,1585.06) CenPtnInPanel=(462,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1435.61,1608.76) CenPtnInPanel=(490,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1450.53,1585.06) CenPtnInPanel=(490,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,04 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1435.61,1608.76) CenPtnInPanel=(518,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,05 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1450.53,1585.06) CenPtnInPanel=(518,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,06 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1435.61,1608.76) CenPtnInPanel=(546,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,07 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1450.53,1585.06) CenPtnInPanel=(546,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,08 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1435.61,1608.76) CenPtnInPanel=(574,-42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,09 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1450.53,1585.06) CenPtnInPanel=(574,-70.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,10 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1435.61,1608.76) CenPtnInPanel=(602,-42.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:095,11 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1450.53,1585.06) CenPtnInPanel=(602,-70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 96 { PMT Rich1 Bot } Module(Col:NInCol)=5:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1389.44,1682.08) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1404.36,1658.39) CenPtnInPanel=(-602,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,06 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1389.44,1682.08) CenPtnInPanel=(-574,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1404.36,1658.39) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1389.44,1682.08) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1404.36,1658.39) CenPtnInPanel=(-546,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1389.44,1682.08) CenPtnInPanel=(-518,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1404.36,1658.39) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1389.44,1682.08) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1404.36,1658.39) CenPtnInPanel=(-490,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1389.44,1682.08) CenPtnInPanel=(-462,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1404.36,1658.39) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,04 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1405.5,1656.57) CenPtnInPanel=(-602,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,05 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1420.42,1632.87) CenPtnInPanel=(-602,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,06 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1405.5,1656.57) CenPtnInPanel=(-574,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,07 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1420.42,1632.87) CenPtnInPanel=(-574,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,08 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1405.5,1656.57) CenPtnInPanel=(-546,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,09 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1420.42,1632.87) CenPtnInPanel=(-546,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,10 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1405.5,1656.57) CenPtnInPanel=(-518,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,11 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1420.42,1632.87) CenPtnInPanel=(-518,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,12 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1405.5,1656.57) CenPtnInPanel=(-490,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,13 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1420.42,1632.87) CenPtnInPanel=(-490,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,14 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1405.5,1656.57) CenPtnInPanel=(-462,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:096,15 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1420.42,1632.87) CenPtnInPanel=(-462,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 97 { PMT Rich1 Bot } Module(Col:NInCol)=5:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1389.44,1682.08) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1404.36,1658.39) CenPtnInPanel=(-434,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1389.44,1682.08) CenPtnInPanel=(-406,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1404.36,1658.39) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1389.44,1682.08) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1404.36,1658.39) CenPtnInPanel=(-378,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1389.44,1682.08) CenPtnInPanel=(-350,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1404.36,1658.39) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1389.44,1682.08) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1404.36,1658.39) CenPtnInPanel=(-322,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1389.44,1682.08) CenPtnInPanel=(-294,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1404.36,1658.39) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1389.44,1682.08) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1404.36,1658.39) CenPtnInPanel=(-266,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1389.44,1682.08) CenPtnInPanel=(-238,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1404.36,1658.39) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1405.5,1656.57) CenPtnInPanel=(-434,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1420.42,1632.87) CenPtnInPanel=(-434,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1405.5,1656.57) CenPtnInPanel=(-406,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1420.42,1632.87) CenPtnInPanel=(-406,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,04 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1405.5,1656.57) CenPtnInPanel=(-378,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,05 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1420.42,1632.87) CenPtnInPanel=(-378,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,06 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1405.5,1656.57) CenPtnInPanel=(-350,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,07 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1420.42,1632.87) CenPtnInPanel=(-350,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,08 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1405.5,1656.57) CenPtnInPanel=(-322,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,09 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1420.42,1632.87) CenPtnInPanel=(-322,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,10 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1405.5,1656.57) CenPtnInPanel=(-294,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,11 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1420.42,1632.87) CenPtnInPanel=(-294,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,12 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1405.5,1656.57) CenPtnInPanel=(-266,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,13 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1420.42,1632.87) CenPtnInPanel=(-266,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,14 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1405.5,1656.57) CenPtnInPanel=(-238,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:097,15 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1420.42,1632.87) CenPtnInPanel=(-238,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 98 { PMT Rich1 Bot } Module(Col:NInCol)=5:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1389.44,1682.08) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1404.36,1658.39) CenPtnInPanel=(-210,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1389.44,1682.08) CenPtnInPanel=(-182,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1404.36,1658.39) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1389.44,1682.08) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1404.36,1658.39) CenPtnInPanel=(-154,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1389.44,1682.08) CenPtnInPanel=(-126,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1404.36,1658.39) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1389.44,1682.08) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1404.36,1658.39) CenPtnInPanel=(-98,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1389.44,1682.08) CenPtnInPanel=(-70,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1404.36,1658.39) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1389.44,1682.08) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1404.36,1658.39) CenPtnInPanel=(-42,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1389.44,1682.08) CenPtnInPanel=(-14,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1404.36,1658.39) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1405.5,1656.57) CenPtnInPanel=(-210,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1420.42,1632.87) CenPtnInPanel=(-210,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1405.5,1656.57) CenPtnInPanel=(-182,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1420.42,1632.87) CenPtnInPanel=(-182,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1405.5,1656.57) CenPtnInPanel=(-154,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1420.42,1632.87) CenPtnInPanel=(-154,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1405.5,1656.57) CenPtnInPanel=(-126,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1420.42,1632.87) CenPtnInPanel=(-126,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1405.5,1656.57) CenPtnInPanel=(-98,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1420.42,1632.87) CenPtnInPanel=(-98,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1405.5,1656.57) CenPtnInPanel=(-70,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1420.42,1632.87) CenPtnInPanel=(-70,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1405.5,1656.57) CenPtnInPanel=(-42,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1420.42,1632.87) CenPtnInPanel=(-42,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1405.5,1656.57) CenPtnInPanel=(-14,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:098,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1420.42,1632.87) CenPtnInPanel=(-14,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 99 { PMT Rich1 Bot } Module(Col:NInCol)=5:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1389.44,1682.08) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1404.36,1658.39) CenPtnInPanel=(14,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1389.44,1682.08) CenPtnInPanel=(42,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1404.36,1658.39) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1389.44,1682.08) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1404.36,1658.39) CenPtnInPanel=(70,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1389.44,1682.08) CenPtnInPanel=(98,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1404.36,1658.39) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1389.44,1682.08) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1404.36,1658.39) CenPtnInPanel=(126,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1389.44,1682.08) CenPtnInPanel=(154,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1404.36,1658.39) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1389.44,1682.08) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1404.36,1658.39) CenPtnInPanel=(182,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1389.44,1682.08) CenPtnInPanel=(210,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1404.36,1658.39) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1405.5,1656.57) CenPtnInPanel=(14,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1420.42,1632.87) CenPtnInPanel=(14,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1405.5,1656.57) CenPtnInPanel=(42,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1420.42,1632.87) CenPtnInPanel=(42,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1405.5,1656.57) CenPtnInPanel=(70,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1420.42,1632.87) CenPtnInPanel=(70,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1405.5,1656.57) CenPtnInPanel=(98,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1420.42,1632.87) CenPtnInPanel=(98,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1405.5,1656.57) CenPtnInPanel=(126,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1420.42,1632.87) CenPtnInPanel=(126,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1405.5,1656.57) CenPtnInPanel=(154,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1420.42,1632.87) CenPtnInPanel=(154,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1405.5,1656.57) CenPtnInPanel=(182,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1420.42,1632.87) CenPtnInPanel=(182,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1405.5,1656.57) CenPtnInPanel=(210,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:099,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1420.42,1632.87) CenPtnInPanel=(210,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 100 { PMT Rich1 Bot } Module(Col:NInCol)=5:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1389.44,1682.08) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1404.36,1658.39) CenPtnInPanel=(238,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1389.44,1682.08) CenPtnInPanel=(266,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1404.36,1658.39) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1389.44,1682.08) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1404.36,1658.39) CenPtnInPanel=(294,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1389.44,1682.08) CenPtnInPanel=(322,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1404.36,1658.39) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1389.44,1682.08) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1404.36,1658.39) CenPtnInPanel=(350,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1389.44,1682.08) CenPtnInPanel=(378,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1404.36,1658.39) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1389.44,1682.08) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1404.36,1658.39) CenPtnInPanel=(406,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1389.44,1682.08) CenPtnInPanel=(434,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1404.36,1658.39) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1405.5,1656.57) CenPtnInPanel=(238,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1420.42,1632.87) CenPtnInPanel=(238,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1405.5,1656.57) CenPtnInPanel=(266,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1420.42,1632.87) CenPtnInPanel=(266,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,04 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1405.5,1656.57) CenPtnInPanel=(294,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,05 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1420.42,1632.87) CenPtnInPanel=(294,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,06 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1405.5,1656.57) CenPtnInPanel=(322,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,07 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1420.42,1632.87) CenPtnInPanel=(322,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,08 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1405.5,1656.57) CenPtnInPanel=(350,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,09 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1420.42,1632.87) CenPtnInPanel=(350,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,10 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1405.5,1656.57) CenPtnInPanel=(378,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,11 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1420.42,1632.87) CenPtnInPanel=(378,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,12 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1405.5,1656.57) CenPtnInPanel=(406,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,13 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1420.42,1632.87) CenPtnInPanel=(406,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,14 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1405.5,1656.57) CenPtnInPanel=(434,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:100,15 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1420.42,1632.87) CenPtnInPanel=(434,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 101 { PMT Rich1 Bot } Module(Col:NInCol)=5:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1389.44,1682.08) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1404.36,1658.39) CenPtnInPanel=(462,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1389.44,1682.08) CenPtnInPanel=(490,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1404.36,1658.39) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1389.44,1682.08) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,05 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1404.36,1658.39) CenPtnInPanel=(518,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1389.44,1682.08) CenPtnInPanel=(546,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1404.36,1658.39) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1389.44,1682.08) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1404.36,1658.39) CenPtnInPanel=(574,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1389.44,1682.08) CenPtnInPanel=(602,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1404.36,1658.39) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1405.5,1656.57) CenPtnInPanel=(462,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1420.42,1632.87) CenPtnInPanel=(462,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1405.5,1656.57) CenPtnInPanel=(490,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1420.42,1632.87) CenPtnInPanel=(490,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,04 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1405.5,1656.57) CenPtnInPanel=(518,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,05 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1420.42,1632.87) CenPtnInPanel=(518,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,06 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1405.5,1656.57) CenPtnInPanel=(546,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,07 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1420.42,1632.87) CenPtnInPanel=(546,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,08 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1405.5,1656.57) CenPtnInPanel=(574,14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,09 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1420.42,1632.87) CenPtnInPanel=(574,-14,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,10 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1405.5,1656.57) CenPtnInPanel=(602,14,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:101,11 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1420.42,1632.87) CenPtnInPanel=(602,-14,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 102 { PMT Rich1 Bot } Module(Col:NInCol)=6:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1359.33,1729.89) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,05 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1374.25,1706.2) CenPtnInPanel=(-602,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1359.33,1729.89) CenPtnInPanel=(-574,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1374.25,1706.2) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1359.33,1729.89) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,09 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1374.25,1706.2) CenPtnInPanel=(-546,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1359.33,1729.89) CenPtnInPanel=(-518,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1374.25,1706.2) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1359.33,1729.89) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,13 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1374.25,1706.2) CenPtnInPanel=(-490,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1359.33,1729.89) CenPtnInPanel=(-462,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1374.25,1706.2) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,04 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1375.39,1704.38) CenPtnInPanel=(-602,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,05 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1390.31,1680.68) CenPtnInPanel=(-602,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,06 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1375.39,1704.38) CenPtnInPanel=(-574,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,07 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1390.31,1680.68) CenPtnInPanel=(-574,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,08 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1375.39,1704.38) CenPtnInPanel=(-546,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,09 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1390.31,1680.68) CenPtnInPanel=(-546,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,10 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1375.39,1704.38) CenPtnInPanel=(-518,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,11 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1390.31,1680.68) CenPtnInPanel=(-518,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,12 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1375.39,1704.38) CenPtnInPanel=(-490,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,13 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1390.31,1680.68) CenPtnInPanel=(-490,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,14 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1375.39,1704.38) CenPtnInPanel=(-462,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:102,15 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1390.31,1680.68) CenPtnInPanel=(-462,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 103 { PMT Rich1 Bot } Module(Col:NInCol)=6:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1359.33,1729.89) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1374.25,1706.2) CenPtnInPanel=(-434,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1359.33,1729.89) CenPtnInPanel=(-406,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1374.25,1706.2) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1359.33,1729.89) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1374.25,1706.2) CenPtnInPanel=(-378,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1359.33,1729.89) CenPtnInPanel=(-350,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1374.25,1706.2) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1359.33,1729.89) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1374.25,1706.2) CenPtnInPanel=(-322,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1359.33,1729.89) CenPtnInPanel=(-294,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1374.25,1706.2) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1359.33,1729.89) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1374.25,1706.2) CenPtnInPanel=(-266,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1359.33,1729.89) CenPtnInPanel=(-238,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1374.25,1706.2) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1375.39,1704.38) CenPtnInPanel=(-434,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1390.31,1680.68) CenPtnInPanel=(-434,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1375.39,1704.38) CenPtnInPanel=(-406,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1390.31,1680.68) CenPtnInPanel=(-406,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,04 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1375.39,1704.38) CenPtnInPanel=(-378,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,05 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1390.31,1680.68) CenPtnInPanel=(-378,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,06 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1375.39,1704.38) CenPtnInPanel=(-350,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,07 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1390.31,1680.68) CenPtnInPanel=(-350,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,08 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1375.39,1704.38) CenPtnInPanel=(-322,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,09 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1390.31,1680.68) CenPtnInPanel=(-322,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,10 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1375.39,1704.38) CenPtnInPanel=(-294,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,11 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1390.31,1680.68) CenPtnInPanel=(-294,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,12 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1375.39,1704.38) CenPtnInPanel=(-266,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,13 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1390.31,1680.68) CenPtnInPanel=(-266,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,14 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1375.39,1704.38) CenPtnInPanel=(-238,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:103,15 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1390.31,1680.68) CenPtnInPanel=(-238,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 104 { PMT Rich1 Bot } Module(Col:NInCol)=6:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1359.33,1729.89) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1374.25,1706.2) CenPtnInPanel=(-210,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1359.33,1729.89) CenPtnInPanel=(-182,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1374.25,1706.2) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1359.33,1729.89) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1374.25,1706.2) CenPtnInPanel=(-154,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1359.33,1729.89) CenPtnInPanel=(-126,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1374.25,1706.2) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1359.33,1729.89) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1374.25,1706.2) CenPtnInPanel=(-98,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1359.33,1729.89) CenPtnInPanel=(-70,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1374.25,1706.2) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1359.33,1729.89) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1374.25,1706.2) CenPtnInPanel=(-42,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1359.33,1729.89) CenPtnInPanel=(-14,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1374.25,1706.2) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1375.39,1704.38) CenPtnInPanel=(-210,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1390.31,1680.68) CenPtnInPanel=(-210,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1375.39,1704.38) CenPtnInPanel=(-182,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1390.31,1680.68) CenPtnInPanel=(-182,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1375.39,1704.38) CenPtnInPanel=(-154,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1390.31,1680.68) CenPtnInPanel=(-154,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1375.39,1704.38) CenPtnInPanel=(-126,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1390.31,1680.68) CenPtnInPanel=(-126,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1375.39,1704.38) CenPtnInPanel=(-98,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1390.31,1680.68) CenPtnInPanel=(-98,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1375.39,1704.38) CenPtnInPanel=(-70,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1390.31,1680.68) CenPtnInPanel=(-70,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1375.39,1704.38) CenPtnInPanel=(-42,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1390.31,1680.68) CenPtnInPanel=(-42,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1375.39,1704.38) CenPtnInPanel=(-14,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:104,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1390.31,1680.68) CenPtnInPanel=(-14,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 105 { PMT Rich1 Bot } Module(Col:NInCol)=6:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1359.33,1729.89) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1374.25,1706.2) CenPtnInPanel=(14,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1359.33,1729.89) CenPtnInPanel=(42,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1374.25,1706.2) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1359.33,1729.89) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1374.25,1706.2) CenPtnInPanel=(70,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1359.33,1729.89) CenPtnInPanel=(98,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1374.25,1706.2) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1359.33,1729.89) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1374.25,1706.2) CenPtnInPanel=(126,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1359.33,1729.89) CenPtnInPanel=(154,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1374.25,1706.2) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1359.33,1729.89) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1374.25,1706.2) CenPtnInPanel=(182,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1359.33,1729.89) CenPtnInPanel=(210,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1374.25,1706.2) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1375.39,1704.38) CenPtnInPanel=(14,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1390.31,1680.68) CenPtnInPanel=(14,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1375.39,1704.38) CenPtnInPanel=(42,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1390.31,1680.68) CenPtnInPanel=(42,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1375.39,1704.38) CenPtnInPanel=(70,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1390.31,1680.68) CenPtnInPanel=(70,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1375.39,1704.38) CenPtnInPanel=(98,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1390.31,1680.68) CenPtnInPanel=(98,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1375.39,1704.38) CenPtnInPanel=(126,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1390.31,1680.68) CenPtnInPanel=(126,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1375.39,1704.38) CenPtnInPanel=(154,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1390.31,1680.68) CenPtnInPanel=(154,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1375.39,1704.38) CenPtnInPanel=(182,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1390.31,1680.68) CenPtnInPanel=(182,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1375.39,1704.38) CenPtnInPanel=(210,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:105,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1390.31,1680.68) CenPtnInPanel=(210,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 106 { PMT Rich1 Bot } Module(Col:NInCol)=6:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1359.33,1729.89) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1374.25,1706.2) CenPtnInPanel=(238,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1359.33,1729.89) CenPtnInPanel=(266,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1374.25,1706.2) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1359.33,1729.89) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1374.25,1706.2) CenPtnInPanel=(294,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1359.33,1729.89) CenPtnInPanel=(322,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1374.25,1706.2) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1359.33,1729.89) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1374.25,1706.2) CenPtnInPanel=(350,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1359.33,1729.89) CenPtnInPanel=(378,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1374.25,1706.2) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1359.33,1729.89) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1374.25,1706.2) CenPtnInPanel=(406,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1359.33,1729.89) CenPtnInPanel=(434,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1374.25,1706.2) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1375.39,1704.38) CenPtnInPanel=(238,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1390.31,1680.68) CenPtnInPanel=(238,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1375.39,1704.38) CenPtnInPanel=(266,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1390.31,1680.68) CenPtnInPanel=(266,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,04 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1375.39,1704.38) CenPtnInPanel=(294,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,05 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1390.31,1680.68) CenPtnInPanel=(294,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,06 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1375.39,1704.38) CenPtnInPanel=(322,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,07 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1390.31,1680.68) CenPtnInPanel=(322,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,08 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1375.39,1704.38) CenPtnInPanel=(350,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,09 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1390.31,1680.68) CenPtnInPanel=(350,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,10 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1375.39,1704.38) CenPtnInPanel=(378,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,11 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1390.31,1680.68) CenPtnInPanel=(378,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,12 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1375.39,1704.38) CenPtnInPanel=(406,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,13 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1390.31,1680.68) CenPtnInPanel=(406,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,14 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1375.39,1704.38) CenPtnInPanel=(434,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:106,15 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1390.31,1680.68) CenPtnInPanel=(434,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 107 { PMT Rich1 Bot } Module(Col:NInCol)=6:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1359.33,1729.89) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1374.25,1706.2) CenPtnInPanel=(462,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1359.33,1729.89) CenPtnInPanel=(490,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1374.25,1706.2) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1359.33,1729.89) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,05 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1374.25,1706.2) CenPtnInPanel=(518,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1359.33,1729.89) CenPtnInPanel=(546,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1374.25,1706.2) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1359.33,1729.89) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1374.25,1706.2) CenPtnInPanel=(574,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1359.33,1729.89) CenPtnInPanel=(602,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1374.25,1706.2) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1375.39,1704.38) CenPtnInPanel=(462,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1390.31,1680.68) CenPtnInPanel=(462,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1375.39,1704.38) CenPtnInPanel=(490,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1390.31,1680.68) CenPtnInPanel=(490,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,04 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1375.39,1704.38) CenPtnInPanel=(518,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,05 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1390.31,1680.68) CenPtnInPanel=(518,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,06 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1375.39,1704.38) CenPtnInPanel=(546,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,07 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1390.31,1680.68) CenPtnInPanel=(546,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,08 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1375.39,1704.38) CenPtnInPanel=(574,70.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,09 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1390.31,1680.68) CenPtnInPanel=(574,42.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,10 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1375.39,1704.38) CenPtnInPanel=(602,70.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:107,11 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1390.31,1680.68) CenPtnInPanel=(602,42.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 108 { PMT Rich1 Bot } Module(Col:NInCol)=7:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1329.22,1777.7) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1344.14,1754.01) CenPtnInPanel=(-602,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1329.22,1777.7) CenPtnInPanel=(-574,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1344.14,1754.01) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1329.22,1777.7) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1344.14,1754.01) CenPtnInPanel=(-546,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,10 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1329.22,1777.7) CenPtnInPanel=(-518,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1344.14,1754.01) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1329.22,1777.7) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1344.14,1754.01) CenPtnInPanel=(-490,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1329.22,1777.7) CenPtnInPanel=(-462,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1344.14,1754.01) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,04 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1345.29,1752.19) CenPtnInPanel=(-602,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,05 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1360.21,1728.49) CenPtnInPanel=(-602,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,06 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1345.29,1752.19) CenPtnInPanel=(-574,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,07 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1360.21,1728.49) CenPtnInPanel=(-574,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,08 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1345.29,1752.19) CenPtnInPanel=(-546,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,09 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1360.21,1728.49) CenPtnInPanel=(-546,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,10 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1345.29,1752.19) CenPtnInPanel=(-518,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,11 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1360.21,1728.49) CenPtnInPanel=(-518,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,12 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1345.29,1752.19) CenPtnInPanel=(-490,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,13 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1360.21,1728.49) CenPtnInPanel=(-490,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,14 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1345.29,1752.19) CenPtnInPanel=(-462,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:108,15 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1360.21,1728.49) CenPtnInPanel=(-462,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 109 { PMT Rich1 Bot } Module(Col:NInCol)=7:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1329.22,1777.7) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1344.14,1754.01) CenPtnInPanel=(-434,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1329.22,1777.7) CenPtnInPanel=(-406,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1344.14,1754.01) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1329.22,1777.7) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1344.14,1754.01) CenPtnInPanel=(-378,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1329.22,1777.7) CenPtnInPanel=(-350,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1344.14,1754.01) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1329.22,1777.7) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1344.14,1754.01) CenPtnInPanel=(-322,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1329.22,1777.7) CenPtnInPanel=(-294,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1344.14,1754.01) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1329.22,1777.7) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1344.14,1754.01) CenPtnInPanel=(-266,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1329.22,1777.7) CenPtnInPanel=(-238,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1344.14,1754.01) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1345.29,1752.19) CenPtnInPanel=(-434,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1360.21,1728.49) CenPtnInPanel=(-434,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1345.29,1752.19) CenPtnInPanel=(-406,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1360.21,1728.49) CenPtnInPanel=(-406,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,04 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1345.29,1752.19) CenPtnInPanel=(-378,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,05 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1360.21,1728.49) CenPtnInPanel=(-378,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,06 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1345.29,1752.19) CenPtnInPanel=(-350,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,07 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1360.21,1728.49) CenPtnInPanel=(-350,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,08 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1345.29,1752.19) CenPtnInPanel=(-322,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,09 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1360.21,1728.49) CenPtnInPanel=(-322,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,10 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1345.29,1752.19) CenPtnInPanel=(-294,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,11 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1360.21,1728.49) CenPtnInPanel=(-294,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,12 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1345.29,1752.19) CenPtnInPanel=(-266,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,13 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1360.21,1728.49) CenPtnInPanel=(-266,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,14 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1345.29,1752.19) CenPtnInPanel=(-238,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:109,15 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1360.21,1728.49) CenPtnInPanel=(-238,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 110 { PMT Rich1 Bot } Module(Col:NInCol)=7:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1329.22,1777.7) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1344.14,1754.01) CenPtnInPanel=(-210,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1329.22,1777.7) CenPtnInPanel=(-182,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1344.14,1754.01) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1329.22,1777.7) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1344.14,1754.01) CenPtnInPanel=(-154,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1329.22,1777.7) CenPtnInPanel=(-126,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1344.14,1754.01) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1329.22,1777.7) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1344.14,1754.01) CenPtnInPanel=(-98,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1329.22,1777.7) CenPtnInPanel=(-70,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1344.14,1754.01) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1329.22,1777.7) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1344.14,1754.01) CenPtnInPanel=(-42,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1329.22,1777.7) CenPtnInPanel=(-14,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1344.14,1754.01) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1345.29,1752.19) CenPtnInPanel=(-210,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1360.21,1728.49) CenPtnInPanel=(-210,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1345.29,1752.19) CenPtnInPanel=(-182,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1360.21,1728.49) CenPtnInPanel=(-182,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1345.29,1752.19) CenPtnInPanel=(-154,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1360.21,1728.49) CenPtnInPanel=(-154,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1345.29,1752.19) CenPtnInPanel=(-126,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1360.21,1728.49) CenPtnInPanel=(-126,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1345.29,1752.19) CenPtnInPanel=(-98,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1360.21,1728.49) CenPtnInPanel=(-98,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1345.29,1752.19) CenPtnInPanel=(-70,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1360.21,1728.49) CenPtnInPanel=(-70,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1345.29,1752.19) CenPtnInPanel=(-42,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1360.21,1728.49) CenPtnInPanel=(-42,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1345.29,1752.19) CenPtnInPanel=(-14,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:110,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1360.21,1728.49) CenPtnInPanel=(-14,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 111 { PMT Rich1 Bot } Module(Col:NInCol)=7:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1329.22,1777.7) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1344.14,1754.01) CenPtnInPanel=(14,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1329.22,1777.7) CenPtnInPanel=(42,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1344.14,1754.01) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1329.22,1777.7) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1344.14,1754.01) CenPtnInPanel=(70,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1329.22,1777.7) CenPtnInPanel=(98,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1344.14,1754.01) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1329.22,1777.7) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1344.14,1754.01) CenPtnInPanel=(126,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1329.22,1777.7) CenPtnInPanel=(154,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1344.14,1754.01) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1329.22,1777.7) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1344.14,1754.01) CenPtnInPanel=(182,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1329.22,1777.7) CenPtnInPanel=(210,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1344.14,1754.01) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1345.29,1752.19) CenPtnInPanel=(14,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1360.21,1728.49) CenPtnInPanel=(14,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1345.29,1752.19) CenPtnInPanel=(42,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1360.21,1728.49) CenPtnInPanel=(42,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1345.29,1752.19) CenPtnInPanel=(70,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1360.21,1728.49) CenPtnInPanel=(70,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1345.29,1752.19) CenPtnInPanel=(98,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1360.21,1728.49) CenPtnInPanel=(98,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1345.29,1752.19) CenPtnInPanel=(126,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1360.21,1728.49) CenPtnInPanel=(126,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1345.29,1752.19) CenPtnInPanel=(154,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1360.21,1728.49) CenPtnInPanel=(154,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1345.29,1752.19) CenPtnInPanel=(182,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1360.21,1728.49) CenPtnInPanel=(182,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1345.29,1752.19) CenPtnInPanel=(210,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:111,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1360.21,1728.49) CenPtnInPanel=(210,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 112 { PMT Rich1 Bot } Module(Col:NInCol)=7:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1329.22,1777.7) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1344.14,1754.01) CenPtnInPanel=(238,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1329.22,1777.7) CenPtnInPanel=(266,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1344.14,1754.01) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1329.22,1777.7) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1344.14,1754.01) CenPtnInPanel=(294,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1329.22,1777.7) CenPtnInPanel=(322,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1344.14,1754.01) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1329.22,1777.7) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1344.14,1754.01) CenPtnInPanel=(350,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1329.22,1777.7) CenPtnInPanel=(378,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1344.14,1754.01) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1329.22,1777.7) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1344.14,1754.01) CenPtnInPanel=(406,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1329.22,1777.7) CenPtnInPanel=(434,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1344.14,1754.01) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1345.29,1752.19) CenPtnInPanel=(238,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1360.21,1728.49) CenPtnInPanel=(238,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1345.29,1752.19) CenPtnInPanel=(266,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1360.21,1728.49) CenPtnInPanel=(266,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,04 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1345.29,1752.19) CenPtnInPanel=(294,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,05 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1360.21,1728.49) CenPtnInPanel=(294,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,06 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1345.29,1752.19) CenPtnInPanel=(322,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,07 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1360.21,1728.49) CenPtnInPanel=(322,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,08 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1345.29,1752.19) CenPtnInPanel=(350,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,09 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1360.21,1728.49) CenPtnInPanel=(350,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,10 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1345.29,1752.19) CenPtnInPanel=(378,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,11 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1360.21,1728.49) CenPtnInPanel=(378,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,12 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1345.29,1752.19) CenPtnInPanel=(406,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,13 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1360.21,1728.49) CenPtnInPanel=(406,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,14 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1345.29,1752.19) CenPtnInPanel=(434,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:112,15 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1360.21,1728.49) CenPtnInPanel=(434,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 113 { PMT Rich1 Bot } Module(Col:NInCol)=7:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1329.22,1777.7) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1344.14,1754.01) CenPtnInPanel=(462,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1329.22,1777.7) CenPtnInPanel=(490,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1344.14,1754.01) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1329.22,1777.7) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,05 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1344.14,1754.01) CenPtnInPanel=(518,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,06 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1329.22,1777.7) CenPtnInPanel=(546,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1344.14,1754.01) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1329.22,1777.7) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1344.14,1754.01) CenPtnInPanel=(574,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1329.22,1777.7) CenPtnInPanel=(602,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1344.14,1754.01) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1345.29,1752.19) CenPtnInPanel=(462,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1360.21,1728.49) CenPtnInPanel=(462,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1345.29,1752.19) CenPtnInPanel=(490,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1360.21,1728.49) CenPtnInPanel=(490,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,04 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1345.29,1752.19) CenPtnInPanel=(518,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,05 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1360.21,1728.49) CenPtnInPanel=(518,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,06 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1345.29,1752.19) CenPtnInPanel=(546,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,07 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1360.21,1728.49) CenPtnInPanel=(546,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,08 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1345.29,1752.19) CenPtnInPanel=(574,127,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,09 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1360.21,1728.49) CenPtnInPanel=(574,99,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,10 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1345.29,1752.19) CenPtnInPanel=(602,127,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:113,11 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1360.21,1728.49) CenPtnInPanel=(602,99,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 114 { PMT Rich1 Bot } Module(Col:NInCol)=8:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1299.11,1825.51) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,05 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1314.03,1801.82) CenPtnInPanel=(-602,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,06 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1299.11,1825.51) CenPtnInPanel=(-574,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1314.03,1801.82) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1299.11,1825.51) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1314.03,1801.82) CenPtnInPanel=(-546,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1299.11,1825.51) CenPtnInPanel=(-518,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1314.03,1801.82) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1299.11,1825.51) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1314.03,1801.82) CenPtnInPanel=(-490,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1299.11,1825.51) CenPtnInPanel=(-462,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1314.03,1801.82) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,04 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1315.18,1800) CenPtnInPanel=(-602,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,05 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1330.1,1776.3) CenPtnInPanel=(-602,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,06 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1315.18,1800) CenPtnInPanel=(-574,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,07 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1330.1,1776.3) CenPtnInPanel=(-574,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,08 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1315.18,1800) CenPtnInPanel=(-546,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,09 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1330.1,1776.3) CenPtnInPanel=(-546,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,10 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1315.18,1800) CenPtnInPanel=(-518,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,11 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1330.1,1776.3) CenPtnInPanel=(-518,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,12 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1315.18,1800) CenPtnInPanel=(-490,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,13 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1330.1,1776.3) CenPtnInPanel=(-490,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,14 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1315.18,1800) CenPtnInPanel=(-462,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:114,15 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1330.1,1776.3) CenPtnInPanel=(-462,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 115 { PMT Rich1 Bot } Module(Col:NInCol)=8:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1299.11,1825.51) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1314.03,1801.82) CenPtnInPanel=(-434,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1299.11,1825.51) CenPtnInPanel=(-406,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1314.03,1801.82) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1299.11,1825.51) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1314.03,1801.82) CenPtnInPanel=(-378,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1299.11,1825.51) CenPtnInPanel=(-350,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1314.03,1801.82) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1299.11,1825.51) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1314.03,1801.82) CenPtnInPanel=(-322,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1299.11,1825.51) CenPtnInPanel=(-294,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1314.03,1801.82) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1299.11,1825.51) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1314.03,1801.82) CenPtnInPanel=(-266,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1299.11,1825.51) CenPtnInPanel=(-238,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1314.03,1801.82) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1315.18,1800) CenPtnInPanel=(-434,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1330.1,1776.3) CenPtnInPanel=(-434,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1315.18,1800) CenPtnInPanel=(-406,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1330.1,1776.3) CenPtnInPanel=(-406,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,04 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1315.18,1800) CenPtnInPanel=(-378,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,05 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1330.1,1776.3) CenPtnInPanel=(-378,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,06 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1315.18,1800) CenPtnInPanel=(-350,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,07 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1330.1,1776.3) CenPtnInPanel=(-350,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,08 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1315.18,1800) CenPtnInPanel=(-322,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,09 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1330.1,1776.3) CenPtnInPanel=(-322,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,10 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1315.18,1800) CenPtnInPanel=(-294,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,11 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1330.1,1776.3) CenPtnInPanel=(-294,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,12 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1315.18,1800) CenPtnInPanel=(-266,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,13 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1330.1,1776.3) CenPtnInPanel=(-266,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,14 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1315.18,1800) CenPtnInPanel=(-238,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:115,15 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1330.1,1776.3) CenPtnInPanel=(-238,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 116 { PMT Rich1 Bot } Module(Col:NInCol)=8:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1299.11,1825.51) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1314.03,1801.82) CenPtnInPanel=(-210,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1299.11,1825.51) CenPtnInPanel=(-182,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1314.03,1801.82) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1299.11,1825.51) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1314.03,1801.82) CenPtnInPanel=(-154,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1299.11,1825.51) CenPtnInPanel=(-126,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1314.03,1801.82) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1299.11,1825.51) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1314.03,1801.82) CenPtnInPanel=(-98,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1299.11,1825.51) CenPtnInPanel=(-70,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1314.03,1801.82) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1299.11,1825.51) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1314.03,1801.82) CenPtnInPanel=(-42,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1299.11,1825.51) CenPtnInPanel=(-14,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1314.03,1801.82) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1315.18,1800) CenPtnInPanel=(-210,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1330.1,1776.3) CenPtnInPanel=(-210,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1315.18,1800) CenPtnInPanel=(-182,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1330.1,1776.3) CenPtnInPanel=(-182,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1315.18,1800) CenPtnInPanel=(-154,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1330.1,1776.3) CenPtnInPanel=(-154,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1315.18,1800) CenPtnInPanel=(-126,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1330.1,1776.3) CenPtnInPanel=(-126,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1315.18,1800) CenPtnInPanel=(-98,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1330.1,1776.3) CenPtnInPanel=(-98,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1315.18,1800) CenPtnInPanel=(-70,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1330.1,1776.3) CenPtnInPanel=(-70,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1315.18,1800) CenPtnInPanel=(-42,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1330.1,1776.3) CenPtnInPanel=(-42,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1315.18,1800) CenPtnInPanel=(-14,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:116,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1330.1,1776.3) CenPtnInPanel=(-14,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 117 { PMT Rich1 Bot } Module(Col:NInCol)=8:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1299.11,1825.51) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1314.03,1801.82) CenPtnInPanel=(14,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1299.11,1825.51) CenPtnInPanel=(42,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1314.03,1801.82) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1299.11,1825.51) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1314.03,1801.82) CenPtnInPanel=(70,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1299.11,1825.51) CenPtnInPanel=(98,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1314.03,1801.82) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1299.11,1825.51) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1314.03,1801.82) CenPtnInPanel=(126,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1299.11,1825.51) CenPtnInPanel=(154,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1314.03,1801.82) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1299.11,1825.51) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1314.03,1801.82) CenPtnInPanel=(182,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1299.11,1825.51) CenPtnInPanel=(210,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1314.03,1801.82) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1315.18,1800) CenPtnInPanel=(14,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1330.1,1776.3) CenPtnInPanel=(14,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1315.18,1800) CenPtnInPanel=(42,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1330.1,1776.3) CenPtnInPanel=(42,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1315.18,1800) CenPtnInPanel=(70,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1330.1,1776.3) CenPtnInPanel=(70,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1315.18,1800) CenPtnInPanel=(98,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1330.1,1776.3) CenPtnInPanel=(98,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1315.18,1800) CenPtnInPanel=(126,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1330.1,1776.3) CenPtnInPanel=(126,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1315.18,1800) CenPtnInPanel=(154,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1330.1,1776.3) CenPtnInPanel=(154,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1315.18,1800) CenPtnInPanel=(182,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1330.1,1776.3) CenPtnInPanel=(182,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1315.18,1800) CenPtnInPanel=(210,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:117,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1330.1,1776.3) CenPtnInPanel=(210,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 118 { PMT Rich1 Bot } Module(Col:NInCol)=8:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1299.11,1825.51) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1314.03,1801.82) CenPtnInPanel=(238,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1299.11,1825.51) CenPtnInPanel=(266,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1314.03,1801.82) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1299.11,1825.51) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1314.03,1801.82) CenPtnInPanel=(294,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1299.11,1825.51) CenPtnInPanel=(322,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1314.03,1801.82) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1299.11,1825.51) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1314.03,1801.82) CenPtnInPanel=(350,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1299.11,1825.51) CenPtnInPanel=(378,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1314.03,1801.82) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1299.11,1825.51) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1314.03,1801.82) CenPtnInPanel=(406,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1299.11,1825.51) CenPtnInPanel=(434,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1314.03,1801.82) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1315.18,1800) CenPtnInPanel=(238,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1330.1,1776.3) CenPtnInPanel=(238,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1315.18,1800) CenPtnInPanel=(266,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1330.1,1776.3) CenPtnInPanel=(266,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,04 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1315.18,1800) CenPtnInPanel=(294,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,05 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1330.1,1776.3) CenPtnInPanel=(294,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,06 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1315.18,1800) CenPtnInPanel=(322,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,07 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1330.1,1776.3) CenPtnInPanel=(322,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,08 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1315.18,1800) CenPtnInPanel=(350,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,09 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1330.1,1776.3) CenPtnInPanel=(350,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,10 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1315.18,1800) CenPtnInPanel=(378,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,11 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1330.1,1776.3) CenPtnInPanel=(378,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,12 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1315.18,1800) CenPtnInPanel=(406,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,13 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1330.1,1776.3) CenPtnInPanel=(406,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,14 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1315.18,1800) CenPtnInPanel=(434,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:118,15 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1330.1,1776.3) CenPtnInPanel=(434,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 119 { PMT Rich1 Bot } Module(Col:NInCol)=8:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1299.11,1825.51) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1314.03,1801.82) CenPtnInPanel=(462,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1299.11,1825.51) CenPtnInPanel=(490,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1314.03,1801.82) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1299.11,1825.51) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1314.03,1801.82) CenPtnInPanel=(518,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1299.11,1825.51) CenPtnInPanel=(546,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1314.03,1801.82) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1299.11,1825.51) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1314.03,1801.82) CenPtnInPanel=(574,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1299.11,1825.51) CenPtnInPanel=(602,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1314.03,1801.82) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1315.18,1800) CenPtnInPanel=(462,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1330.1,1776.3) CenPtnInPanel=(462,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1315.18,1800) CenPtnInPanel=(490,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1330.1,1776.3) CenPtnInPanel=(490,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,04 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1315.18,1800) CenPtnInPanel=(518,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,05 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1330.1,1776.3) CenPtnInPanel=(518,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,06 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1315.18,1800) CenPtnInPanel=(546,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,07 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1330.1,1776.3) CenPtnInPanel=(546,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,08 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1315.18,1800) CenPtnInPanel=(574,183.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,09 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1330.1,1776.3) CenPtnInPanel=(574,155.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,10 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1315.18,1800) CenPtnInPanel=(602,183.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:119,11 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1330.1,1776.3) CenPtnInPanel=(602,155.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 120 { PMT Rich1 Bot } Module(Col:NInCol)=9:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1269.01,1873.32) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1283.93,1849.63) CenPtnInPanel=(-602,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1269.01,1873.32) CenPtnInPanel=(-574,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1283.93,1849.63) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1269.01,1873.32) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1283.93,1849.63) CenPtnInPanel=(-546,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1269.01,1873.32) CenPtnInPanel=(-518,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1283.93,1849.63) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1269.01,1873.32) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1283.93,1849.63) CenPtnInPanel=(-490,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1269.01,1873.32) CenPtnInPanel=(-462,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1283.93,1849.63) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,04 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1285.07,1847.81) CenPtnInPanel=(-602,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,05 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1299.99,1824.11) CenPtnInPanel=(-602,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,06 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1285.07,1847.81) CenPtnInPanel=(-574,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,07 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1299.99,1824.11) CenPtnInPanel=(-574,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,08 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1285.07,1847.81) CenPtnInPanel=(-546,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,09 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1299.99,1824.11) CenPtnInPanel=(-546,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,10 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1285.07,1847.81) CenPtnInPanel=(-518,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,11 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1299.99,1824.11) CenPtnInPanel=(-518,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,12 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1285.07,1847.81) CenPtnInPanel=(-490,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,13 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1299.99,1824.11) CenPtnInPanel=(-490,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,14 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1285.07,1847.81) CenPtnInPanel=(-462,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:120,15 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1299.99,1824.11) CenPtnInPanel=(-462,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 121 { PMT Rich1 Bot } Module(Col:NInCol)=9:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1269.01,1873.32) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1283.93,1849.63) CenPtnInPanel=(-434,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1269.01,1873.32) CenPtnInPanel=(-406,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1283.93,1849.63) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1269.01,1873.32) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1283.93,1849.63) CenPtnInPanel=(-378,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1269.01,1873.32) CenPtnInPanel=(-350,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1283.93,1849.63) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1269.01,1873.32) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1283.93,1849.63) CenPtnInPanel=(-322,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1269.01,1873.32) CenPtnInPanel=(-294,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1283.93,1849.63) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1269.01,1873.32) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1283.93,1849.63) CenPtnInPanel=(-266,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1269.01,1873.32) CenPtnInPanel=(-238,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1283.93,1849.63) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1285.07,1847.81) CenPtnInPanel=(-434,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1299.99,1824.11) CenPtnInPanel=(-434,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1285.07,1847.81) CenPtnInPanel=(-406,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1299.99,1824.11) CenPtnInPanel=(-406,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,04 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1285.07,1847.81) CenPtnInPanel=(-378,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,05 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1299.99,1824.11) CenPtnInPanel=(-378,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,06 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1285.07,1847.81) CenPtnInPanel=(-350,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,07 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1299.99,1824.11) CenPtnInPanel=(-350,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,08 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1285.07,1847.81) CenPtnInPanel=(-322,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,09 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1299.99,1824.11) CenPtnInPanel=(-322,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,10 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1285.07,1847.81) CenPtnInPanel=(-294,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,11 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1299.99,1824.11) CenPtnInPanel=(-294,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,12 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1285.07,1847.81) CenPtnInPanel=(-266,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,13 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1299.99,1824.11) CenPtnInPanel=(-266,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,14 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1285.07,1847.81) CenPtnInPanel=(-238,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:121,15 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1299.99,1824.11) CenPtnInPanel=(-238,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 122 { PMT Rich1 Bot } Module(Col:NInCol)=9:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1269.01,1873.32) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1283.93,1849.63) CenPtnInPanel=(-210,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1269.01,1873.32) CenPtnInPanel=(-182,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1283.93,1849.63) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1269.01,1873.32) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1283.93,1849.63) CenPtnInPanel=(-154,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1269.01,1873.32) CenPtnInPanel=(-126,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1283.93,1849.63) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1269.01,1873.32) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1283.93,1849.63) CenPtnInPanel=(-98,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1269.01,1873.32) CenPtnInPanel=(-70,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1283.93,1849.63) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1269.01,1873.32) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1283.93,1849.63) CenPtnInPanel=(-42,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1269.01,1873.32) CenPtnInPanel=(-14,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1283.93,1849.63) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1285.07,1847.81) CenPtnInPanel=(-210,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1299.99,1824.11) CenPtnInPanel=(-210,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1285.07,1847.81) CenPtnInPanel=(-182,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1299.99,1824.11) CenPtnInPanel=(-182,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1285.07,1847.81) CenPtnInPanel=(-154,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1299.99,1824.11) CenPtnInPanel=(-154,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1285.07,1847.81) CenPtnInPanel=(-126,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1299.99,1824.11) CenPtnInPanel=(-126,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1285.07,1847.81) CenPtnInPanel=(-98,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1299.99,1824.11) CenPtnInPanel=(-98,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1285.07,1847.81) CenPtnInPanel=(-70,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1299.99,1824.11) CenPtnInPanel=(-70,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1285.07,1847.81) CenPtnInPanel=(-42,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1299.99,1824.11) CenPtnInPanel=(-42,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1285.07,1847.81) CenPtnInPanel=(-14,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:122,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1299.99,1824.11) CenPtnInPanel=(-14,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 123 { PMT Rich1 Bot } Module(Col:NInCol)=9:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1269.01,1873.32) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1283.93,1849.63) CenPtnInPanel=(14,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1269.01,1873.32) CenPtnInPanel=(42,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1283.93,1849.63) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1269.01,1873.32) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1283.93,1849.63) CenPtnInPanel=(70,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1269.01,1873.32) CenPtnInPanel=(98,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1283.93,1849.63) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1269.01,1873.32) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1283.93,1849.63) CenPtnInPanel=(126,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1269.01,1873.32) CenPtnInPanel=(154,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1283.93,1849.63) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1269.01,1873.32) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1283.93,1849.63) CenPtnInPanel=(182,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1269.01,1873.32) CenPtnInPanel=(210,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1283.93,1849.63) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1285.07,1847.81) CenPtnInPanel=(14,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1299.99,1824.11) CenPtnInPanel=(14,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1285.07,1847.81) CenPtnInPanel=(42,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1299.99,1824.11) CenPtnInPanel=(42,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1285.07,1847.81) CenPtnInPanel=(70,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1299.99,1824.11) CenPtnInPanel=(70,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1285.07,1847.81) CenPtnInPanel=(98,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1299.99,1824.11) CenPtnInPanel=(98,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1285.07,1847.81) CenPtnInPanel=(126,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1299.99,1824.11) CenPtnInPanel=(126,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1285.07,1847.81) CenPtnInPanel=(154,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1299.99,1824.11) CenPtnInPanel=(154,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1285.07,1847.81) CenPtnInPanel=(182,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1299.99,1824.11) CenPtnInPanel=(182,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1285.07,1847.81) CenPtnInPanel=(210,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:123,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1299.99,1824.11) CenPtnInPanel=(210,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 124 { PMT Rich1 Bot } Module(Col:NInCol)=9:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1269.01,1873.32) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1283.93,1849.63) CenPtnInPanel=(238,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1269.01,1873.32) CenPtnInPanel=(266,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1283.93,1849.63) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1269.01,1873.32) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1283.93,1849.63) CenPtnInPanel=(294,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1269.01,1873.32) CenPtnInPanel=(322,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1283.93,1849.63) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1269.01,1873.32) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1283.93,1849.63) CenPtnInPanel=(350,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1269.01,1873.32) CenPtnInPanel=(378,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1283.93,1849.63) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1269.01,1873.32) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1283.93,1849.63) CenPtnInPanel=(406,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1269.01,1873.32) CenPtnInPanel=(434,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1283.93,1849.63) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1285.07,1847.81) CenPtnInPanel=(238,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1299.99,1824.11) CenPtnInPanel=(238,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1285.07,1847.81) CenPtnInPanel=(266,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1299.99,1824.11) CenPtnInPanel=(266,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,04 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1285.07,1847.81) CenPtnInPanel=(294,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,05 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1299.99,1824.11) CenPtnInPanel=(294,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,06 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1285.07,1847.81) CenPtnInPanel=(322,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,07 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1299.99,1824.11) CenPtnInPanel=(322,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,08 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1285.07,1847.81) CenPtnInPanel=(350,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,09 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1299.99,1824.11) CenPtnInPanel=(350,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,10 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1285.07,1847.81) CenPtnInPanel=(378,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,11 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1299.99,1824.11) CenPtnInPanel=(378,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,12 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1285.07,1847.81) CenPtnInPanel=(406,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,13 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1299.99,1824.11) CenPtnInPanel=(406,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,14 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1285.07,1847.81) CenPtnInPanel=(434,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:124,15 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1299.99,1824.11) CenPtnInPanel=(434,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 125 { PMT Rich1 Bot } Module(Col:NInCol)=9:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1269.01,1873.32) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1283.93,1849.63) CenPtnInPanel=(462,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1269.01,1873.32) CenPtnInPanel=(490,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1283.93,1849.63) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1269.01,1873.32) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1283.93,1849.63) CenPtnInPanel=(518,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1269.01,1873.32) CenPtnInPanel=(546,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1283.93,1849.63) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1269.01,1873.32) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1283.93,1849.63) CenPtnInPanel=(574,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1269.01,1873.32) CenPtnInPanel=(602,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1283.93,1849.63) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1285.07,1847.81) CenPtnInPanel=(462,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1299.99,1824.11) CenPtnInPanel=(462,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1285.07,1847.81) CenPtnInPanel=(490,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1299.99,1824.11) CenPtnInPanel=(490,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,04 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1285.07,1847.81) CenPtnInPanel=(518,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,05 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1299.99,1824.11) CenPtnInPanel=(518,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,06 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1285.07,1847.81) CenPtnInPanel=(546,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,07 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1299.99,1824.11) CenPtnInPanel=(546,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,08 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1285.07,1847.81) CenPtnInPanel=(574,240,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,09 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1299.99,1824.11) CenPtnInPanel=(574,212,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,10 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1285.07,1847.81) CenPtnInPanel=(602,240,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:125,11 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1299.99,1824.11) CenPtnInPanel=(602,212,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 126 { PMT Rich1 Bot } Module(Col:NInCol)=10:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1238.9,1921.13) CenPtnInPanel=(-602,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-602,-1253.82,1897.44) CenPtnInPanel=(-602,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,06 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1238.9,1921.13) CenPtnInPanel=(-574,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-574,-1253.82,1897.44) CenPtnInPanel=(-574,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1238.9,1921.13) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-546,-1253.82,1897.44) CenPtnInPanel=(-546,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,10 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1238.9,1921.13) CenPtnInPanel=(-518,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-518,-1253.82,1897.44) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1238.9,1921.13) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-490,-1253.82,1897.44) CenPtnInPanel=(-490,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1238.9,1921.13) CenPtnInPanel=(-462,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-462,-1253.82,1897.44) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,04 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1254.96,1895.62) CenPtnInPanel=(-602,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,05 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-602,-1269.88,1871.92) CenPtnInPanel=(-602,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,06 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1254.96,1895.62) CenPtnInPanel=(-574,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,07 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-574,-1269.88,1871.92) CenPtnInPanel=(-574,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,08 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1254.96,1895.62) CenPtnInPanel=(-546,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,09 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-546,-1269.88,1871.92) CenPtnInPanel=(-546,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,10 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1254.96,1895.62) CenPtnInPanel=(-518,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,11 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-518,-1269.88,1871.92) CenPtnInPanel=(-518,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,12 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1254.96,1895.62) CenPtnInPanel=(-490,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,13 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-490,-1269.88,1871.92) CenPtnInPanel=(-490,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,14 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1254.96,1895.62) CenPtnInPanel=(-462,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:126,15 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-462,-1269.88,1871.92) CenPtnInPanel=(-462,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 127 { PMT Rich1 Bot } Module(Col:NInCol)=10:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1238.9,1921.13) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-434,-1253.82,1897.44) CenPtnInPanel=(-434,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1238.9,1921.13) CenPtnInPanel=(-406,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-406,-1253.82,1897.44) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1238.9,1921.13) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-378,-1253.82,1897.44) CenPtnInPanel=(-378,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1238.9,1921.13) CenPtnInPanel=(-350,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-350,-1253.82,1897.44) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1238.9,1921.13) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-322,-1253.82,1897.44) CenPtnInPanel=(-322,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1238.9,1921.13) CenPtnInPanel=(-294,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-294,-1253.82,1897.44) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1238.9,1921.13) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-266,-1253.82,1897.44) CenPtnInPanel=(-266,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1238.9,1921.13) CenPtnInPanel=(-238,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-238,-1253.82,1897.44) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1254.96,1895.62) CenPtnInPanel=(-434,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-434,-1269.88,1871.92) CenPtnInPanel=(-434,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1254.96,1895.62) CenPtnInPanel=(-406,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-406,-1269.88,1871.92) CenPtnInPanel=(-406,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,04 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1254.96,1895.62) CenPtnInPanel=(-378,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,05 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-378,-1269.88,1871.92) CenPtnInPanel=(-378,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,06 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1254.96,1895.62) CenPtnInPanel=(-350,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,07 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-350,-1269.88,1871.92) CenPtnInPanel=(-350,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,08 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1254.96,1895.62) CenPtnInPanel=(-322,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,09 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-322,-1269.88,1871.92) CenPtnInPanel=(-322,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,10 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1254.96,1895.62) CenPtnInPanel=(-294,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,11 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-294,-1269.88,1871.92) CenPtnInPanel=(-294,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,12 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1254.96,1895.62) CenPtnInPanel=(-266,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,13 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-266,-1269.88,1871.92) CenPtnInPanel=(-266,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,14 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1254.96,1895.62) CenPtnInPanel=(-238,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:127,15 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-238,-1269.88,1871.92) CenPtnInPanel=(-238,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 128 { PMT Rich1 Bot } Module(Col:NInCol)=10:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1238.9,1921.13) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-210,-1253.82,1897.44) CenPtnInPanel=(-210,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1238.9,1921.13) CenPtnInPanel=(-182,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-182,-1253.82,1897.44) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1238.9,1921.13) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-154,-1253.82,1897.44) CenPtnInPanel=(-154,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1238.9,1921.13) CenPtnInPanel=(-126,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-126,-1253.82,1897.44) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1238.9,1921.13) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-98,-1253.82,1897.44) CenPtnInPanel=(-98,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1238.9,1921.13) CenPtnInPanel=(-70,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-70,-1253.82,1897.44) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1238.9,1921.13) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-42,-1253.82,1897.44) CenPtnInPanel=(-42,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1238.9,1921.13) CenPtnInPanel=(-14,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-14,-1253.82,1897.44) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1254.96,1895.62) CenPtnInPanel=(-210,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-210,-1269.88,1871.92) CenPtnInPanel=(-210,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1254.96,1895.62) CenPtnInPanel=(-182,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-182,-1269.88,1871.92) CenPtnInPanel=(-182,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1254.96,1895.62) CenPtnInPanel=(-154,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-154,-1269.88,1871.92) CenPtnInPanel=(-154,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1254.96,1895.62) CenPtnInPanel=(-126,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-126,-1269.88,1871.92) CenPtnInPanel=(-126,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1254.96,1895.62) CenPtnInPanel=(-98,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-98,-1269.88,1871.92) CenPtnInPanel=(-98,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1254.96,1895.62) CenPtnInPanel=(-70,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-70,-1269.88,1871.92) CenPtnInPanel=(-70,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1254.96,1895.62) CenPtnInPanel=(-42,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-42,-1269.88,1871.92) CenPtnInPanel=(-42,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1254.96,1895.62) CenPtnInPanel=(-14,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:128,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-14,-1269.88,1871.92) CenPtnInPanel=(-14,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 129 { PMT Rich1 Bot } Module(Col:NInCol)=10:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1238.9,1921.13) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(14,-1253.82,1897.44) CenPtnInPanel=(14,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1238.9,1921.13) CenPtnInPanel=(42,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(42,-1253.82,1897.44) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1238.9,1921.13) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(70,-1253.82,1897.44) CenPtnInPanel=(70,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1238.9,1921.13) CenPtnInPanel=(98,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(98,-1253.82,1897.44) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1238.9,1921.13) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(126,-1253.82,1897.44) CenPtnInPanel=(126,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1238.9,1921.13) CenPtnInPanel=(154,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(154,-1253.82,1897.44) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1238.9,1921.13) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(182,-1253.82,1897.44) CenPtnInPanel=(182,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1238.9,1921.13) CenPtnInPanel=(210,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(210,-1253.82,1897.44) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1254.96,1895.62) CenPtnInPanel=(14,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(14,-1269.88,1871.92) CenPtnInPanel=(14,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1254.96,1895.62) CenPtnInPanel=(42,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(42,-1269.88,1871.92) CenPtnInPanel=(42,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1254.96,1895.62) CenPtnInPanel=(70,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(70,-1269.88,1871.92) CenPtnInPanel=(70,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1254.96,1895.62) CenPtnInPanel=(98,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(98,-1269.88,1871.92) CenPtnInPanel=(98,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1254.96,1895.62) CenPtnInPanel=(126,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(126,-1269.88,1871.92) CenPtnInPanel=(126,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1254.96,1895.62) CenPtnInPanel=(154,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(154,-1269.88,1871.92) CenPtnInPanel=(154,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1254.96,1895.62) CenPtnInPanel=(182,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(182,-1269.88,1871.92) CenPtnInPanel=(182,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1254.96,1895.62) CenPtnInPanel=(210,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:129,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(210,-1269.88,1871.92) CenPtnInPanel=(210,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 130 { PMT Rich1 Bot } Module(Col:NInCol)=10:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1238.9,1921.13) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(238,-1253.82,1897.44) CenPtnInPanel=(238,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1238.9,1921.13) CenPtnInPanel=(266,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(266,-1253.82,1897.44) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1238.9,1921.13) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(294,-1253.82,1897.44) CenPtnInPanel=(294,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1238.9,1921.13) CenPtnInPanel=(322,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(322,-1253.82,1897.44) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1238.9,1921.13) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(350,-1253.82,1897.44) CenPtnInPanel=(350,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1238.9,1921.13) CenPtnInPanel=(378,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(378,-1253.82,1897.44) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1238.9,1921.13) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(406,-1253.82,1897.44) CenPtnInPanel=(406,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1238.9,1921.13) CenPtnInPanel=(434,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(434,-1253.82,1897.44) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1254.96,1895.62) CenPtnInPanel=(238,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(238,-1269.88,1871.92) CenPtnInPanel=(238,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1254.96,1895.62) CenPtnInPanel=(266,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(266,-1269.88,1871.92) CenPtnInPanel=(266,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,04 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1254.96,1895.62) CenPtnInPanel=(294,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,05 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(294,-1269.88,1871.92) CenPtnInPanel=(294,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,06 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1254.96,1895.62) CenPtnInPanel=(322,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,07 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(322,-1269.88,1871.92) CenPtnInPanel=(322,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,08 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1254.96,1895.62) CenPtnInPanel=(350,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,09 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(350,-1269.88,1871.92) CenPtnInPanel=(350,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,10 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1254.96,1895.62) CenPtnInPanel=(378,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,11 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(378,-1269.88,1871.92) CenPtnInPanel=(378,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,12 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1254.96,1895.62) CenPtnInPanel=(406,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,13 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(406,-1269.88,1871.92) CenPtnInPanel=(406,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,14 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1254.96,1895.62) CenPtnInPanel=(434,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:130,15 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(434,-1269.88,1871.92) CenPtnInPanel=(434,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 131 { PMT Rich1 Bot } Module(Col:NInCol)=10:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1238.9,1921.13) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(462,-1253.82,1897.44) CenPtnInPanel=(462,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1238.9,1921.13) CenPtnInPanel=(490,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(490,-1253.82,1897.44) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1238.9,1921.13) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,05 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(518,-1253.82,1897.44) CenPtnInPanel=(518,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1238.9,1921.13) CenPtnInPanel=(546,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(546,-1253.82,1897.44) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1238.9,1921.13) CenPtnInPanel=(574,296.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,09 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(574,-1253.82,1897.44) CenPtnInPanel=(574,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1238.9,1921.13) CenPtnInPanel=(602,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(602,-1253.82,1897.44) CenPtnInPanel=(602,268.5,-34) (x,y,z)RotnInGlo=(-nan,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1254.96,1895.62) CenPtnInPanel=(462,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(462,-1269.88,1871.92) CenPtnInPanel=(462,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1254.96,1895.62) CenPtnInPanel=(490,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(490,-1269.88,1871.92) CenPtnInPanel=(490,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,04 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1254.96,1895.62) CenPtnInPanel=(518,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,05 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(518,-1269.88,1871.92) CenPtnInPanel=(518,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,06 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1254.96,1895.62) CenPtnInPanel=(546,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,07 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(546,-1269.88,1871.92) CenPtnInPanel=(546,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,08 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1254.96,1895.62) CenPtnInPanel=(574,296.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,09 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(574,-1269.88,1871.92) CenPtnInPanel=(574,268.5,-34) (x,y,z)RotnInGlo=(2.13279,0,0) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,10 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1254.96,1895.62) CenPtnInPanel=(602,296.5,-34) (x,y,z)RotnInGlo=(1.0088,3.14159,3.14159) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich1 Bot PD[Mod,NInMod]:131,11 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(602,-1269.88,1871.92) CenPtnInPanel=(602,268.5,-34) (x,y,z)RotnInGlo=(0,1.5708,1.5708) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG  { BeamPipe | StartZ=1080 EndZ=2210 StartR=28 EndR=56.21 }
 TestDerivedDets     DEBUG  Parameter<double>         'SellC4F10F1Param' = 12305.3
 TestDerivedDets     DEBUG  Parameter<double>         'SellC4F10F2Param' = 0
 TestDerivedDets     DEBUG  Parameter<double>         'SellC4F10E1Param' = 18.938
@@ -2289,1347 +2282,1347 @@ TestDerivedDets     DEBUG  -> [ Num=37 RoC=81540 CoC=(-17233.3,528.774,89843.6)
 TestDerivedDets     DEBUG  -> [ Num=38 RoC=70736 CoC=(-14841.2,559.792,79299.7) CentrePnt=(-1837.95,764.255,9769.49) CentreNorm=(-0.183829,-0.0028905,0.982954) Refl={ NumBins=643 Min(X,Y)=(1.24313e-06,0.8) Median(X,Y)=(6.83719e-06,0) Max(X,Y)=(1.24313e-05,0) } ]
 TestDerivedDets     DEBUG  -> [ Num=39 RoC=84409 CoC=(-16948.8,520.06,92815.6) CentrePnt=(-1431.99,764.044,9845.41) CentreNorm=(-0.183829,-0.0028905,0.982954) Refl={ NumBins=643 Min(X,Y)=(1.24313e-06,0.8) Median(X,Y)=(6.83719e-06,0) Max(X,Y)=(1.24313e-05,0) } ]
 TestDerivedDets     DEBUG  2 PD Panels :-
-TestDerivedDets     DEBUG  -> [ Rich2 ASide-left NumPDModules=92 ModNumOffset=138 ZShift=-36.2 CentrePtnInGlo=(3699.6,-1.03286,11108.1) (x,y)HalfSizes=+-(400,739.375)  DetectionPlane=[ -0.874847 0.00139547 -0.484397 8617.32 ]
+TestDerivedDets     DEBUG  -> [ Rich2 ASide-left NumPDModules=92 ModNumOffset=138 ZShift=-36.2 CentrePtnInGlo=(3725.6,-0.875324,11051.3) (x,y)HalfSizes=+-(339,672)  DetectionPlane=[ -0.874847 0.00139547 -0.484397 8612.54 ]
 TestDerivedDets     DEBUG   PDPanelToGlo=
-TestDerivedDets     DEBUG [ 0.484399 -3e-05 0.874847 3699.6
-TestDerivedDets     DEBUG   0.00258221 0.999996 -0.00139547 -1.03286
-TestDerivedDets     DEBUG   -0.874843 0.002935 0.484397 11108.1 ]
+TestDerivedDets     DEBUG [ 0.484399 -3e-05 0.874847 3725.6
+TestDerivedDets     DEBUG   0.00258221 0.999996 -0.00139547 -0.875324
+TestDerivedDets     DEBUG   -0.874843 0.002935 0.484397 11051.3 ]
 TestDerivedDets     DEBUG   GloToPDPanel=
-TestDerivedDets     DEBUG [ 0.484399 0.00258221 -0.874843 7925.78
-TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -31.4585
-TestDerivedDets     DEBUG   0.874847 -0.00139547 0.484397 -8617.32 ]
+TestDerivedDets     DEBUG [ 0.484399 0.00258221 -0.874843 7863.46
+TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -31.4484
+TestDerivedDets     DEBUG   0.874847 -0.00139547 0.484397 -8612.54 ]
 TestDerivedDets     DEBUG   GloToLoc=
-TestDerivedDets     DEBUG [ 0.484399 0.00258221 -0.874843 7525.78
-TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -36.9799
-TestDerivedDets     DEBUG   0.874847 -0.00139547 0.484397 -8653.52 ]
+TestDerivedDets     DEBUG [ 0.484399 0.00258221 -0.874843 7524.46
+TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -41.7199
+TestDerivedDets     DEBUG   0.874847 -0.00139547 0.484397 -8648.74 ]
 TestDerivedDets     DEBUG   LocToGlo=
-TestDerivedDets     DEBUG [ 0.484399 -3e-05 0.874847 3925.03
-TestDerivedDets     DEBUG   0.00258221 0.999996 -0.00139547 5.47089
-TestDerivedDets     DEBUG   -0.874843 0.002935 0.484397 10775.7 ]
+TestDerivedDets     DEBUG [ 0.484399 -3e-05 0.874847 3921.48
+TestDerivedDets     DEBUG   0.00258221 0.999996 -0.00139547 10.2209
+TestDerivedDets     DEBUG   -0.874843 0.002935 0.484397 10772.3 ]
 TestDerivedDets     DEBUG   -> PD Module 138 { PMT Rich2 L-A } Module(Col:NInCol)=1:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,00 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.23,648.708,11034.9) CenPtnInPanel=(-310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.24,592.708,11034.8) CenPtnInPanel=(-310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.24,536.708,11034.6) CenPtnInPanel=(-310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.24,480.708,11034.5) CenPtnInPanel=(-310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,00 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.68,653.458,11031.5) CenPtnInPanel=(-310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.69,597.458,11031.3) CenPtnInPanel=(-310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.69,541.458,11031.2) CenPtnInPanel=(-310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:138,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.69,485.458,11031) CenPtnInPanel=(-310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 139 { PMT Rich2 L-A } Module(Col:NInCol)=1:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.24,424.709,11034.3) CenPtnInPanel=(-310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.24,368.709,11034.1) CenPtnInPanel=(-310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.25,312.709,11034) CenPtnInPanel=(-310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.25,256.709,11033.8) CenPtnInPanel=(-310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.69,429.459,11030.8) CenPtnInPanel=(-310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.69,373.459,11030.7) CenPtnInPanel=(-310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.69,317.459,11030.5) CenPtnInPanel=(-310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:139,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.7,261.459,11030.3) CenPtnInPanel=(-310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 140 { PMT Rich2 L-A } Module(Col:NInCol)=1:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.03,214.746,11021.4) CenPtnInPanel=(-296.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,214.673,11045.9) CenPtnInPanel=(-324.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.03,186.746,11021.3) CenPtnInPanel=(-296.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,186.673,11045.8) CenPtnInPanel=(-324.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.03,158.746,11021.3) CenPtnInPanel=(-296.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,158.674,11045.8) CenPtnInPanel=(-324.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.03,130.746,11021.2) CenPtnInPanel=(-296.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,130.674,11045.7) CenPtnInPanel=(-324.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.03,102.746,11021.1) CenPtnInPanel=(-296.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,102.674,11045.6) CenPtnInPanel=(-324.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.03,74.7462,11021) CenPtnInPanel=(-296.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,74.6739,11045.5) CenPtnInPanel=(-324.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.03,46.7463,11020.9) CenPtnInPanel=(-296.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,46.674,11045.4) CenPtnInPanel=(-324.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,18.7464,11020.8) CenPtnInPanel=(-296.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,18.6741,11045.3) CenPtnInPanel=(-324.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,219.496,11018) CenPtnInPanel=(-296.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,219.423,11042.5) CenPtnInPanel=(-324.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,191.496,11017.9) CenPtnInPanel=(-296.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,191.423,11042.4) CenPtnInPanel=(-324.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,163.496,11017.8) CenPtnInPanel=(-296.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,163.424,11042.3) CenPtnInPanel=(-324.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,135.496,11017.7) CenPtnInPanel=(-296.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,135.424,11042.2) CenPtnInPanel=(-324.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,107.496,11017.6) CenPtnInPanel=(-296.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,107.424,11042.1) CenPtnInPanel=(-324.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,79.4962,11017.6) CenPtnInPanel=(-296.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,79.4239,11042.1) CenPtnInPanel=(-324.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,51.4964,11017.5) CenPtnInPanel=(-296.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,51.4241,11042) CenPtnInPanel=(-324.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.48,23.4965,11017.4) CenPtnInPanel=(-296.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:140,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,23.4242,11041.9) CenPtnInPanel=(-324.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 141 { PMT Rich2 L-A } Module(Col:NInCol)=1:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-9.25346,11020.8) CenPtnInPanel=(-296.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,-9.32576,11045.3) CenPtnInPanel=(-324.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-37.2533,11020.7) CenPtnInPanel=(-296.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,-37.3256,11045.2) CenPtnInPanel=(-324.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-65.2532,11020.6) CenPtnInPanel=(-296.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.47,-65.3255,11045.1) CenPtnInPanel=(-324.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-93.2531,11020.5) CenPtnInPanel=(-296.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.48,-93.3254,11045) CenPtnInPanel=(-324.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-121.253,11020.4) CenPtnInPanel=(-296.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.48,-121.325,11044.9) CenPtnInPanel=(-324.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-149.253,11020.4) CenPtnInPanel=(-296.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.48,-149.325,11044.9) CenPtnInPanel=(-324.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-177.253,11020.3) CenPtnInPanel=(-296.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.48,-177.325,11044.8) CenPtnInPanel=(-324.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3755.04,-205.253,11020.2) CenPtnInPanel=(-296.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3741.48,-205.325,11044.7) CenPtnInPanel=(-324.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-4.5034,11017.3) CenPtnInPanel=(-296.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,-4.5757,11041.8) CenPtnInPanel=(-324.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-32.5033,11017.2) CenPtnInPanel=(-296.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,-32.5756,11041.7) CenPtnInPanel=(-324.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-60.5032,11017.1) CenPtnInPanel=(-296.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.92,-60.5755,11041.6) CenPtnInPanel=(-324.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-88.503,11017.1) CenPtnInPanel=(-296.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.93,-88.5753,11041.6) CenPtnInPanel=(-324.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-116.503,11017) CenPtnInPanel=(-296.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.93,-116.575,11041.5) CenPtnInPanel=(-324.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-144.503,11016.9) CenPtnInPanel=(-296.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.93,-144.575,11041.4) CenPtnInPanel=(-324.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-172.503,11016.8) CenPtnInPanel=(-296.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.93,-172.575,11041.3) CenPtnInPanel=(-324.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3751.49,-200.503,11016.7) CenPtnInPanel=(-296.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:141,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3737.93,-200.575,11041.2) CenPtnInPanel=(-324.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 142 { PMT Rich2 L-A } Module(Col:NInCol)=1:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.26,-247.289,11032.3) CenPtnInPanel=(-310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.26,-303.288,11032.2) CenPtnInPanel=(-310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.27,-359.288,11032) CenPtnInPanel=(-310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.27,-415.288,11031.8) CenPtnInPanel=(-310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.71,-242.539,11028.9) CenPtnInPanel=(-310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.71,-298.538,11028.7) CenPtnInPanel=(-310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.71,-354.538,11028.5) CenPtnInPanel=(-310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:142,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.72,-410.538,11028.4) CenPtnInPanel=(-310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 143 { PMT Rich2 L-A } Module(Col:NInCol)=1:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.27,-471.288,11031.7) CenPtnInPanel=(-310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.27,-527.287,11031.5) CenPtnInPanel=(-310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.27,-583.287,11031.3) CenPtnInPanel=(-310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3748.27,-639.287,11031.2) CenPtnInPanel=(-310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.72,-466.538,11028.2) CenPtnInPanel=(-310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.72,-522.537,11028) CenPtnInPanel=(-310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.72,-578.537,11027.9) CenPtnInPanel=(-310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:143,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3744.72,-634.537,11027.7) CenPtnInPanel=(-310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 144 { PMT Rich2 L-A } Module(Col:NInCol)=2:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,00 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.6,648.853,10985.5) CenPtnInPanel=(-254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,01 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.61,592.854,10985.4) CenPtnInPanel=(-254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.61,536.854,10985.2) CenPtnInPanel=(-254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.61,480.854,10985) CenPtnInPanel=(-254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,00 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.05,653.604,10982.1) CenPtnInPanel=(-254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,01 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.05,597.604,10981.9) CenPtnInPanel=(-254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.06,541.604,10981.7) CenPtnInPanel=(-254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:144,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.06,485.604,10981.6) CenPtnInPanel=(-254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 145 { PMT Rich2 L-A } Module(Col:NInCol)=2:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.61,424.854,10984.9) CenPtnInPanel=(-254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.61,368.855,10984.7) CenPtnInPanel=(-254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.61,312.855,10984.5) CenPtnInPanel=(-254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.62,256.855,10984.4) CenPtnInPanel=(-254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.06,429.604,10981.4) CenPtnInPanel=(-254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.06,373.605,10981.2) CenPtnInPanel=(-254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.06,317.605,10981.1) CenPtnInPanel=(-254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:145,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.06,261.605,10980.9) CenPtnInPanel=(-254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 146 { PMT Rich2 L-A } Module(Col:NInCol)=2:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,214.891,10972) CenPtnInPanel=(-240.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.83,214.819,10996.5) CenPtnInPanel=(-268.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,186.892,10971.9) CenPtnInPanel=(-240.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,186.819,10996.4) CenPtnInPanel=(-268.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,158.892,10971.8) CenPtnInPanel=(-240.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,158.819,10996.3) CenPtnInPanel=(-268.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,130.892,10971.7) CenPtnInPanel=(-240.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,130.82,10996.2) CenPtnInPanel=(-268.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,102.892,10971.7) CenPtnInPanel=(-240.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,102.82,10996.2) CenPtnInPanel=(-268.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,74.8921,10971.6) CenPtnInPanel=(-240.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,74.8198,10996.1) CenPtnInPanel=(-268.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,46.8922,10971.5) CenPtnInPanel=(-240.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,46.8199,10996) CenPtnInPanel=(-268.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,18.8923,10971.4) CenPtnInPanel=(-240.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,18.82,10995.9) CenPtnInPanel=(-268.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,219.642,10968.5) CenPtnInPanel=(-240.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.28,219.569,10993) CenPtnInPanel=(-268.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,191.642,10968.5) CenPtnInPanel=(-240.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,191.569,10993) CenPtnInPanel=(-268.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,163.642,10968.4) CenPtnInPanel=(-240.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,163.569,10992.9) CenPtnInPanel=(-268.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,135.642,10968.3) CenPtnInPanel=(-240.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,135.57,10992.8) CenPtnInPanel=(-268.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,107.642,10968.2) CenPtnInPanel=(-240.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,107.57,10992.7) CenPtnInPanel=(-268.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,79.6421,10968.1) CenPtnInPanel=(-240.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,79.5698,10992.6) CenPtnInPanel=(-268.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,51.6423,10968) CenPtnInPanel=(-240.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,51.5699,10992.5) CenPtnInPanel=(-268.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,23.6424,10968) CenPtnInPanel=(-240.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:146,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,23.5701,10992.5) CenPtnInPanel=(-268.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 147 { PMT Rich2 L-A } Module(Col:NInCol)=2:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.4,-9.10756,10971.3) CenPtnInPanel=(-240.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,-9.17987,10995.8) CenPtnInPanel=(-268.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.41,-37.1074,10971.3) CenPtnInPanel=(-240.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,-37.1797,10995.8) CenPtnInPanel=(-268.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.41,-65.1073,10971.2) CenPtnInPanel=(-240.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,-65.1796,10995.7) CenPtnInPanel=(-268.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.41,-93.1072,10971.1) CenPtnInPanel=(-240.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.84,-93.1795,10995.6) CenPtnInPanel=(-268.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.41,-121.107,10971) CenPtnInPanel=(-240.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.85,-121.179,10995.5) CenPtnInPanel=(-268.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.41,-149.107,10970.9) CenPtnInPanel=(-240.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.85,-149.179,10995.4) CenPtnInPanel=(-268.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.41,-177.107,10970.8) CenPtnInPanel=(-240.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.85,-177.179,10995.3) CenPtnInPanel=(-268.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3782.41,-205.107,10970.8) CenPtnInPanel=(-240.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3768.85,-205.179,10995.3) CenPtnInPanel=(-268.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.85,-4.35751,10967.9) CenPtnInPanel=(-240.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,-4.42981,10992.4) CenPtnInPanel=(-268.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.86,-32.3574,10967.8) CenPtnInPanel=(-240.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,-32.4297,10992.3) CenPtnInPanel=(-268.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.86,-60.3573,10967.7) CenPtnInPanel=(-240.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,-60.4296,10992.2) CenPtnInPanel=(-268.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.86,-88.3571,10967.6) CenPtnInPanel=(-240.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,-88.4294,10992.1) CenPtnInPanel=(-268.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.86,-116.357,10967.6) CenPtnInPanel=(-240.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.29,-116.429,10992) CenPtnInPanel=(-268.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.86,-144.357,10967.5) CenPtnInPanel=(-240.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.3,-144.429,10992) CenPtnInPanel=(-268.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.86,-172.357,10967.4) CenPtnInPanel=(-240.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.3,-172.429,10991.9) CenPtnInPanel=(-268.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3778.86,-200.357,10967.3) CenPtnInPanel=(-240.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:147,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3765.3,-200.429,10991.8) CenPtnInPanel=(-268.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 148 { PMT Rich2 L-A } Module(Col:NInCol)=2:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.63,-247.143,10982.9) CenPtnInPanel=(-254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.63,-303.142,10982.7) CenPtnInPanel=(-254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.63,-359.142,10982.6) CenPtnInPanel=(-254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.64,-415.142,10982.4) CenPtnInPanel=(-254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.08,-242.393,10979.4) CenPtnInPanel=(-254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.08,-298.392,10979.3) CenPtnInPanel=(-254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.08,-354.392,10979.1) CenPtnInPanel=(-254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:148,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.08,-410.392,10978.9) CenPtnInPanel=(-254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 149 { PMT Rich2 L-A } Module(Col:NInCol)=2:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.64,-471.142,10982.2) CenPtnInPanel=(-254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.64,-527.141,10982.1) CenPtnInPanel=(-254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.64,-583.141,10981.9) CenPtnInPanel=(-254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3775.64,-639.141,10981.7) CenPtnInPanel=(-254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.09,-466.392,10978.8) CenPtnInPanel=(-254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.09,-522.391,10978.6) CenPtnInPanel=(-254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.09,-578.391,10978.4) CenPtnInPanel=(-254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:149,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3772.09,-634.391,10978.3) CenPtnInPanel=(-254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 150 { PMT Rich2 L-A } Module(Col:NInCol)=3:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,00 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.97,648.999,10936.1) CenPtnInPanel=(-197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.97,593,10935.9) CenPtnInPanel=(-197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.98,537,10935.8) CenPtnInPanel=(-197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.98,481,10935.6) CenPtnInPanel=(-197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,00 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.42,653.749,10932.6) CenPtnInPanel=(-197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.42,597.75,10932.5) CenPtnInPanel=(-197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.42,541.75,10932.3) CenPtnInPanel=(-197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:150,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.43,485.75,10932.1) CenPtnInPanel=(-197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 151 { PMT Rich2 L-A } Module(Col:NInCol)=3:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.98,425,10935.4) CenPtnInPanel=(-197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.98,369.001,10935.3) CenPtnInPanel=(-197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.98,313.001,10935.1) CenPtnInPanel=(-197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3802.98,257.001,10934.9) CenPtnInPanel=(-197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.43,429.75,10932) CenPtnInPanel=(-197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.43,373.751,10931.8) CenPtnInPanel=(-197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.43,317.751,10931.6) CenPtnInPanel=(-197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:151,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.43,261.751,10931.5) CenPtnInPanel=(-197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 152 { PMT Rich2 L-A } Module(Col:NInCol)=3:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,215.037,10922.6) CenPtnInPanel=(-183.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.2,214.965,10947.1) CenPtnInPanel=(-211.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,187.037,10922.5) CenPtnInPanel=(-183.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.2,186.965,10947) CenPtnInPanel=(-211.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,159.038,10922.4) CenPtnInPanel=(-183.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,158.965,10946.9) CenPtnInPanel=(-211.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,131.038,10922.3) CenPtnInPanel=(-183.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,130.965,10946.8) CenPtnInPanel=(-211.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,103.038,10922.2) CenPtnInPanel=(-183.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,102.966,10946.7) CenPtnInPanel=(-211.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,75.038,10922.2) CenPtnInPanel=(-183.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,74.9657,10946.7) CenPtnInPanel=(-211.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,47.0381,10922.1) CenPtnInPanel=(-183.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,46.9658,10946.6) CenPtnInPanel=(-211.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,19.0382,10922) CenPtnInPanel=(-183.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,18.9659,10946.5) CenPtnInPanel=(-211.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,219.787,10919.1) CenPtnInPanel=(-183.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.65,219.715,10943.6) CenPtnInPanel=(-211.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,191.788,10919) CenPtnInPanel=(-183.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.65,191.715,10943.5) CenPtnInPanel=(-211.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,163.788,10918.9) CenPtnInPanel=(-183.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.65,163.715,10943.4) CenPtnInPanel=(-211.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,135.788,10918.9) CenPtnInPanel=(-183.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,135.715,10943.4) CenPtnInPanel=(-211.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,107.788,10918.8) CenPtnInPanel=(-183.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,107.716,10943.3) CenPtnInPanel=(-211.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,79.788,10918.7) CenPtnInPanel=(-183.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,79.7157,10943.2) CenPtnInPanel=(-211.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,51.7881,10918.6) CenPtnInPanel=(-183.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,51.7158,10943.1) CenPtnInPanel=(-211.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,23.7883,10918.5) CenPtnInPanel=(-183.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:152,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,23.716,10943) CenPtnInPanel=(-211.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 153 { PMT Rich2 L-A } Module(Col:NInCol)=3:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,-8.96167,10921.9) CenPtnInPanel=(-183.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,-9.03397,10946.4) CenPtnInPanel=(-211.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.77,-36.9615,10921.8) CenPtnInPanel=(-183.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,-37.0338,10946.3) CenPtnInPanel=(-211.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.78,-64.9614,10921.7) CenPtnInPanel=(-183.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,-65.0337,10946.2) CenPtnInPanel=(-211.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.78,-92.9613,10921.7) CenPtnInPanel=(-183.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,-93.0336,10946.2) CenPtnInPanel=(-211.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.78,-120.961,10921.6) CenPtnInPanel=(-183.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,-121.033,10946.1) CenPtnInPanel=(-211.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.78,-148.961,10921.5) CenPtnInPanel=(-183.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.21,-149.033,10946) CenPtnInPanel=(-211.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.78,-176.961,10921.4) CenPtnInPanel=(-183.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.22,-177.033,10945.9) CenPtnInPanel=(-211.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3809.78,-204.961,10921.3) CenPtnInPanel=(-183.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3796.22,-205.033,10945.8) CenPtnInPanel=(-211.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,-4.21161,10918.5) CenPtnInPanel=(-183.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,-4.28391,10942.9) CenPtnInPanel=(-211.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,-32.2115,10918.4) CenPtnInPanel=(-183.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,-32.2838,10942.9) CenPtnInPanel=(-211.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.22,-60.2114,10918.3) CenPtnInPanel=(-183.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,-60.2837,10942.8) CenPtnInPanel=(-211.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.23,-88.2113,10918.2) CenPtnInPanel=(-183.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,-88.2836,10942.7) CenPtnInPanel=(-211.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.23,-116.211,10918.1) CenPtnInPanel=(-183.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,-116.283,10942.6) CenPtnInPanel=(-211.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.23,-144.211,10918) CenPtnInPanel=(-183.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,-144.283,10942.5) CenPtnInPanel=(-211.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.23,-172.211,10918) CenPtnInPanel=(-183.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.66,-172.283,10942.5) CenPtnInPanel=(-211.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3806.23,-200.211,10917.9) CenPtnInPanel=(-183.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:153,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3792.67,-200.283,10942.4) CenPtnInPanel=(-211.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 154 { PMT Rich2 L-A } Module(Col:NInCol)=3:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803,-246.997,10933.5) CenPtnInPanel=(-197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803,-302.997,10933.3) CenPtnInPanel=(-197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803,-358.996,10933.1) CenPtnInPanel=(-197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803,-414.996,10933) CenPtnInPanel=(-197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.45,-242.247,10930) CenPtnInPanel=(-197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.45,-298.246,10929.8) CenPtnInPanel=(-197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.45,-354.246,10929.7) CenPtnInPanel=(-197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:154,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.45,-410.246,10929.5) CenPtnInPanel=(-197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 155 { PMT Rich2 L-A } Module(Col:NInCol)=3:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803.01,-470.996,10932.8) CenPtnInPanel=(-197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803.01,-526.996,10932.6) CenPtnInPanel=(-197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803.01,-582.995,10932.5) CenPtnInPanel=(-197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3803.01,-638.995,10932.3) CenPtnInPanel=(-197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.46,-466.246,10929.3) CenPtnInPanel=(-197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.46,-522.246,10929.2) CenPtnInPanel=(-197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.46,-578.245,10929) CenPtnInPanel=(-197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:155,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3799.46,-634.245,10928.9) CenPtnInPanel=(-197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 156 { PMT Rich2 L-A } Module(Col:NInCol)=4:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,00 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.34,649.145,10886.7) CenPtnInPanel=(-141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.34,593.145,10886.5) CenPtnInPanel=(-141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.34,537.146,10886.3) CenPtnInPanel=(-141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.35,481.146,10886.2) CenPtnInPanel=(-141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,00 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.79,653.895,10883.2) CenPtnInPanel=(-141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.79,597.896,10883) CenPtnInPanel=(-141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.79,541.896,10882.9) CenPtnInPanel=(-141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:156,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.8,485.896,10882.7) CenPtnInPanel=(-141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 157 { PMT Rich2 L-A } Module(Col:NInCol)=4:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.35,425.146,10886) CenPtnInPanel=(-141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.35,369.146,10885.8) CenPtnInPanel=(-141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.35,313.147,10885.7) CenPtnInPanel=(-141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.35,257.147,10885.5) CenPtnInPanel=(-141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.8,429.896,10882.5) CenPtnInPanel=(-141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.8,373.897,10882.4) CenPtnInPanel=(-141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.8,317.897,10882.2) CenPtnInPanel=(-141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:157,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.8,261.897,10882.1) CenPtnInPanel=(-141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 158 { PMT Rich2 L-A } Module(Col:NInCol)=4:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,215.183,10873.1) CenPtnInPanel=(-127.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.57,215.111,10897.6) CenPtnInPanel=(-155.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,187.183,10873.1) CenPtnInPanel=(-127.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.57,187.111,10897.6) CenPtnInPanel=(-155.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,159.184,10873) CenPtnInPanel=(-127.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.57,159.111,10897.5) CenPtnInPanel=(-155.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,131.184,10872.9) CenPtnInPanel=(-127.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.57,131.111,10897.4) CenPtnInPanel=(-155.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,103.184,10872.8) CenPtnInPanel=(-127.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,103.111,10897.3) CenPtnInPanel=(-155.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,75.1839,10872.7) CenPtnInPanel=(-127.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,75.1116,10897.2) CenPtnInPanel=(-155.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,47.184,10872.6) CenPtnInPanel=(-127.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,47.1117,10897.1) CenPtnInPanel=(-155.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,19.1841,10872.6) CenPtnInPanel=(-127.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,19.1118,10897.1) CenPtnInPanel=(-155.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.58,219.933,10869.7) CenPtnInPanel=(-127.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.02,219.861,10894.2) CenPtnInPanel=(-155.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,191.933,10869.6) CenPtnInPanel=(-127.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.02,191.861,10894.1) CenPtnInPanel=(-155.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,163.934,10869.5) CenPtnInPanel=(-127.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.02,163.861,10894) CenPtnInPanel=(-155.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,135.934,10869.4) CenPtnInPanel=(-127.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.02,135.861,10893.9) CenPtnInPanel=(-155.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,107.934,10869.4) CenPtnInPanel=(-127.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.02,107.861,10893.8) CenPtnInPanel=(-155.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,79.9339,10869.3) CenPtnInPanel=(-127.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,79.8616,10893.8) CenPtnInPanel=(-155.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,51.934,10869.2) CenPtnInPanel=(-127.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,51.8617,10893.7) CenPtnInPanel=(-155.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,23.9342,10869.1) CenPtnInPanel=(-127.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:158,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,23.8619,10893.6) CenPtnInPanel=(-155.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 159 { PMT Rich2 L-A } Module(Col:NInCol)=4:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,-8.81577,10872.5) CenPtnInPanel=(-127.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-8.88808,10897) CenPtnInPanel=(-155.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,-36.8157,10872.4) CenPtnInPanel=(-127.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-36.888,10896.9) CenPtnInPanel=(-155.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,-64.8155,10872.3) CenPtnInPanel=(-127.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-64.8878,10896.8) CenPtnInPanel=(-155.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.14,-92.8154,10872.2) CenPtnInPanel=(-127.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-92.8877,10896.7) CenPtnInPanel=(-155.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.15,-120.815,10872.2) CenPtnInPanel=(-127.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-120.888,10896.6) CenPtnInPanel=(-155.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.15,-148.815,10872.1) CenPtnInPanel=(-127.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-148.887,10896.6) CenPtnInPanel=(-155.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.15,-176.815,10872) CenPtnInPanel=(-127.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-176.887,10896.5) CenPtnInPanel=(-155.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3837.15,-204.815,10871.9) CenPtnInPanel=(-127.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3823.58,-204.887,10896.4) CenPtnInPanel=(-155.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,-4.06572,10869) CenPtnInPanel=(-127.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-4.13802,10893.5) CenPtnInPanel=(-155.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,-32.0656,10868.9) CenPtnInPanel=(-127.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-32.1379,10893.4) CenPtnInPanel=(-155.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,-60.0655,10868.9) CenPtnInPanel=(-127.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-60.1378,10893.4) CenPtnInPanel=(-155.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,-88.0654,10868.8) CenPtnInPanel=(-127.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-88.1377,10893.3) CenPtnInPanel=(-155.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.59,-116.065,10868.7) CenPtnInPanel=(-127.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-116.138,10893.2) CenPtnInPanel=(-155.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.6,-144.065,10868.6) CenPtnInPanel=(-127.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-144.137,10893.1) CenPtnInPanel=(-155.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.6,-172.065,10868.5) CenPtnInPanel=(-127.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-172.137,10893) CenPtnInPanel=(-155.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3833.6,-200.065,10868.4) CenPtnInPanel=(-127.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:159,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3820.03,-200.137,10892.9) CenPtnInPanel=(-155.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 160 { PMT Rich2 L-A } Module(Col:NInCol)=4:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.37,-246.851,10884) CenPtnInPanel=(-141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.37,-302.851,10883.9) CenPtnInPanel=(-141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.37,-358.85,10883.7) CenPtnInPanel=(-141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.37,-414.85,10883.5) CenPtnInPanel=(-141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.82,-242.101,10880.6) CenPtnInPanel=(-141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.82,-298.101,10880.4) CenPtnInPanel=(-141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.82,-354.1,10880.2) CenPtnInPanel=(-141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:160,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.82,-410.1,10880.1) CenPtnInPanel=(-141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 161 { PMT Rich2 L-A } Module(Col:NInCol)=4:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.37,-470.85,10883.4) CenPtnInPanel=(-141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.38,-526.85,10883.2) CenPtnInPanel=(-141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.38,-582.849,10883) CenPtnInPanel=(-141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3830.38,-638.849,10882.9) CenPtnInPanel=(-141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.82,-466.1,10879.9) CenPtnInPanel=(-141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.83,-522.1,10879.8) CenPtnInPanel=(-141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.83,-578.099,10879.6) CenPtnInPanel=(-141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:161,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3826.83,-634.099,10879.4) CenPtnInPanel=(-141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 162 { PMT Rich2 L-A } Module(Col:NInCol)=5:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.71,649.291,10837.2) CenPtnInPanel=(-84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.71,593.291,10837.1) CenPtnInPanel=(-84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.71,537.292,10836.9) CenPtnInPanel=(-84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.71,481.292,10836.7) CenPtnInPanel=(-84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.16,654.041,10833.8) CenPtnInPanel=(-84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.16,598.041,10833.6) CenPtnInPanel=(-84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.16,542.042,10833.4) CenPtnInPanel=(-84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:162,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.16,486.042,10833.3) CenPtnInPanel=(-84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 163 { PMT Rich2 L-A } Module(Col:NInCol)=5:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.72,425.292,10836.6) CenPtnInPanel=(-84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.72,369.292,10836.4) CenPtnInPanel=(-84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.72,313.293,10836.2) CenPtnInPanel=(-84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.72,257.293,10836.1) CenPtnInPanel=(-84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.17,430.042,10833.1) CenPtnInPanel=(-84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.17,374.042,10833) CenPtnInPanel=(-84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.17,318.043,10832.8) CenPtnInPanel=(-84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:163,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.17,262.043,10832.6) CenPtnInPanel=(-84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 164 { PMT Rich2 L-A } Module(Col:NInCol)=5:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.5,215.329,10823.7) CenPtnInPanel=(-70.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.94,215.257,10848.2) CenPtnInPanel=(-98.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.5,187.329,10823.6) CenPtnInPanel=(-70.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.94,187.257,10848.1) CenPtnInPanel=(-98.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,159.329,10823.5) CenPtnInPanel=(-70.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.94,159.257,10848) CenPtnInPanel=(-98.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,131.33,10823.5) CenPtnInPanel=(-70.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.94,131.257,10848) CenPtnInPanel=(-98.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,103.33,10823.4) CenPtnInPanel=(-70.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.94,103.257,10847.9) CenPtnInPanel=(-98.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,75.3298,10823.3) CenPtnInPanel=(-70.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.94,75.2575,10847.8) CenPtnInPanel=(-98.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,47.3299,10823.2) CenPtnInPanel=(-70.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,47.2576,10847.7) CenPtnInPanel=(-98.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,19.33,10823.1) CenPtnInPanel=(-70.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,19.2577,10847.6) CenPtnInPanel=(-98.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.95,220.079,10820.3) CenPtnInPanel=(-70.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.39,220.007,10844.7) CenPtnInPanel=(-98.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.95,192.079,10820.2) CenPtnInPanel=(-70.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.39,192.007,10844.7) CenPtnInPanel=(-98.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.95,164.079,10820.1) CenPtnInPanel=(-70.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.39,164.007,10844.6) CenPtnInPanel=(-98.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,136.08,10820) CenPtnInPanel=(-70.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.39,136.007,10844.5) CenPtnInPanel=(-98.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,108.08,10819.9) CenPtnInPanel=(-70.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.39,108.007,10844.4) CenPtnInPanel=(-98.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,80.0798,10819.8) CenPtnInPanel=(-70.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.39,80.0075,10844.3) CenPtnInPanel=(-98.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,52.0799,10819.8) CenPtnInPanel=(-70.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,52.0076,10844.3) CenPtnInPanel=(-98.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,24.0801,10819.7) CenPtnInPanel=(-70.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:164,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,24.0078,10844.2) CenPtnInPanel=(-98.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 165 { PMT Rich2 L-A } Module(Col:NInCol)=5:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,-8.66988,10823.1) CenPtnInPanel=(-70.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-8.74218,10847.5) CenPtnInPanel=(-98.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,-36.6698,10823) CenPtnInPanel=(-70.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-36.7421,10847.5) CenPtnInPanel=(-98.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,-64.6696,10822.9) CenPtnInPanel=(-70.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-64.7419,10847.4) CenPtnInPanel=(-98.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,-92.6695,10822.8) CenPtnInPanel=(-70.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-92.7418,10847.3) CenPtnInPanel=(-98.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,-120.669,10822.7) CenPtnInPanel=(-70.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-120.742,10847.2) CenPtnInPanel=(-98.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.51,-148.669,10822.6) CenPtnInPanel=(-70.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-148.742,10847.1) CenPtnInPanel=(-98.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.52,-176.669,10822.6) CenPtnInPanel=(-70.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-176.741,10847.1) CenPtnInPanel=(-98.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3864.52,-204.669,10822.5) CenPtnInPanel=(-70.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3850.95,-204.741,10847) CenPtnInPanel=(-98.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,-3.91982,10819.6) CenPtnInPanel=(-70.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-3.99212,10844.1) CenPtnInPanel=(-98.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,-31.9197,10819.5) CenPtnInPanel=(-70.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-31.992,10844) CenPtnInPanel=(-98.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,-59.9196,10819.4) CenPtnInPanel=(-70.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-59.9919,10843.9) CenPtnInPanel=(-98.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,-87.9195,10819.3) CenPtnInPanel=(-70.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-87.9918,10843.8) CenPtnInPanel=(-98.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,-115.919,10819.3) CenPtnInPanel=(-70.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-115.992,10843.8) CenPtnInPanel=(-98.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,-143.919,10819.2) CenPtnInPanel=(-70.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-143.992,10843.7) CenPtnInPanel=(-98.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.96,-171.919,10819.1) CenPtnInPanel=(-70.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-171.991,10843.6) CenPtnInPanel=(-98.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3860.97,-199.919,10819) CenPtnInPanel=(-70.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:165,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3847.4,-199.991,10843.5) CenPtnInPanel=(-98.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 166 { PMT Rich2 L-A } Module(Col:NInCol)=5:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.74,-246.705,10834.6) CenPtnInPanel=(-84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.74,-302.705,10834.4) CenPtnInPanel=(-84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.74,-358.705,10834.3) CenPtnInPanel=(-84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.74,-414.704,10834.1) CenPtnInPanel=(-84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.19,-241.955,10831.1) CenPtnInPanel=(-84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.19,-297.955,10831) CenPtnInPanel=(-84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.19,-353.954,10830.8) CenPtnInPanel=(-84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:166,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.19,-409.954,10830.7) CenPtnInPanel=(-84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 167 { PMT Rich2 L-A } Module(Col:NInCol)=5:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.74,-470.704,10833.9) CenPtnInPanel=(-84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.74,-526.704,10833.8) CenPtnInPanel=(-84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.75,-582.704,10833.6) CenPtnInPanel=(-84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3857.75,-638.703,10833.4) CenPtnInPanel=(-84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.19,-465.954,10830.5) CenPtnInPanel=(-84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.19,-521.954,10830.3) CenPtnInPanel=(-84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.2,-577.954,10830.2) CenPtnInPanel=(-84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:167,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3854.2,-633.953,10830) CenPtnInPanel=(-84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 168 { PMT Rich2 L-A } Module(Col:NInCol)=6:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.08,649.437,10787.8) CenPtnInPanel=(-28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.08,593.437,10787.6) CenPtnInPanel=(-28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.08,537.438,10787.5) CenPtnInPanel=(-28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.08,481.438,10787.3) CenPtnInPanel=(-28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.53,654.187,10784.3) CenPtnInPanel=(-28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.53,598.187,10784.2) CenPtnInPanel=(-28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.53,542.188,10784) CenPtnInPanel=(-28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:168,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.53,486.188,10783.9) CenPtnInPanel=(-28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 169 { PMT Rich2 L-A } Module(Col:NInCol)=6:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.08,425.438,10787.1) CenPtnInPanel=(-28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.09,369.438,10787) CenPtnInPanel=(-28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.09,313.438,10786.8) CenPtnInPanel=(-28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.09,257.439,10786.7) CenPtnInPanel=(-28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.53,430.188,10783.7) CenPtnInPanel=(-28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.54,374.188,10783.5) CenPtnInPanel=(-28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.54,318.189,10783.4) CenPtnInPanel=(-28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:169,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.54,262.189,10783.2) CenPtnInPanel=(-28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 170 { PMT Rich2 L-A } Module(Col:NInCol)=6:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.87,215.475,10774.3) CenPtnInPanel=(-14.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.31,215.403,10798.8) CenPtnInPanel=(-42.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.87,187.475,10774.2) CenPtnInPanel=(-14.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.31,187.403,10798.7) CenPtnInPanel=(-42.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.87,159.475,10774.1) CenPtnInPanel=(-14.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.31,159.403,10798.6) CenPtnInPanel=(-42.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.87,131.475,10774) CenPtnInPanel=(-14.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.31,131.403,10798.5) CenPtnInPanel=(-42.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,103.476,10774) CenPtnInPanel=(-14.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.31,103.403,10798.4) CenPtnInPanel=(-42.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,75.4757,10773.9) CenPtnInPanel=(-14.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.31,75.4034,10798.4) CenPtnInPanel=(-42.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,47.4758,10773.8) CenPtnInPanel=(-14.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.31,47.4035,10798.3) CenPtnInPanel=(-42.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,19.4759,10773.7) CenPtnInPanel=(-14.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,19.4036,10798.2) CenPtnInPanel=(-42.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.32,220.225,10770.8) CenPtnInPanel=(-14.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,220.153,10795.3) CenPtnInPanel=(-42.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.32,192.225,10770.7) CenPtnInPanel=(-14.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,192.153,10795.2) CenPtnInPanel=(-42.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.32,164.225,10770.7) CenPtnInPanel=(-14.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,164.153,10795.2) CenPtnInPanel=(-42.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.32,136.225,10770.6) CenPtnInPanel=(-14.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,136.153,10795.1) CenPtnInPanel=(-42.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,108.226,10770.5) CenPtnInPanel=(-14.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,108.153,10795) CenPtnInPanel=(-42.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,80.2257,10770.4) CenPtnInPanel=(-14.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,80.1534,10794.9) CenPtnInPanel=(-42.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,52.2258,10770.3) CenPtnInPanel=(-14.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,52.1535,10794.8) CenPtnInPanel=(-42.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,24.226,10770.2) CenPtnInPanel=(-14.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:170,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.76,24.1536,10794.7) CenPtnInPanel=(-42.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 171 { PMT Rich2 L-A } Module(Col:NInCol)=6:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-8.52398,10773.6) CenPtnInPanel=(-14.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-8.59629,10798.1) CenPtnInPanel=(-42.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-36.5239,10773.5) CenPtnInPanel=(-14.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-36.5962,10798) CenPtnInPanel=(-42.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-64.5237,10773.5) CenPtnInPanel=(-14.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-64.596,10798) CenPtnInPanel=(-42.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-92.5236,10773.4) CenPtnInPanel=(-14.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-92.5959,10797.9) CenPtnInPanel=(-42.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-120.524,10773.3) CenPtnInPanel=(-14.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-120.596,10797.8) CenPtnInPanel=(-42.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-148.523,10773.2) CenPtnInPanel=(-14.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-148.596,10797.7) CenPtnInPanel=(-42.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-176.523,10773.1) CenPtnInPanel=(-14.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-176.596,10797.6) CenPtnInPanel=(-42.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3891.88,-204.523,10773) CenPtnInPanel=(-14.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3878.32,-204.595,10797.5) CenPtnInPanel=(-42.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-3.77393,10770.2) CenPtnInPanel=(-14.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-3.84623,10794.7) CenPtnInPanel=(-42.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-31.7738,10770.1) CenPtnInPanel=(-14.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-31.8461,10794.6) CenPtnInPanel=(-42.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-59.7737,10770) CenPtnInPanel=(-14.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-59.846,10794.5) CenPtnInPanel=(-42.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-87.7736,10769.9) CenPtnInPanel=(-14.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-87.8459,10794.4) CenPtnInPanel=(-42.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-115.773,10769.8) CenPtnInPanel=(-14.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-115.846,10794.3) CenPtnInPanel=(-42.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-143.773,10769.8) CenPtnInPanel=(-14.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-143.846,10794.3) CenPtnInPanel=(-42.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-171.773,10769.7) CenPtnInPanel=(-14.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-171.846,10794.2) CenPtnInPanel=(-42.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3888.33,-199.773,10769.6) CenPtnInPanel=(-14.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:171,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3874.77,-199.845,10794.1) CenPtnInPanel=(-42.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 172 { PMT Rich2 L-A } Module(Col:NInCol)=6:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.1,-246.559,10785.2) CenPtnInPanel=(-28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.11,-302.559,10785) CenPtnInPanel=(-28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.11,-358.559,10784.8) CenPtnInPanel=(-28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.11,-414.558,10784.7) CenPtnInPanel=(-28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.55,-241.809,10781.7) CenPtnInPanel=(-28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.56,-297.809,10781.6) CenPtnInPanel=(-28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.56,-353.809,10781.4) CenPtnInPanel=(-28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:172,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.56,-409.808,10781.2) CenPtnInPanel=(-28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 173 { PMT Rich2 L-A } Module(Col:NInCol)=6:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.11,-470.558,10784.5) CenPtnInPanel=(-28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.11,-526.558,10784.3) CenPtnInPanel=(-28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.11,-582.558,10784.2) CenPtnInPanel=(-28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3885.12,-638.557,10784) CenPtnInPanel=(-28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.56,-465.808,10781.1) CenPtnInPanel=(-28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.56,-521.808,10780.9) CenPtnInPanel=(-28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.56,-577.808,10780.7) CenPtnInPanel=(-28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:173,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3881.57,-633.807,10780.6) CenPtnInPanel=(-28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 174 { PMT Rich2 L-A } Module(Col:NInCol)=7:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.45,649.583,10738.4) CenPtnInPanel=(28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.45,593.583,10738.2) CenPtnInPanel=(28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.45,537.583,10738) CenPtnInPanel=(28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,03 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.45,481.584,10737.9) CenPtnInPanel=(28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.9,654.333,10734.9) CenPtnInPanel=(28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.9,598.333,10734.8) CenPtnInPanel=(28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.9,542.333,10734.6) CenPtnInPanel=(28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:174,03 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.9,486.334,10734.4) CenPtnInPanel=(28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 175 { PMT Rich2 L-A } Module(Col:NInCol)=7:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.45,425.584,10737.7) CenPtnInPanel=(28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.45,369.584,10737.6) CenPtnInPanel=(28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.46,313.584,10737.4) CenPtnInPanel=(28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.46,257.585,10737.2) CenPtnInPanel=(28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.9,430.334,10734.3) CenPtnInPanel=(28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.9,374.334,10734.1) CenPtnInPanel=(28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.91,318.334,10733.9) CenPtnInPanel=(28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:175,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.91,262.335,10733.8) CenPtnInPanel=(28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 176 { PMT Rich2 L-A } Module(Col:NInCol)=7:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.24,215.621,10724.9) CenPtnInPanel=(42.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,215.549,10749.3) CenPtnInPanel=(14.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.24,187.621,10724.8) CenPtnInPanel=(42.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,187.549,10749.3) CenPtnInPanel=(14.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.24,159.621,10724.7) CenPtnInPanel=(42.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,159.549,10749.2) CenPtnInPanel=(14.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.24,131.621,10724.6) CenPtnInPanel=(42.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,131.549,10749.1) CenPtnInPanel=(14.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.24,103.621,10724.5) CenPtnInPanel=(42.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,103.549,10749) CenPtnInPanel=(14.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,75.6215,10724.4) CenPtnInPanel=(42.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,75.5492,10748.9) CenPtnInPanel=(14.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,47.6217,10724.4) CenPtnInPanel=(42.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,47.5494,10748.9) CenPtnInPanel=(14.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,19.6218,10724.3) CenPtnInPanel=(42.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,19.5495,10748.8) CenPtnInPanel=(14.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.69,220.371,10721.4) CenPtnInPanel=(42.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,220.299,10745.9) CenPtnInPanel=(14.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.69,192.371,10721.3) CenPtnInPanel=(42.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,192.299,10745.8) CenPtnInPanel=(14.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.69,164.371,10721.2) CenPtnInPanel=(42.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,164.299,10745.7) CenPtnInPanel=(14.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.69,136.371,10721.1) CenPtnInPanel=(42.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,136.299,10745.6) CenPtnInPanel=(14.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.69,108.371,10721.1) CenPtnInPanel=(42.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,108.299,10745.6) CenPtnInPanel=(14.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.69,80.3716,10721) CenPtnInPanel=(42.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,80.2993,10745.5) CenPtnInPanel=(14.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,52.3717,10720.9) CenPtnInPanel=(42.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,52.2994,10745.4) CenPtnInPanel=(14.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,24.3718,10720.8) CenPtnInPanel=(42.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:176,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,24.2995,10745.3) CenPtnInPanel=(14.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 177 { PMT Rich2 L-A } Module(Col:NInCol)=7:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-8.37809,10724.2) CenPtnInPanel=(42.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.68,-8.45039,10748.7) CenPtnInPanel=(14.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-36.378,10724.1) CenPtnInPanel=(42.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.69,-36.4503,10748.6) CenPtnInPanel=(14.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-64.3778,10724) CenPtnInPanel=(42.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.69,-64.4502,10748.5) CenPtnInPanel=(14.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-92.3777,10723.9) CenPtnInPanel=(42.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.69,-92.45,10748.4) CenPtnInPanel=(14.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-120.378,10723.9) CenPtnInPanel=(42.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.69,-120.45,10748.4) CenPtnInPanel=(14.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-148.377,10723.8) CenPtnInPanel=(42.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.69,-148.45,10748.3) CenPtnInPanel=(14.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-176.377,10723.7) CenPtnInPanel=(42.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.69,-176.45,10748.2) CenPtnInPanel=(14.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3919.25,-204.377,10723.6) CenPtnInPanel=(42.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3905.69,-204.45,10748.1) CenPtnInPanel=(14.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-3.62803,10720.7) CenPtnInPanel=(42.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,-3.70034,10745.2) CenPtnInPanel=(14.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-31.6279,10720.7) CenPtnInPanel=(42.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.13,-31.7002,10745.2) CenPtnInPanel=(14.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-59.6278,10720.6) CenPtnInPanel=(42.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.14,-59.7001,10745.1) CenPtnInPanel=(14.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-87.6277,10720.5) CenPtnInPanel=(42.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.14,-87.7,10745) CenPtnInPanel=(14.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-115.628,10720.4) CenPtnInPanel=(42.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.14,-115.7,10744.9) CenPtnInPanel=(14.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-143.627,10720.3) CenPtnInPanel=(42.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.14,-143.7,10744.8) CenPtnInPanel=(14.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-171.627,10720.2) CenPtnInPanel=(42.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.14,-171.7,10744.7) CenPtnInPanel=(14.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3915.7,-199.627,10720.2) CenPtnInPanel=(42.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:177,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3902.14,-199.699,10744.7) CenPtnInPanel=(14.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 178 { PMT Rich2 L-A } Module(Col:NInCol)=7:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.47,-246.413,10735.7) CenPtnInPanel=(28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.47,-302.413,10735.6) CenPtnInPanel=(28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.48,-358.413,10735.4) CenPtnInPanel=(28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.48,-414.412,10735.3) CenPtnInPanel=(28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.92,-241.663,10732.3) CenPtnInPanel=(28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.92,-297.663,10732.1) CenPtnInPanel=(28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.93,-353.663,10732) CenPtnInPanel=(28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:178,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.93,-409.662,10731.8) CenPtnInPanel=(28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 179 { PMT Rich2 L-A } Module(Col:NInCol)=7:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.48,-470.412,10735.1) CenPtnInPanel=(28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.48,-526.412,10734.9) CenPtnInPanel=(28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.48,-582.412,10734.8) CenPtnInPanel=(28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3912.48,-638.412,10734.6) CenPtnInPanel=(28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.93,-465.662,10731.6) CenPtnInPanel=(28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.93,-521.662,10731.5) CenPtnInPanel=(28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.93,-577.662,10731.3) CenPtnInPanel=(28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:179,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3908.93,-633.661,10731.1) CenPtnInPanel=(28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 180 { PMT Rich2 L-A } Module(Col:NInCol)=8:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.81,649.729,10688.9) CenPtnInPanel=(84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.82,593.729,10688.8) CenPtnInPanel=(84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.82,537.729,10688.6) CenPtnInPanel=(84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.82,481.73,10688.5) CenPtnInPanel=(84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.26,654.479,10685.5) CenPtnInPanel=(84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.27,598.479,10685.3) CenPtnInPanel=(84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.27,542.479,10685.2) CenPtnInPanel=(84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:180,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.27,486.48,10685) CenPtnInPanel=(84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 181 { PMT Rich2 L-A } Module(Col:NInCol)=8:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.82,425.73,10688.3) CenPtnInPanel=(84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.82,369.73,10688.1) CenPtnInPanel=(84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.82,313.73,10688) CenPtnInPanel=(84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.83,257.731,10687.8) CenPtnInPanel=(84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.27,430.48,10684.8) CenPtnInPanel=(84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.27,374.48,10684.7) CenPtnInPanel=(84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.27,318.48,10684.5) CenPtnInPanel=(84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:181,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.28,262.481,10684.3) CenPtnInPanel=(84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 182 { PMT Rich2 L-A } Module(Col:NInCol)=8:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.61,215.767,10675.4) CenPtnInPanel=(98.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,215.695,10699.9) CenPtnInPanel=(70.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.61,187.767,10675.3) CenPtnInPanel=(98.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,187.695,10699.8) CenPtnInPanel=(70.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.61,159.767,10675.3) CenPtnInPanel=(98.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,159.695,10699.8) CenPtnInPanel=(70.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.61,131.767,10675.2) CenPtnInPanel=(98.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,131.695,10699.7) CenPtnInPanel=(70.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.61,103.767,10675.1) CenPtnInPanel=(98.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,103.695,10699.6) CenPtnInPanel=(70.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.61,75.7674,10675) CenPtnInPanel=(98.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,75.6951,10699.5) CenPtnInPanel=(70.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.61,47.7676,10674.9) CenPtnInPanel=(98.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,47.6953,10699.4) CenPtnInPanel=(70.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,19.7677,10674.8) CenPtnInPanel=(98.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,19.6954,10699.3) CenPtnInPanel=(70.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,220.517,10672) CenPtnInPanel=(98.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,220.445,10696.5) CenPtnInPanel=(70.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,192.517,10671.9) CenPtnInPanel=(98.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,192.445,10696.4) CenPtnInPanel=(70.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,164.517,10671.8) CenPtnInPanel=(98.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,164.445,10696.3) CenPtnInPanel=(70.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,136.517,10671.7) CenPtnInPanel=(98.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,136.445,10696.2) CenPtnInPanel=(70.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,108.517,10671.6) CenPtnInPanel=(98.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,108.445,10696.1) CenPtnInPanel=(70.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,80.5175,10671.6) CenPtnInPanel=(98.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,80.4452,10696.1) CenPtnInPanel=(70.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,52.5176,10671.5) CenPtnInPanel=(98.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,52.4453,10696) CenPtnInPanel=(70.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.06,24.5177,10671.4) CenPtnInPanel=(98.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:182,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,24.4454,10695.9) CenPtnInPanel=(70.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 183 { PMT Rich2 L-A } Module(Col:NInCol)=8:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-8.2322,10674.8) CenPtnInPanel=(98.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,-8.3045,10699.3) CenPtnInPanel=(70.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-36.2321,10674.7) CenPtnInPanel=(98.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,-36.3044,10699.2) CenPtnInPanel=(70.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-64.232,10674.6) CenPtnInPanel=(98.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.05,-64.3043,10699.1) CenPtnInPanel=(70.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-92.2318,10674.5) CenPtnInPanel=(98.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.06,-92.3041,10699) CenPtnInPanel=(70.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-120.232,10674.4) CenPtnInPanel=(98.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.06,-120.304,10698.9) CenPtnInPanel=(70.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-148.232,10674.4) CenPtnInPanel=(98.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.06,-148.304,10698.8) CenPtnInPanel=(70.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-176.231,10674.3) CenPtnInPanel=(98.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.06,-176.304,10698.8) CenPtnInPanel=(70.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3946.62,-204.231,10674.2) CenPtnInPanel=(98.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3933.06,-204.304,10698.7) CenPtnInPanel=(70.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-3.48214,10671.3) CenPtnInPanel=(98.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,-3.55444,10695.8) CenPtnInPanel=(70.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-31.482,10671.2) CenPtnInPanel=(98.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,-31.5543,10695.7) CenPtnInPanel=(70.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-59.4819,10671.1) CenPtnInPanel=(98.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,-59.5542,10695.6) CenPtnInPanel=(70.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-87.4818,10671.1) CenPtnInPanel=(98.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.5,-87.5541,10695.6) CenPtnInPanel=(70.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-115.482,10671) CenPtnInPanel=(98.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.51,-115.554,10695.5) CenPtnInPanel=(70.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-143.482,10670.9) CenPtnInPanel=(98.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.51,-143.554,10695.4) CenPtnInPanel=(70.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-171.481,10670.8) CenPtnInPanel=(98.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.51,-171.554,10695.3) CenPtnInPanel=(70.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3943.07,-199.481,10670.7) CenPtnInPanel=(98.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:183,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3929.51,-199.554,10695.2) CenPtnInPanel=(70.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 184 { PMT Rich2 L-A } Module(Col:NInCol)=8:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.84,-246.267,10686.3) CenPtnInPanel=(84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.84,-302.267,10686.2) CenPtnInPanel=(84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.85,-358.267,10686) CenPtnInPanel=(84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.85,-414.267,10685.8) CenPtnInPanel=(84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.29,-241.517,10682.9) CenPtnInPanel=(84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.29,-297.517,10682.7) CenPtnInPanel=(84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.29,-353.517,10682.5) CenPtnInPanel=(84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:184,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.3,-409.517,10682.4) CenPtnInPanel=(84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 185 { PMT Rich2 L-A } Module(Col:NInCol)=8:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.85,-470.266,10685.7) CenPtnInPanel=(84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.85,-526.266,10685.5) CenPtnInPanel=(84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.85,-582.266,10685.3) CenPtnInPanel=(84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3939.85,-638.266,10685.2) CenPtnInPanel=(84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.3,-465.516,10682.2) CenPtnInPanel=(84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.3,-521.516,10682) CenPtnInPanel=(84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.3,-577.516,10681.9) CenPtnInPanel=(84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:185,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3936.3,-633.516,10681.7) CenPtnInPanel=(84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 186 { PMT Rich2 L-A } Module(Col:NInCol)=9:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.18,649.875,10639.5) CenPtnInPanel=(141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.19,593.875,10639.4) CenPtnInPanel=(141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.19,537.875,10639.2) CenPtnInPanel=(141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.19,481.875,10639) CenPtnInPanel=(141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.63,654.625,10636.1) CenPtnInPanel=(141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.63,598.625,10635.9) CenPtnInPanel=(141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.64,542.625,10635.7) CenPtnInPanel=(141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:186,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.64,486.625,10635.6) CenPtnInPanel=(141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 187 { PMT Rich2 L-A } Module(Col:NInCol)=9:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.19,425.876,10638.9) CenPtnInPanel=(141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.19,369.876,10638.7) CenPtnInPanel=(141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.19,313.876,10638.5) CenPtnInPanel=(141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.2,257.876,10638.4) CenPtnInPanel=(141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.64,430.626,10635.4) CenPtnInPanel=(141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.64,374.626,10635.2) CenPtnInPanel=(141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.64,318.626,10635.1) CenPtnInPanel=(141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:187,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.64,262.626,10634.9) CenPtnInPanel=(141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 188 { PMT Rich2 L-A } Module(Col:NInCol)=9:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,215.913,10626) CenPtnInPanel=(155.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.41,215.84,10650.5) CenPtnInPanel=(127.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,187.913,10625.9) CenPtnInPanel=(155.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,187.841,10650.4) CenPtnInPanel=(127.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,159.913,10625.8) CenPtnInPanel=(155.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,159.841,10650.3) CenPtnInPanel=(127.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,131.913,10625.7) CenPtnInPanel=(155.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,131.841,10650.2) CenPtnInPanel=(127.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,103.913,10625.7) CenPtnInPanel=(155.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,103.841,10650.2) CenPtnInPanel=(127.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,75.9133,10625.6) CenPtnInPanel=(155.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,75.841,10650.1) CenPtnInPanel=(127.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,47.9135,10625.5) CenPtnInPanel=(155.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,47.8412,10650) CenPtnInPanel=(127.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,19.9136,10625.4) CenPtnInPanel=(155.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,19.8413,10649.9) CenPtnInPanel=(127.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,220.663,10622.5) CenPtnInPanel=(155.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.86,220.59,10647) CenPtnInPanel=(127.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,192.663,10622.5) CenPtnInPanel=(155.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,192.591,10647) CenPtnInPanel=(127.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,164.663,10622.4) CenPtnInPanel=(155.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,164.591,10646.9) CenPtnInPanel=(127.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,136.663,10622.3) CenPtnInPanel=(155.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,136.591,10646.8) CenPtnInPanel=(127.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,108.663,10622.2) CenPtnInPanel=(155.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,108.591,10646.7) CenPtnInPanel=(127.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,80.6634,10622.1) CenPtnInPanel=(155.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,80.5911,10646.6) CenPtnInPanel=(127.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,52.6635,10622) CenPtnInPanel=(155.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,52.5912,10646.5) CenPtnInPanel=(127.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,24.6636,10622) CenPtnInPanel=(155.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:188,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,24.5913,10646.5) CenPtnInPanel=(127.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 189 { PMT Rich2 L-A } Module(Col:NInCol)=9:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.98,-8.0863,10625.3) CenPtnInPanel=(155.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,-8.1586,10649.8) CenPtnInPanel=(127.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.99,-36.0862,10625.3) CenPtnInPanel=(155.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,-36.1585,10649.7) CenPtnInPanel=(127.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.99,-64.0861,10625.2) CenPtnInPanel=(155.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,-64.1584,10649.7) CenPtnInPanel=(127.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.99,-92.0859,10625.1) CenPtnInPanel=(155.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,-92.1582,10649.6) CenPtnInPanel=(127.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.99,-120.086,10625) CenPtnInPanel=(155.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.42,-120.158,10649.5) CenPtnInPanel=(127.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.99,-148.086,10624.9) CenPtnInPanel=(155.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.43,-148.158,10649.4) CenPtnInPanel=(127.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.99,-176.086,10624.8) CenPtnInPanel=(155.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.43,-176.158,10649.3) CenPtnInPanel=(127.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3973.99,-204.085,10624.8) CenPtnInPanel=(155.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3960.43,-204.158,10649.3) CenPtnInPanel=(127.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,-3.33624,10621.9) CenPtnInPanel=(155.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,-3.40855,10646.4) CenPtnInPanel=(127.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.43,-31.3361,10621.8) CenPtnInPanel=(155.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,-31.4084,10646.3) CenPtnInPanel=(127.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.44,-59.336,10621.7) CenPtnInPanel=(155.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,-59.4083,10646.2) CenPtnInPanel=(127.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.44,-87.3359,10621.6) CenPtnInPanel=(155.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,-87.4082,10646.1) CenPtnInPanel=(127.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.44,-115.336,10621.6) CenPtnInPanel=(155.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.87,-115.408,10646) CenPtnInPanel=(127.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.44,-143.336,10621.5) CenPtnInPanel=(155.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.88,-143.408,10646) CenPtnInPanel=(127.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.44,-171.336,10621.4) CenPtnInPanel=(155.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.88,-171.408,10645.9) CenPtnInPanel=(127.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3970.44,-199.335,10621.3) CenPtnInPanel=(155.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:189,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3956.88,-199.408,10645.8) CenPtnInPanel=(127.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 190 { PMT Rich2 L-A } Module(Col:NInCol)=9:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.21,-246.121,10636.9) CenPtnInPanel=(141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.21,-302.121,10636.7) CenPtnInPanel=(141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.21,-358.121,10636.6) CenPtnInPanel=(141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.22,-414.121,10636.4) CenPtnInPanel=(141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.66,-241.371,10633.4) CenPtnInPanel=(141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.66,-297.371,10633.3) CenPtnInPanel=(141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.66,-353.371,10633.1) CenPtnInPanel=(141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:190,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.66,-409.371,10632.9) CenPtnInPanel=(141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 191 { PMT Rich2 L-A } Module(Col:NInCol)=9:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.22,-470.12,10636.2) CenPtnInPanel=(141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.22,-526.12,10636.1) CenPtnInPanel=(141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.22,-582.12,10635.9) CenPtnInPanel=(141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3967.22,-638.12,10635.7) CenPtnInPanel=(141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.67,-465.37,10632.8) CenPtnInPanel=(141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.67,-521.37,10632.6) CenPtnInPanel=(141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.67,-577.37,10632.4) CenPtnInPanel=(141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:191,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3963.67,-633.37,10632.3) CenPtnInPanel=(141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 192 { PMT Rich2 L-A } Module(Col:NInCol)=10:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,00 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.55,650.021,10590.1) CenPtnInPanel=(197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.55,594.021,10589.9) CenPtnInPanel=(197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.56,538.021,10589.8) CenPtnInPanel=(197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.56,482.021,10589.6) CenPtnInPanel=(197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,00 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991,654.771,10586.6) CenPtnInPanel=(197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991,598.771,10586.5) CenPtnInPanel=(197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991,542.771,10586.3) CenPtnInPanel=(197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:192,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.01,486.771,10586.1) CenPtnInPanel=(197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 193 { PMT Rich2 L-A } Module(Col:NInCol)=10:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.56,426.022,10589.4) CenPtnInPanel=(197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.56,370.022,10589.3) CenPtnInPanel=(197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.56,314.022,10589.1) CenPtnInPanel=(197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.56,258.022,10588.9) CenPtnInPanel=(197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.01,430.772,10586) CenPtnInPanel=(197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.01,374.772,10585.8) CenPtnInPanel=(197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.01,318.772,10585.6) CenPtnInPanel=(197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:193,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.01,262.772,10585.5) CenPtnInPanel=(197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 194 { PMT Rich2 L-A } Module(Col:NInCol)=10:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,216.059,10576.6) CenPtnInPanel=(211.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.78,215.986,10601.1) CenPtnInPanel=(183.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,188.059,10576.5) CenPtnInPanel=(211.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.78,187.986,10601) CenPtnInPanel=(183.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,160.059,10576.4) CenPtnInPanel=(211.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,159.987,10600.9) CenPtnInPanel=(183.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,132.059,10576.3) CenPtnInPanel=(211.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,131.987,10600.8) CenPtnInPanel=(183.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,104.059,10576.2) CenPtnInPanel=(211.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,103.987,10600.7) CenPtnInPanel=(183.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,76.0592,10576.2) CenPtnInPanel=(211.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,75.9869,10600.7) CenPtnInPanel=(183.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,48.0594,10576.1) CenPtnInPanel=(211.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,47.9871,10600.6) CenPtnInPanel=(183.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,20.0595,10576) CenPtnInPanel=(211.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,19.9872,10600.5) CenPtnInPanel=(183.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,220.809,10573.1) CenPtnInPanel=(211.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.23,220.736,10597.6) CenPtnInPanel=(183.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,192.809,10573) CenPtnInPanel=(211.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.23,192.737,10597.5) CenPtnInPanel=(183.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,164.809,10572.9) CenPtnInPanel=(211.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.23,164.737,10597.4) CenPtnInPanel=(183.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,136.809,10572.9) CenPtnInPanel=(211.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,136.737,10597.4) CenPtnInPanel=(183.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,108.809,10572.8) CenPtnInPanel=(211.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,108.737,10597.3) CenPtnInPanel=(183.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,80.8093,10572.7) CenPtnInPanel=(211.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,80.737,10597.2) CenPtnInPanel=(183.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,52.8094,10572.6) CenPtnInPanel=(211.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,52.7371,10597.1) CenPtnInPanel=(183.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,24.8095,10572.5) CenPtnInPanel=(211.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:194,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,24.7372,10597) CenPtnInPanel=(183.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 195 { PMT Rich2 L-A } Module(Col:NInCol)=10:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,-7.94041,10575.9) CenPtnInPanel=(211.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,-8.01271,10600.4) CenPtnInPanel=(183.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,-35.9403,10575.8) CenPtnInPanel=(211.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,-36.0126,10600.3) CenPtnInPanel=(183.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.35,-63.9402,10575.7) CenPtnInPanel=(211.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,-64.0125,10600.2) CenPtnInPanel=(183.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.36,-91.94,10575.7) CenPtnInPanel=(211.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,-92.0123,10600.2) CenPtnInPanel=(183.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.36,-119.94,10575.6) CenPtnInPanel=(211.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,-120.012,10600.1) CenPtnInPanel=(183.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.36,-147.94,10575.5) CenPtnInPanel=(211.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.79,-148.012,10600) CenPtnInPanel=(183.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.36,-175.94,10575.4) CenPtnInPanel=(211.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.8,-176.012,10599.9) CenPtnInPanel=(183.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4001.36,-203.94,10575.3) CenPtnInPanel=(211.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3987.8,-204.012,10599.8) CenPtnInPanel=(183.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,-3.19035,10572.5) CenPtnInPanel=(211.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,-3.26265,10596.9) CenPtnInPanel=(183.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,-31.1902,10572.4) CenPtnInPanel=(211.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,-31.2625,10596.9) CenPtnInPanel=(183.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.8,-59.1901,10572.3) CenPtnInPanel=(211.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,-59.2624,10596.8) CenPtnInPanel=(183.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.81,-87.19,10572.2) CenPtnInPanel=(211.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,-87.2623,10596.7) CenPtnInPanel=(183.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.81,-115.19,10572.1) CenPtnInPanel=(211.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,-115.262,10596.6) CenPtnInPanel=(183.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.81,-143.19,10572) CenPtnInPanel=(211.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,-143.262,10596.5) CenPtnInPanel=(183.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.81,-171.19,10572) CenPtnInPanel=(211.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.24,-171.262,10596.5) CenPtnInPanel=(183.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3997.81,-199.19,10571.9) CenPtnInPanel=(211.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:195,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3984.25,-199.262,10596.4) CenPtnInPanel=(183.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 196 { PMT Rich2 L-A } Module(Col:NInCol)=10:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.58,-245.976,10587.5) CenPtnInPanel=(197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.58,-301.975,10587.3) CenPtnInPanel=(197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.58,-357.975,10587.1) CenPtnInPanel=(197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.58,-413.975,10587) CenPtnInPanel=(197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.03,-241.225,10584) CenPtnInPanel=(197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.03,-297.225,10583.8) CenPtnInPanel=(197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.03,-353.225,10583.7) CenPtnInPanel=(197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:196,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.03,-409.225,10583.5) CenPtnInPanel=(197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 197 { PMT Rich2 L-A } Module(Col:NInCol)=10:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.59,-469.975,10586.8) CenPtnInPanel=(197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.59,-525.974,10586.6) CenPtnInPanel=(197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.59,-581.974,10586.5) CenPtnInPanel=(197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(3994.59,-637.974,10586.3) CenPtnInPanel=(197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.03,-465.225,10583.3) CenPtnInPanel=(197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.04,-521.224,10583.2) CenPtnInPanel=(197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.04,-577.224,10583) CenPtnInPanel=(197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:197,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(3991.04,-633.224,10582.9) CenPtnInPanel=(197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 198 { PMT Rich2 L-A } Module(Col:NInCol)=11:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,00 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.92,650.167,10540.7) CenPtnInPanel=(254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.92,594.167,10540.5) CenPtnInPanel=(254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.92,538.167,10540.3) CenPtnInPanel=(254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.93,482.167,10540.2) CenPtnInPanel=(254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,00 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.37,654.917,10537.2) CenPtnInPanel=(254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.37,598.917,10537) CenPtnInPanel=(254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.37,542.917,10536.9) CenPtnInPanel=(254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:198,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.37,486.917,10536.7) CenPtnInPanel=(254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 199 { PMT Rich2 L-A } Module(Col:NInCol)=11:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.93,426.167,10540) CenPtnInPanel=(254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.93,370.168,10539.8) CenPtnInPanel=(254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.93,314.168,10539.7) CenPtnInPanel=(254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.93,258.168,10539.5) CenPtnInPanel=(254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.38,430.918,10536.5) CenPtnInPanel=(254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.38,374.918,10536.4) CenPtnInPanel=(254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.38,318.918,10536.2) CenPtnInPanel=(254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:199,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.38,262.918,10536.1) CenPtnInPanel=(254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 200 { PMT Rich2 L-A } Module(Col:NInCol)=11:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,216.205,10527.1) CenPtnInPanel=(268.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.15,216.132,10551.6) CenPtnInPanel=(240.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,188.205,10527.1) CenPtnInPanel=(268.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.15,188.132,10551.6) CenPtnInPanel=(240.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,160.205,10527) CenPtnInPanel=(268.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,05 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.15,160.132,10551.5) CenPtnInPanel=(240.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,132.205,10526.9) CenPtnInPanel=(268.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.15,132.133,10551.4) CenPtnInPanel=(240.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,08 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,104.205,10526.8) CenPtnInPanel=(268.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,104.133,10551.3) CenPtnInPanel=(240.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,76.2051,10526.7) CenPtnInPanel=(268.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,76.1328,10551.2) CenPtnInPanel=(240.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,48.2052,10526.6) CenPtnInPanel=(268.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,48.1329,10551.1) CenPtnInPanel=(240.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,20.2054,10526.6) CenPtnInPanel=(268.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,20.1331,10551.1) CenPtnInPanel=(240.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.16,220.955,10523.7) CenPtnInPanel=(268.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.6,220.882,10548.2) CenPtnInPanel=(240.25,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,192.955,10523.6) CenPtnInPanel=(268.25,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.6,192.882,10548.1) CenPtnInPanel=(240.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,164.955,10523.5) CenPtnInPanel=(268.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,05 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.6,164.883,10548) CenPtnInPanel=(240.25,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,136.955,10523.4) CenPtnInPanel=(268.25,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.6,136.883,10547.9) CenPtnInPanel=(240.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,08 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,108.955,10523.4) CenPtnInPanel=(268.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.6,108.883,10547.8) CenPtnInPanel=(240.25,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,80.9552,10523.3) CenPtnInPanel=(268.25,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,80.8829,10547.8) CenPtnInPanel=(240.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,52.9553,10523.2) CenPtnInPanel=(268.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,52.883,10547.7) CenPtnInPanel=(240.25,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,24.9554,10523.1) CenPtnInPanel=(268.25,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:200,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,24.8831,10547.6) CenPtnInPanel=(240.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 201 { PMT Rich2 L-A } Module(Col:NInCol)=11:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,-7.79451,10526.5) CenPtnInPanel=(268.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-7.86681,10551) CenPtnInPanel=(240.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,-35.7944,10526.4) CenPtnInPanel=(268.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-35.8667,10550.9) CenPtnInPanel=(240.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,-63.7943,10526.3) CenPtnInPanel=(268.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-63.8666,10550.8) CenPtnInPanel=(240.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.72,-91.7941,10526.2) CenPtnInPanel=(268.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-91.8665,10550.7) CenPtnInPanel=(240.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.73,-119.794,10526.2) CenPtnInPanel=(268.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-119.866,10550.6) CenPtnInPanel=(240.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.73,-147.794,10526.1) CenPtnInPanel=(268.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-147.866,10550.6) CenPtnInPanel=(240.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.73,-175.794,10526) CenPtnInPanel=(268.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-175.866,10550.5) CenPtnInPanel=(240.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4028.73,-203.794,10525.9) CenPtnInPanel=(268.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4015.16,-203.866,10550.4) CenPtnInPanel=(240.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,-3.04445,10523) CenPtnInPanel=(268.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-3.11676,10547.5) CenPtnInPanel=(240.25,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,-31.0443,10522.9) CenPtnInPanel=(268.25,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-31.1166,10547.4) CenPtnInPanel=(240.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,-59.0442,10522.9) CenPtnInPanel=(268.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-59.1165,10547.4) CenPtnInPanel=(240.25,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,-87.0441,10522.8) CenPtnInPanel=(268.25,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-87.1164,10547.3) CenPtnInPanel=(240.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.17,-115.044,10522.7) CenPtnInPanel=(268.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-115.116,10547.2) CenPtnInPanel=(240.25,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.18,-143.044,10522.6) CenPtnInPanel=(268.25,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-143.116,10547.1) CenPtnInPanel=(240.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.18,-171.044,10522.5) CenPtnInPanel=(268.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-171.116,10547) CenPtnInPanel=(240.25,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4025.18,-199.044,10522.4) CenPtnInPanel=(268.25,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:201,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4011.61,-199.116,10546.9) CenPtnInPanel=(240.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 202 { PMT Rich2 L-A } Module(Col:NInCol)=11:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.95,-245.83,10538) CenPtnInPanel=(254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.95,-301.829,10537.9) CenPtnInPanel=(254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.95,-357.829,10537.7) CenPtnInPanel=(254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.95,-413.829,10537.5) CenPtnInPanel=(254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.4,-241.08,10534.6) CenPtnInPanel=(254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.4,-297.079,10534.4) CenPtnInPanel=(254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.4,-353.079,10534.2) CenPtnInPanel=(254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:202,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.4,-409.079,10534.1) CenPtnInPanel=(254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 203 { PMT Rich2 L-A } Module(Col:NInCol)=11:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.95,-469.829,10537.4) CenPtnInPanel=(254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,01 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.96,-525.828,10537.2) CenPtnInPanel=(254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.96,-581.828,10537) CenPtnInPanel=(254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,03 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4021.96,-637.828,10536.9) CenPtnInPanel=(254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.4,-465.079,10533.9) CenPtnInPanel=(254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,01 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.41,-521.078,10533.8) CenPtnInPanel=(254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.41,-577.078,10533.6) CenPtnInPanel=(254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:203,03 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4018.41,-633.078,10533.4) CenPtnInPanel=(254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 204 { PMT Rich2 L-A } Module(Col:NInCol)=12:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,00 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.29,650.312,10491.2) CenPtnInPanel=(310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.29,594.313,10491.1) CenPtnInPanel=(310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.29,538.313,10490.9) CenPtnInPanel=(310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.29,482.313,10490.7) CenPtnInPanel=(310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,00 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.74,655.062,10487.8) CenPtnInPanel=(310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.74,599.063,10487.6) CenPtnInPanel=(310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.74,543.063,10487.4) CenPtnInPanel=(310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:204,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.74,487.063,10487.3) CenPtnInPanel=(310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 205 { PMT Rich2 L-A } Module(Col:NInCol)=12:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.3,426.313,10490.6) CenPtnInPanel=(310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.3,370.314,10490.4) CenPtnInPanel=(310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.3,314.314,10490.2) CenPtnInPanel=(310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.3,258.314,10490.1) CenPtnInPanel=(310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.75,431.063,10487.1) CenPtnInPanel=(310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.75,375.064,10487) CenPtnInPanel=(310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,02 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.75,319.064,10486.8) CenPtnInPanel=(310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:205,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.75,263.064,10486.6) CenPtnInPanel=(310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 206 { PMT Rich2 L-A } Module(Col:NInCol)=12:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,00 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.08,216.35,10477.7) CenPtnInPanel=(324.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,01 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.52,216.278,10502.2) CenPtnInPanel=(296.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,02 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.08,188.351,10477.6) CenPtnInPanel=(324.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.52,188.278,10502.1) CenPtnInPanel=(296.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,160.351,10477.5) CenPtnInPanel=(324.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.52,160.278,10502) CenPtnInPanel=(296.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,06 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,132.351,10477.5) CenPtnInPanel=(324.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.52,132.278,10502) CenPtnInPanel=(296.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,104.351,10477.4) CenPtnInPanel=(324.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.52,104.279,10501.9) CenPtnInPanel=(296.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,76.351,10477.3) CenPtnInPanel=(324.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.52,76.2787,10501.8) CenPtnInPanel=(296.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,48.3511,10477.2) CenPtnInPanel=(324.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,48.2788,10501.7) CenPtnInPanel=(296.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,20.3513,10477.1) CenPtnInPanel=(324.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,20.279,10501.6) CenPtnInPanel=(296.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,00 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.53,221.1,10474.3) CenPtnInPanel=(324.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,01 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.97,221.028,10498.7) CenPtnInPanel=(296.75,210,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,02 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.53,193.101,10474.2) CenPtnInPanel=(324.75,182,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.97,193.028,10498.7) CenPtnInPanel=(296.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,04 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.53,165.101,10474.1) CenPtnInPanel=(324.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,05 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.97,165.028,10498.6) CenPtnInPanel=(296.75,154,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,06 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,137.101,10474) CenPtnInPanel=(324.75,126,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.97,137.029,10498.5) CenPtnInPanel=(296.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,08 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,109.101,10473.9) CenPtnInPanel=(324.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.97,109.029,10498.4) CenPtnInPanel=(296.75,98,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,10 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,81.1011,10473.8) CenPtnInPanel=(324.75,70,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,11 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.97,81.0288,10498.3) CenPtnInPanel=(296.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,53.1012,10473.8) CenPtnInPanel=(324.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.97,53.0289,10498.3) CenPtnInPanel=(296.75,42,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,25.1013,10473.7) CenPtnInPanel=(324.75,14,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:206,15 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,25.029,10498.2) CenPtnInPanel=(296.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 207 { PMT Rich2 L-A } Module(Col:NInCol)=12:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,-7.64862,10477.1) CenPtnInPanel=(324.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-7.72092,10501.5) CenPtnInPanel=(296.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,-35.6485,10477) CenPtnInPanel=(324.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-35.7208,10501.5) CenPtnInPanel=(296.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,-63.6484,10476.9) CenPtnInPanel=(324.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-63.7207,10501.4) CenPtnInPanel=(296.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,-91.6483,10476.8) CenPtnInPanel=(324.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-91.7206,10501.3) CenPtnInPanel=(296.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,-119.648,10476.7) CenPtnInPanel=(324.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-119.72,10501.2) CenPtnInPanel=(296.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.09,-147.648,10476.6) CenPtnInPanel=(324.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-147.72,10501.1) CenPtnInPanel=(296.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.1,-175.648,10476.6) CenPtnInPanel=(324.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-175.72,10501.1) CenPtnInPanel=(296.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,14 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4056.1,-203.648,10476.5) CenPtnInPanel=(324.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4042.53,-203.72,10501) CenPtnInPanel=(296.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,00 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,-2.89856,10473.6) CenPtnInPanel=(324.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-2.97086,10498.1) CenPtnInPanel=(296.75,-14,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,-30.8984,10473.5) CenPtnInPanel=(324.75,-42,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-30.9707,10498) CenPtnInPanel=(296.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,04 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,-58.8983,10473.4) CenPtnInPanel=(324.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,05 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-58.9706,10497.9) CenPtnInPanel=(296.75,-70,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,-86.8982,10473.3) CenPtnInPanel=(324.75,-98,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-86.9705,10497.8) CenPtnInPanel=(296.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,-114.898,10473.3) CenPtnInPanel=(324.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-114.97,10497.8) CenPtnInPanel=(296.75,-126,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,-142.898,10473.2) CenPtnInPanel=(324.75,-154,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-142.97,10497.7) CenPtnInPanel=(296.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.54,-170.898,10473.1) CenPtnInPanel=(324.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07647,3.13626) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-170.97,10497.6) CenPtnInPanel=(296.75,-182,-30) (x,y,z)RotnInGlo=(1.57375,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,14 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4052.55,-198.898,10473) CenPtnInPanel=(324.75,-210,-30) (x,y,z)RotnInGlo=(1.56784,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 L-A PD[Mod,NInMod]:207,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4038.98,-198.97,10497.5) CenPtnInPanel=(296.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 208 { PMT Rich2 L-A } Module(Col:NInCol)=12:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.32,-245.684,10488.6) CenPtnInPanel=(310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.32,-301.684,10488.4) CenPtnInPanel=(310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.32,-357.683,10488.3) CenPtnInPanel=(310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.32,-413.683,10488.1) CenPtnInPanel=(310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.77,-240.934,10485.1) CenPtnInPanel=(310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.77,-296.933,10485) CenPtnInPanel=(310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.77,-352.933,10484.8) CenPtnInPanel=(310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:208,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.77,-408.933,10484.7) CenPtnInPanel=(310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 209 { PMT Rich2 L-A } Module(Col:NInCol)=12:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,00 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.32,-469.683,10487.9) CenPtnInPanel=(310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,01 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.32,-525.683,10487.8) CenPtnInPanel=(310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,02 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.33,-581.682,10487.6) CenPtnInPanel=(310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,03 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(4049.33,-637.682,10487.4) CenPtnInPanel=(310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG  -> [ Rich2 CSide-right NumPDModules=92 ModNumOffset=222 ZShift=-36.2 CentrePtnInGlo=(-3698.95,-1.0211,11109) (x,y)HalfSizes=+-(400,739.375)  DetectionPlane=[ 0.874731 0.00144857 -0.484607 8619.09 ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,00 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.77,-464.933,10484.5) CenPtnInPanel=(310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,01 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.77,-520.932,10484.3) CenPtnInPanel=(310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,02 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.78,-576.932,10484.2) CenPtnInPanel=(310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 L-A PD[Mod,NInMod]:209,03 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(4045.78,-632.932,10484) CenPtnInPanel=(310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06512,0.00533069) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG  -> [ Rich2 CSide-right NumPDModules=92 ModNumOffset=222 ZShift=-36.2 CentrePtnInGlo=(-3726.94,-0.865358,11053.2) (x,y)HalfSizes=+-(339,672)  DetectionPlane=[ 0.874731 0.00144857 -0.484607 8616.51 ]
 TestDerivedDets     DEBUG   PDPanelToGlo=
-TestDerivedDets     DEBUG [ 0.484609 -3e-05 -0.874731 -3698.95
-TestDerivedDets     DEBUG   -0.0025528 0.999996 -0.00144857 -1.0211
-TestDerivedDets     DEBUG   0.874727 0.002935 0.484607 11109 ]
+TestDerivedDets     DEBUG [ 0.484609 -3e-05 -0.874731 -3726.94
+TestDerivedDets     DEBUG   -0.0025528 0.999996 -0.00144857 -0.865358
+TestDerivedDets     DEBUG   0.874727 0.002935 0.484607 11053.2 ]
 TestDerivedDets     DEBUG   GloToPDPanel=
-TestDerivedDets     DEBUG [ 0.484609 -0.0025528 0.874727 -7924.8
-TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -31.6948
-TestDerivedDets     DEBUG   -0.874731 -0.00144857 0.484607 -8619.09 ]
+TestDerivedDets     DEBUG [ 0.484609 -0.0025528 0.874727 -7862.39
+TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -31.6875
+TestDerivedDets     DEBUG   -0.874731 -0.00144857 0.484607 -8616.51 ]
 TestDerivedDets     DEBUG   GloToLoc=
-TestDerivedDets     DEBUG [ 0.484609 -0.0025528 0.874727 -7524.8
-TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -36.9799
-TestDerivedDets     DEBUG   -0.874731 -0.00144857 0.484607 -8655.29 ]
+TestDerivedDets     DEBUG [ 0.484609 -0.0025528 0.874727 -7523.39
+TestDerivedDets     DEBUG   -3e-05 0.999996 0.002935 -40.8999
+TestDerivedDets     DEBUG   -0.874731 -0.00144857 0.484607 -8652.71 ]
 TestDerivedDets     DEBUG   LocToGlo=
-TestDerivedDets     DEBUG [ 0.484609 -3e-05 -0.874731 -3924.46
-TestDerivedDets     DEBUG   -0.0025528 0.999996 -0.00144857 5.23264
-TestDerivedDets     DEBUG   0.874727 0.002935 0.484607 10776.7 ]
+TestDerivedDets     DEBUG [ 0.484609 -3e-05 -0.874731 -3922.89
+TestDerivedDets     DEBUG   -0.0025528 0.999996 -0.00144857 9.15995
+TestDerivedDets     DEBUG   0.874727 0.002935 0.484607 10774.2 ]
 TestDerivedDets     DEBUG   -> PD Module 222 { PMT Rich2 R-C } Module(Col:NInCol)=1:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,00 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.83,650.067,10492.2) CenPtnInPanel=(-310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.83,594.067,10492) CenPtnInPanel=(-310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.83,538.067,10491.9) CenPtnInPanel=(-310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.83,482.067,10491.7) CenPtnInPanel=(-310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,00 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.26,653.994,10489.7) CenPtnInPanel=(-310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,01 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.26,597.994,10489.6) CenPtnInPanel=(-310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,02 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.26,541.994,10489.4) CenPtnInPanel=(-310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:222,03 Mod[Col,NInCol]:01,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.26,485.995,10489.2) CenPtnInPanel=(-310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 223 { PMT Rich2 R-C } Module(Col:NInCol)=1:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.82,426.068,10491.5) CenPtnInPanel=(-310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.82,370.068,10491.4) CenPtnInPanel=(-310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.82,314.068,10491.2) CenPtnInPanel=(-310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.82,258.068,10491.1) CenPtnInPanel=(-310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,00 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.25,429.995,10489.1) CenPtnInPanel=(-310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,01 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.25,373.995,10488.9) CenPtnInPanel=(-310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,02 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.25,317.995,10488.7) CenPtnInPanel=(-310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:223,03 Mod[Col,NInCol]:01,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.25,261.996,10488.6) CenPtnInPanel=(-310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 224 { PMT Rich2 R-C } Module(Col:NInCol)=1:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,216.033,10503.2) CenPtnInPanel=(-296.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,216.104,10478.7) CenPtnInPanel=(-324.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,188.033,10503.1) CenPtnInPanel=(-296.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,188.104,10478.6) CenPtnInPanel=(-324.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,160.033,10503) CenPtnInPanel=(-296.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,160.104,10478.5) CenPtnInPanel=(-324.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,132.033,10502.9) CenPtnInPanel=(-296.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,132.105,10478.4) CenPtnInPanel=(-324.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,104.033,10502.8) CenPtnInPanel=(-296.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,104.105,10478.4) CenPtnInPanel=(-324.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,76.0333,10502.8) CenPtnInPanel=(-296.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,76.1048,10478.3) CenPtnInPanel=(-324.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,48.0335,10502.7) CenPtnInPanel=(-296.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,48.1049,10478.2) CenPtnInPanel=(-324.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,20.0336,10502.6) CenPtnInPanel=(-296.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.6,20.1051,10478.1) CenPtnInPanel=(-324.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,00 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,219.96,10500.7) CenPtnInPanel=(-296.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,01 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,220.032,10476.2) CenPtnInPanel=(-324.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,02 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,191.96,10500.6) CenPtnInPanel=(-296.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,03 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,192.032,10476.1) CenPtnInPanel=(-324.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,04 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,163.96,10500.5) CenPtnInPanel=(-296.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,05 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,164.032,10476) CenPtnInPanel=(-324.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,06 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,135.96,10500.5) CenPtnInPanel=(-296.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,07 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,136.032,10476) CenPtnInPanel=(-324.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,08 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,107.961,10500.4) CenPtnInPanel=(-296.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,09 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,108.032,10475.9) CenPtnInPanel=(-324.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,10 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,79.9606,10500.3) CenPtnInPanel=(-296.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,11 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,80.0321,10475.8) CenPtnInPanel=(-324.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,12 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,51.9608,10500.2) CenPtnInPanel=(-296.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,13 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,52.0322,10475.7) CenPtnInPanel=(-324.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,14 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,23.9609,10500.1) CenPtnInPanel=(-296.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:224,15 Mod[Col,NInCol]:01,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,24.0324,10475.6) CenPtnInPanel=(-324.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 225 { PMT Rich2 R-C } Module(Col:NInCol)=1:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,-7.9663,10502.5) CenPtnInPanel=(-296.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-7.89482,10478) CenPtnInPanel=(-324.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.03,-35.9662,10502.4) CenPtnInPanel=(-296.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-35.8947,10477.9) CenPtnInPanel=(-324.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.02,-63.9661,10502.4) CenPtnInPanel=(-296.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-63.8946,10477.9) CenPtnInPanel=(-324.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.02,-91.9659,10502.3) CenPtnInPanel=(-296.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-91.8945,10477.8) CenPtnInPanel=(-324.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.02,-119.966,10502.2) CenPtnInPanel=(-296.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-119.894,10477.7) CenPtnInPanel=(-324.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.02,-147.966,10502.1) CenPtnInPanel=(-296.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-147.894,10477.6) CenPtnInPanel=(-324.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.02,-175.966,10502) CenPtnInPanel=(-296.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-175.894,10477.5) CenPtnInPanel=(-324.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4042.02,-203.965,10501.9) CenPtnInPanel=(-296.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4055.59,-203.894,10477.4) CenPtnInPanel=(-324.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,00 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,-4.03899,10500) CenPtnInPanel=(-296.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,01 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.03,-3.96751,10475.6) CenPtnInPanel=(-324.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,02 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.46,-32.0389,10500) CenPtnInPanel=(-296.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,03 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.02,-31.9674,10475.5) CenPtnInPanel=(-324.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,04 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.45,-60.0388,10499.9) CenPtnInPanel=(-296.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,05 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.02,-59.9673,10475.4) CenPtnInPanel=(-324.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,06 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.45,-88.0386,10499.8) CenPtnInPanel=(-296.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,07 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.02,-87.9672,10475.3) CenPtnInPanel=(-324.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,08 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.45,-116.039,10499.7) CenPtnInPanel=(-296.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,09 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.02,-115.967,10475.2) CenPtnInPanel=(-324.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,10 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.45,-144.038,10499.6) CenPtnInPanel=(-296.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,11 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.02,-143.967,10475.1) CenPtnInPanel=(-324.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,12 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.45,-172.038,10499.6) CenPtnInPanel=(-296.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,13 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.02,-171.967,10475.1) CenPtnInPanel=(-324.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,14 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4040.45,-200.038,10499.5) CenPtnInPanel=(-296.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:225,15 Mod[Col,NInCol]:01,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4054.02,-199.967,10475) CenPtnInPanel=(-324.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 226 { PMT Rich2 R-C } Module(Col:NInCol)=1:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.8,-245.93,10489.6) CenPtnInPanel=(-310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.8,-301.929,10489.4) CenPtnInPanel=(-310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.8,-357.929,10489.2) CenPtnInPanel=(-310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.8,-413.929,10489.1) CenPtnInPanel=(-310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,00 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.23,-242.002,10487.1) CenPtnInPanel=(-310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,01 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.23,-298.002,10486.9) CenPtnInPanel=(-310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,02 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.23,-354.002,10486.8) CenPtnInPanel=(-310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:226,03 Mod[Col,NInCol]:01,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.23,-410.002,10486.6) CenPtnInPanel=(-310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 227 { PMT Rich2 R-C } Module(Col:NInCol)=1:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.8,-469.929,10488.9) CenPtnInPanel=(-310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.79,-525.928,10488.7) CenPtnInPanel=(-310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.79,-581.928,10488.6) CenPtnInPanel=(-310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4048.79,-637.928,10488.4) CenPtnInPanel=(-310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,00 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.23,-466.001,10486.4) CenPtnInPanel=(-310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,01 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.23,-522.001,10486.3) CenPtnInPanel=(-310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,02 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.22,-578.001,10486.1) CenPtnInPanel=(-310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:227,03 Mod[Col,NInCol]:01,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4047.22,-634.001,10486) CenPtnInPanel=(-310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 228 { PMT Rich2 R-C } Module(Col:NInCol)=2:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,00 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.45,649.922,10541.6) CenPtnInPanel=(-254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,01 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.45,593.923,10541.5) CenPtnInPanel=(-254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.45,537.923,10541.3) CenPtnInPanel=(-254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.44,481.923,10541.1) CenPtnInPanel=(-254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,00 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.88,653.85,10539.2) CenPtnInPanel=(-254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,01 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.88,597.85,10539) CenPtnInPanel=(-254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,02 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.88,541.85,10538.8) CenPtnInPanel=(-254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:228,03 Mod[Col,NInCol]:02,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.88,485.85,10538.7) CenPtnInPanel=(-254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 229 { PMT Rich2 R-C } Module(Col:NInCol)=2:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.44,425.923,10541) CenPtnInPanel=(-254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.44,369.924,10540.8) CenPtnInPanel=(-254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.44,313.924,10540.6) CenPtnInPanel=(-254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.44,257.924,10540.5) CenPtnInPanel=(-254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,00 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.87,429.851,10538.5) CenPtnInPanel=(-254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,01 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.87,373.851,10538.3) CenPtnInPanel=(-254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,02 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.87,317.851,10538.2) CenPtnInPanel=(-254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:229,03 Mod[Col,NInCol]:02,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.87,261.851,10538) CenPtnInPanel=(-254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 230 { PMT Rich2 R-C } Module(Col:NInCol)=2:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,215.889,10552.6) CenPtnInPanel=(-240.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,215.96,10528.1) CenPtnInPanel=(-268.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,187.889,10552.5) CenPtnInPanel=(-240.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,187.96,10528) CenPtnInPanel=(-268.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,159.889,10552.4) CenPtnInPanel=(-240.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,159.96,10527.9) CenPtnInPanel=(-268.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,131.889,10552.3) CenPtnInPanel=(-240.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,131.96,10527.9) CenPtnInPanel=(-268.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,103.889,10552.3) CenPtnInPanel=(-240.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,103.96,10527.8) CenPtnInPanel=(-268.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,75.8891,10552.2) CenPtnInPanel=(-240.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,75.9606,10527.7) CenPtnInPanel=(-268.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,47.8892,10552.1) CenPtnInPanel=(-240.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,47.9607,10527.6) CenPtnInPanel=(-268.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,19.8893,10552) CenPtnInPanel=(-240.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.22,19.9608,10527.5) CenPtnInPanel=(-268.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,00 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,219.816,10550.1) CenPtnInPanel=(-240.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,01 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,219.887,10525.6) CenPtnInPanel=(-268.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,02 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,191.816,10550) CenPtnInPanel=(-240.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,03 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,191.887,10525.6) CenPtnInPanel=(-268.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,04 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,163.816,10550) CenPtnInPanel=(-240.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,05 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,163.888,10525.5) CenPtnInPanel=(-268.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,06 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,135.816,10549.9) CenPtnInPanel=(-240.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,07 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,135.888,10525.4) CenPtnInPanel=(-268.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,08 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,107.816,10549.8) CenPtnInPanel=(-240.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,09 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,107.888,10525.3) CenPtnInPanel=(-268.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,10 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,79.8164,10549.7) CenPtnInPanel=(-240.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,11 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,79.8879,10525.2) CenPtnInPanel=(-268.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,12 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,51.8165,10549.6) CenPtnInPanel=(-240.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,13 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,51.888,10525.1) CenPtnInPanel=(-268.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,14 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,23.8167,10549.6) CenPtnInPanel=(-240.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:230,15 Mod[Col,NInCol]:02,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.65,23.8881,10525.1) CenPtnInPanel=(-268.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 231 { PMT Rich2 R-C } Module(Col:NInCol)=2:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.65,-8.11053,10551.9) CenPtnInPanel=(-240.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-8.03906,10527.4) CenPtnInPanel=(-268.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.64,-36.1104,10551.9) CenPtnInPanel=(-240.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-36.0389,10527.4) CenPtnInPanel=(-268.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.64,-64.1103,10551.8) CenPtnInPanel=(-240.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-64.0388,10527.3) CenPtnInPanel=(-268.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.64,-92.1102,10551.7) CenPtnInPanel=(-240.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-92.0387,10527.2) CenPtnInPanel=(-268.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.64,-120.11,10551.6) CenPtnInPanel=(-240.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-120.039,10527.1) CenPtnInPanel=(-268.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.64,-148.11,10551.5) CenPtnInPanel=(-240.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-148.038,10527) CenPtnInPanel=(-268.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.64,-176.11,10551.4) CenPtnInPanel=(-240.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-176.038,10527) CenPtnInPanel=(-268.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4014.64,-204.11,10551.4) CenPtnInPanel=(-240.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4028.21,-204.038,10526.9) CenPtnInPanel=(-268.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,00 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,-4.18322,10549.5) CenPtnInPanel=(-240.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,01 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-4.11175,10525) CenPtnInPanel=(-268.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,02 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.08,-32.1831,10549.4) CenPtnInPanel=(-240.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,03 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-32.1116,10524.9) CenPtnInPanel=(-268.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,04 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.07,-60.183,10549.3) CenPtnInPanel=(-240.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,05 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-60.1115,10524.8) CenPtnInPanel=(-268.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,06 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.07,-88.1829,10549.2) CenPtnInPanel=(-240.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,07 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-88.1114,10524.7) CenPtnInPanel=(-268.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,08 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.07,-116.183,10549.1) CenPtnInPanel=(-240.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,09 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-116.111,10524.6) CenPtnInPanel=(-268.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,10 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.07,-144.183,10549.1) CenPtnInPanel=(-240.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,11 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-144.111,10524.6) CenPtnInPanel=(-268.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,12 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.07,-172.183,10549) CenPtnInPanel=(-240.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,13 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-172.111,10524.5) CenPtnInPanel=(-268.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,14 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4013.07,-200.182,10548.9) CenPtnInPanel=(-240.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:231,15 Mod[Col,NInCol]:02,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4026.64,-200.111,10524.4) CenPtnInPanel=(-268.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 232 { PMT Rich2 R-C } Module(Col:NInCol)=2:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.42,-246.074,10539) CenPtnInPanel=(-254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.42,-302.074,10538.8) CenPtnInPanel=(-254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.42,-358.073,10538.7) CenPtnInPanel=(-254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.42,-414.073,10538.5) CenPtnInPanel=(-254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,00 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.85,-242.146,10536.5) CenPtnInPanel=(-254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,01 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.85,-298.146,10536.4) CenPtnInPanel=(-254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,02 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.85,-354.146,10536.2) CenPtnInPanel=(-254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:232,03 Mod[Col,NInCol]:02,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.85,-410.146,10536) CenPtnInPanel=(-254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 233 { PMT Rich2 R-C } Module(Col:NInCol)=2:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.42,-470.073,10538.3) CenPtnInPanel=(-254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.41,-526.073,10538.2) CenPtnInPanel=(-254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.41,-582.072,10538) CenPtnInPanel=(-254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4021.41,-638.072,10537.8) CenPtnInPanel=(-254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,00 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.85,-466.145,10535.9) CenPtnInPanel=(-254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,01 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.84,-522.145,10535.7) CenPtnInPanel=(-254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,02 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.84,-578.145,10535.5) CenPtnInPanel=(-254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:233,03 Mod[Col,NInCol]:02,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-4019.84,-634.145,10535.4) CenPtnInPanel=(-254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 234 { PMT Rich2 R-C } Module(Col:NInCol)=3:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,00 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.07,649.778,10591) CenPtnInPanel=(-197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.07,593.778,10590.9) CenPtnInPanel=(-197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.07,537.779,10590.7) CenPtnInPanel=(-197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.06,481.779,10590.6) CenPtnInPanel=(-197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,00 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.5,653.705,10588.6) CenPtnInPanel=(-197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,01 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.5,597.706,10588.4) CenPtnInPanel=(-197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,02 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.5,541.706,10588.2) CenPtnInPanel=(-197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:234,03 Mod[Col,NInCol]:03,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.49,485.706,10588.1) CenPtnInPanel=(-197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 235 { PMT Rich2 R-C } Module(Col:NInCol)=3:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.06,425.779,10590.4) CenPtnInPanel=(-197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.06,369.779,10590.2) CenPtnInPanel=(-197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.06,313.78,10590.1) CenPtnInPanel=(-197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.06,257.78,10589.9) CenPtnInPanel=(-197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,00 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.49,429.706,10587.9) CenPtnInPanel=(-197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,01 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.49,373.707,10587.8) CenPtnInPanel=(-197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,02 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.49,317.707,10587.6) CenPtnInPanel=(-197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:235,03 Mod[Col,NInCol]:03,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.49,261.707,10587.4) CenPtnInPanel=(-197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 236 { PMT Rich2 R-C } Module(Col:NInCol)=3:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,215.744,10602) CenPtnInPanel=(-183.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.84,215.816,10577.5) CenPtnInPanel=(-211.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,187.744,10601.9) CenPtnInPanel=(-183.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.84,187.816,10577.4) CenPtnInPanel=(-211.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,159.745,10601.9) CenPtnInPanel=(-183.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.84,159.816,10577.4) CenPtnInPanel=(-211.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,131.745,10601.8) CenPtnInPanel=(-183.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.84,131.816,10577.3) CenPtnInPanel=(-211.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,103.745,10601.7) CenPtnInPanel=(-183.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.84,103.816,10577.2) CenPtnInPanel=(-211.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,75.7449,10601.6) CenPtnInPanel=(-183.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.84,75.8163,10577.1) CenPtnInPanel=(-211.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,47.745,10601.5) CenPtnInPanel=(-183.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.84,47.8165,10577) CenPtnInPanel=(-211.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,19.7451,10601.4) CenPtnInPanel=(-183.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,19.8166,10576.9) CenPtnInPanel=(-211.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,00 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,219.672,10599.5) CenPtnInPanel=(-183.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,01 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,219.743,10575.1) CenPtnInPanel=(-211.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,02 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,191.672,10599.5) CenPtnInPanel=(-183.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,03 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,191.743,10575) CenPtnInPanel=(-211.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,04 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,163.672,10599.4) CenPtnInPanel=(-183.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,05 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,163.743,10574.9) CenPtnInPanel=(-211.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,06 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,135.672,10599.3) CenPtnInPanel=(-183.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,07 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,135.743,10574.8) CenPtnInPanel=(-211.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,08 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,107.672,10599.2) CenPtnInPanel=(-183.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,09 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,107.744,10574.7) CenPtnInPanel=(-211.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,10 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,79.6722,10599.1) CenPtnInPanel=(-183.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,11 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,79.7437,10574.6) CenPtnInPanel=(-211.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,12 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,51.6723,10599.1) CenPtnInPanel=(-183.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,13 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,51.7438,10574.6) CenPtnInPanel=(-211.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,14 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,23.6724,10599) CenPtnInPanel=(-183.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:236,15 Mod[Col,NInCol]:03,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.27,23.7439,10574.5) CenPtnInPanel=(-211.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 237 { PMT Rich2 R-C } Module(Col:NInCol)=3:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.27,-8.25477,10601.4) CenPtnInPanel=(-183.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-8.18329,10576.9) CenPtnInPanel=(-211.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.26,-36.2546,10601.3) CenPtnInPanel=(-183.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-36.1832,10576.8) CenPtnInPanel=(-211.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.26,-64.2545,10601.2) CenPtnInPanel=(-183.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-64.183,10576.7) CenPtnInPanel=(-211.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.26,-92.2544,10601.1) CenPtnInPanel=(-183.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-92.1829,10576.6) CenPtnInPanel=(-211.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.26,-120.254,10601) CenPtnInPanel=(-183.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-120.183,10576.5) CenPtnInPanel=(-211.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.26,-148.254,10600.9) CenPtnInPanel=(-183.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-148.183,10576.5) CenPtnInPanel=(-211.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.26,-176.254,10600.9) CenPtnInPanel=(-183.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-176.183,10576.4) CenPtnInPanel=(-211.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3987.26,-204.254,10600.8) CenPtnInPanel=(-183.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-4000.83,-204.182,10576.3) CenPtnInPanel=(-211.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,00 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.7,-4.32746,10598.9) CenPtnInPanel=(-183.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,01 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-4.25598,10574.4) CenPtnInPanel=(-211.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,02 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.69,-32.3273,10598.8) CenPtnInPanel=(-183.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,03 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-32.2559,10574.3) CenPtnInPanel=(-211.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,04 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.69,-60.3272,10598.7) CenPtnInPanel=(-183.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,05 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-60.2557,10574.2) CenPtnInPanel=(-211.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,06 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.69,-88.3271,10598.6) CenPtnInPanel=(-183.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,07 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-88.2556,10574.2) CenPtnInPanel=(-211.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,08 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.69,-116.327,10598.6) CenPtnInPanel=(-183.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,09 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-116.255,10574.1) CenPtnInPanel=(-211.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,10 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.69,-144.327,10598.5) CenPtnInPanel=(-183.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,11 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-144.255,10574) CenPtnInPanel=(-211.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,12 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.69,-172.327,10598.4) CenPtnInPanel=(-183.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,13 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-172.255,10573.9) CenPtnInPanel=(-211.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,14 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3985.69,-200.327,10598.3) CenPtnInPanel=(-183.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:237,15 Mod[Col,NInCol]:03,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3999.26,-200.255,10573.8) CenPtnInPanel=(-211.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 238 { PMT Rich2 R-C } Module(Col:NInCol)=3:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.04,-246.218,10588.4) CenPtnInPanel=(-197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.04,-302.218,10588.3) CenPtnInPanel=(-197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.04,-358.218,10588.1) CenPtnInPanel=(-197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.04,-414.217,10587.9) CenPtnInPanel=(-197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,00 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.47,-242.291,10585.9) CenPtnInPanel=(-197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,01 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.47,-298.29,10585.8) CenPtnInPanel=(-197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,02 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.47,-354.29,10585.6) CenPtnInPanel=(-197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:238,03 Mod[Col,NInCol]:03,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.47,-410.29,10585.5) CenPtnInPanel=(-197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 239 { PMT Rich2 R-C } Module(Col:NInCol)=3:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.04,-470.217,10587.8) CenPtnInPanel=(-197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.03,-526.217,10587.6) CenPtnInPanel=(-197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.03,-582.217,10587.4) CenPtnInPanel=(-197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3994.03,-638.216,10587.3) CenPtnInPanel=(-197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,00 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.47,-466.29,10585.3) CenPtnInPanel=(-197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,01 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.46,-522.289,10585.1) CenPtnInPanel=(-197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,02 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.46,-578.289,10585) CenPtnInPanel=(-197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:239,03 Mod[Col,NInCol]:03,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3992.46,-634.289,10584.8) CenPtnInPanel=(-197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 240 { PMT Rich2 R-C } Module(Col:NInCol)=4:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,00 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.69,649.634,10640.5) CenPtnInPanel=(-141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.69,593.634,10640.3) CenPtnInPanel=(-141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.69,537.634,10640.1) CenPtnInPanel=(-141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.68,481.635,10640) CenPtnInPanel=(-141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,00 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.12,653.561,10638) CenPtnInPanel=(-141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,01 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.12,597.561,10637.8) CenPtnInPanel=(-141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,02 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.12,541.562,10637.7) CenPtnInPanel=(-141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:240,03 Mod[Col,NInCol]:04,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.11,485.562,10637.5) CenPtnInPanel=(-141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 241 { PMT Rich2 R-C } Module(Col:NInCol)=4:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.68,425.635,10639.8) CenPtnInPanel=(-141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.68,369.635,10639.6) CenPtnInPanel=(-141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.68,313.635,10639.5) CenPtnInPanel=(-141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.68,257.636,10639.3) CenPtnInPanel=(-141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,00 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.11,429.562,10637.3) CenPtnInPanel=(-141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,01 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.11,373.562,10637.2) CenPtnInPanel=(-141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,02 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.11,317.563,10637) CenPtnInPanel=(-141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:241,03 Mod[Col,NInCol]:04,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.11,261.563,10636.8) CenPtnInPanel=(-141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 242 { PMT Rich2 R-C } Module(Col:NInCol)=4:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,215.6,10651.4) CenPtnInPanel=(-127.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.46,215.672,10626.9) CenPtnInPanel=(-155.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,187.6,10651.4) CenPtnInPanel=(-127.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.46,187.672,10626.9) CenPtnInPanel=(-155.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,159.6,10651.3) CenPtnInPanel=(-127.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.46,159.672,10626.8) CenPtnInPanel=(-155.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,131.6,10651.2) CenPtnInPanel=(-127.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.46,131.672,10626.7) CenPtnInPanel=(-155.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,103.601,10651.1) CenPtnInPanel=(-127.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.46,103.672,10626.6) CenPtnInPanel=(-155.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,75.6006,10651) CenPtnInPanel=(-127.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.46,75.6721,10626.5) CenPtnInPanel=(-155.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,47.6008,10650.9) CenPtnInPanel=(-127.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.46,47.6722,10626.5) CenPtnInPanel=(-155.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.89,19.6009,10650.9) CenPtnInPanel=(-127.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,19.6724,10626.4) CenPtnInPanel=(-155.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,00 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,219.527,10649) CenPtnInPanel=(-127.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,01 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.89,219.599,10624.5) CenPtnInPanel=(-155.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,02 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,191.527,10648.9) CenPtnInPanel=(-127.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,03 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.89,191.599,10624.4) CenPtnInPanel=(-155.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,04 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,163.528,10648.8) CenPtnInPanel=(-127.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,05 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.89,163.599,10624.3) CenPtnInPanel=(-155.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,06 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,135.528,10648.7) CenPtnInPanel=(-127.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,07 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.89,135.599,10624.2) CenPtnInPanel=(-155.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,08 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,107.528,10648.6) CenPtnInPanel=(-127.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,09 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.89,107.599,10624.1) CenPtnInPanel=(-155.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,10 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,79.5279,10648.6) CenPtnInPanel=(-127.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,11 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.89,79.5994,10624.1) CenPtnInPanel=(-155.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,12 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,51.5281,10648.5) CenPtnInPanel=(-127.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,13 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.89,51.5995,10624) CenPtnInPanel=(-155.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,14 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,23.5282,10648.4) CenPtnInPanel=(-127.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:242,15 Mod[Col,NInCol]:04,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,23.5997,10623.9) CenPtnInPanel=(-155.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 243 { PMT Rich2 R-C } Module(Col:NInCol)=4:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-8.399,10650.8) CenPtnInPanel=(-127.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-8.32752,10626.3) CenPtnInPanel=(-155.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-36.3989,10650.7) CenPtnInPanel=(-127.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-36.3274,10626.2) CenPtnInPanel=(-155.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-64.3988,10650.6) CenPtnInPanel=(-127.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-64.3273,10626.1) CenPtnInPanel=(-155.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-92.3986,10650.5) CenPtnInPanel=(-127.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-92.3272,10626) CenPtnInPanel=(-155.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-120.399,10650.5) CenPtnInPanel=(-127.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-120.327,10626) CenPtnInPanel=(-155.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-148.398,10650.4) CenPtnInPanel=(-127.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-148.327,10625.9) CenPtnInPanel=(-155.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-176.398,10650.3) CenPtnInPanel=(-127.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-176.327,10625.8) CenPtnInPanel=(-155.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3959.88,-204.398,10650.2) CenPtnInPanel=(-127.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3973.45,-204.327,10625.7) CenPtnInPanel=(-155.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,00 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.32,-4.47169,10648.3) CenPtnInPanel=(-127.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,01 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-4.40021,10623.8) CenPtnInPanel=(-155.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,02 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.31,-32.4716,10648.2) CenPtnInPanel=(-127.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,03 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-32.4001,10623.7) CenPtnInPanel=(-155.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,04 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.31,-60.4714,10648.1) CenPtnInPanel=(-127.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,05 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-60.4,10623.7) CenPtnInPanel=(-155.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,06 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.31,-88.4713,10648.1) CenPtnInPanel=(-127.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,07 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-88.3999,10623.6) CenPtnInPanel=(-155.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,08 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.31,-116.471,10648) CenPtnInPanel=(-127.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,09 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-116.4,10623.5) CenPtnInPanel=(-155.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,10 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.31,-144.471,10647.9) CenPtnInPanel=(-127.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,11 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-144.4,10623.4) CenPtnInPanel=(-155.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,12 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.31,-172.471,10647.8) CenPtnInPanel=(-127.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,13 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-172.399,10623.3) CenPtnInPanel=(-155.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,14 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3958.31,-200.471,10647.7) CenPtnInPanel=(-127.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:243,15 Mod[Col,NInCol]:04,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3971.88,-200.399,10623.2) CenPtnInPanel=(-155.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 244 { PMT Rich2 R-C } Module(Col:NInCol)=4:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.66,-246.362,10637.8) CenPtnInPanel=(-141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.66,-302.362,10637.7) CenPtnInPanel=(-141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.66,-358.362,10637.5) CenPtnInPanel=(-141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.66,-414.362,10637.3) CenPtnInPanel=(-141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,00 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.09,-242.435,10635.4) CenPtnInPanel=(-141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,01 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.09,-298.435,10635.2) CenPtnInPanel=(-141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,02 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.09,-354.434,10635) CenPtnInPanel=(-141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:244,03 Mod[Col,NInCol]:04,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.09,-410.434,10634.9) CenPtnInPanel=(-141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 245 { PMT Rich2 R-C } Module(Col:NInCol)=4:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.66,-470.361,10637.2) CenPtnInPanel=(-141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.65,-526.361,10637) CenPtnInPanel=(-141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.65,-582.361,10636.9) CenPtnInPanel=(-141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3966.65,-638.361,10636.7) CenPtnInPanel=(-141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,00 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.09,-466.434,10634.7) CenPtnInPanel=(-141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,01 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.08,-522.434,10634.5) CenPtnInPanel=(-141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,02 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.08,-578.433,10634.4) CenPtnInPanel=(-141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:245,03 Mod[Col,NInCol]:04,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3965.08,-634.433,10634.2) CenPtnInPanel=(-141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 246 { PMT Rich2 R-C } Module(Col:NInCol)=5:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.31,649.49,10689.9) CenPtnInPanel=(-84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.31,593.49,10689.7) CenPtnInPanel=(-84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.31,537.49,10689.6) CenPtnInPanel=(-84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.3,481.49,10689.4) CenPtnInPanel=(-84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,00 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.74,653.417,10687.4) CenPtnInPanel=(-84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,01 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.74,597.417,10687.3) CenPtnInPanel=(-84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,02 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.74,541.417,10687.1) CenPtnInPanel=(-84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:246,03 Mod[Col,NInCol]:05,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.73,485.418,10686.9) CenPtnInPanel=(-84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 247 { PMT Rich2 R-C } Module(Col:NInCol)=5:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.3,425.491,10689.2) CenPtnInPanel=(-84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.3,369.491,10689.1) CenPtnInPanel=(-84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.3,313.491,10688.9) CenPtnInPanel=(-84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.3,257.491,10688.7) CenPtnInPanel=(-84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,00 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.73,429.418,10686.8) CenPtnInPanel=(-84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,01 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.73,373.418,10686.6) CenPtnInPanel=(-84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,02 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.73,317.418,10686.4) CenPtnInPanel=(-84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:247,03 Mod[Col,NInCol]:05,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.73,261.419,10686.3) CenPtnInPanel=(-84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 248 { PMT Rich2 R-C } Module(Col:NInCol)=5:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,215.456,10700.9) CenPtnInPanel=(-70.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.08,215.527,10676.4) CenPtnInPanel=(-98.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,187.456,10700.8) CenPtnInPanel=(-70.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.08,187.527,10676.3) CenPtnInPanel=(-98.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,159.456,10700.7) CenPtnInPanel=(-70.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.08,159.528,10676.2) CenPtnInPanel=(-98.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,131.456,10700.6) CenPtnInPanel=(-70.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.08,131.528,10676.1) CenPtnInPanel=(-98.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,103.456,10700.5) CenPtnInPanel=(-70.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.08,103.528,10676) CenPtnInPanel=(-98.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,75.4564,10700.5) CenPtnInPanel=(-70.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.08,75.5279,10676) CenPtnInPanel=(-98.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,47.4565,10700.4) CenPtnInPanel=(-70.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,47.528,10675.9) CenPtnInPanel=(-98.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.51,19.4566,10700.3) CenPtnInPanel=(-70.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,19.5281,10675.8) CenPtnInPanel=(-98.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,00 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,219.383,10698.4) CenPtnInPanel=(-70.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,01 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.51,219.455,10673.9) CenPtnInPanel=(-98.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,02 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,191.383,10698.3) CenPtnInPanel=(-70.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,03 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.51,191.455,10673.8) CenPtnInPanel=(-98.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,04 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,163.383,10698.2) CenPtnInPanel=(-70.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,05 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.51,163.455,10673.7) CenPtnInPanel=(-98.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,06 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,135.383,10698.1) CenPtnInPanel=(-70.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,07 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.51,135.455,10673.7) CenPtnInPanel=(-98.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,08 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,107.384,10698.1) CenPtnInPanel=(-70.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,09 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.51,107.455,10673.6) CenPtnInPanel=(-98.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,10 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,79.3837,10698) CenPtnInPanel=(-70.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,11 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.51,79.4552,10673.5) CenPtnInPanel=(-98.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,12 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,51.3838,10697.9) CenPtnInPanel=(-70.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,13 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.51,51.4553,10673.4) CenPtnInPanel=(-98.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,14 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.94,23.384,10697.8) CenPtnInPanel=(-70.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:248,15 Mod[Col,NInCol]:05,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,23.4554,10673.3) CenPtnInPanel=(-98.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 249 { PMT Rich2 R-C } Module(Col:NInCol)=5:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-8.54323,10700.2) CenPtnInPanel=(-70.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-8.47175,10675.7) CenPtnInPanel=(-98.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-36.5431,10700.1) CenPtnInPanel=(-70.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-36.4716,10675.6) CenPtnInPanel=(-98.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-64.543,10700) CenPtnInPanel=(-70.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-64.4715,10675.5) CenPtnInPanel=(-98.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-92.5429,10700) CenPtnInPanel=(-70.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-92.4714,10675.5) CenPtnInPanel=(-98.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-120.543,10699.9) CenPtnInPanel=(-70.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-120.471,10675.4) CenPtnInPanel=(-98.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-148.543,10699.8) CenPtnInPanel=(-70.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-148.471,10675.3) CenPtnInPanel=(-98.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-176.543,10699.7) CenPtnInPanel=(-70.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-176.471,10675.2) CenPtnInPanel=(-98.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3932.5,-204.542,10699.6) CenPtnInPanel=(-70.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3946.07,-204.471,10675.1) CenPtnInPanel=(-98.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,00 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-4.61592,10697.7) CenPtnInPanel=(-70.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,01 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-4.54444,10673.2) CenPtnInPanel=(-98.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,02 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-32.6158,10697.7) CenPtnInPanel=(-70.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,03 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-32.5443,10673.2) CenPtnInPanel=(-98.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,04 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-60.6157,10697.6) CenPtnInPanel=(-70.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,05 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-60.5442,10673.1) CenPtnInPanel=(-98.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,06 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-88.6156,10697.5) CenPtnInPanel=(-70.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,07 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-88.5441,10673) CenPtnInPanel=(-98.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,08 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-116.615,10697.4) CenPtnInPanel=(-70.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,09 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-116.544,10672.9) CenPtnInPanel=(-98.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,10 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-144.615,10697.3) CenPtnInPanel=(-70.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,11 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-144.544,10672.8) CenPtnInPanel=(-98.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,12 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-172.615,10697.2) CenPtnInPanel=(-70.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,13 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-172.544,10672.7) CenPtnInPanel=(-98.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,14 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3930.93,-200.615,10697.2) CenPtnInPanel=(-70.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:249,15 Mod[Col,NInCol]:05,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3944.5,-200.544,10672.7) CenPtnInPanel=(-98.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 250 { PMT Rich2 R-C } Module(Col:NInCol)=5:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.28,-246.506,10687.3) CenPtnInPanel=(-84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.28,-302.506,10687.1) CenPtnInPanel=(-84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.28,-358.506,10686.9) CenPtnInPanel=(-84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.28,-414.506,10686.8) CenPtnInPanel=(-84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,00 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.71,-242.579,10684.8) CenPtnInPanel=(-84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,01 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.71,-298.579,10684.6) CenPtnInPanel=(-84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,02 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.71,-354.579,10684.5) CenPtnInPanel=(-84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:250,03 Mod[Col,NInCol]:05,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.71,-410.578,10684.3) CenPtnInPanel=(-84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 251 { PMT Rich2 R-C } Module(Col:NInCol)=5:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.27,-470.506,10686.6) CenPtnInPanel=(-84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.27,-526.505,10686.4) CenPtnInPanel=(-84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.27,-582.505,10686.3) CenPtnInPanel=(-84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3939.27,-638.505,10686.1) CenPtnInPanel=(-84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,00 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.71,-466.578,10684.1) CenPtnInPanel=(-84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,01 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.7,-522.578,10684) CenPtnInPanel=(-84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,02 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.7,-578.578,10683.8) CenPtnInPanel=(-84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:251,03 Mod[Col,NInCol]:05,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3937.7,-634.577,10683.6) CenPtnInPanel=(-84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 252 { PMT Rich2 R-C } Module(Col:NInCol)=6:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.93,649.345,10739.3) CenPtnInPanel=(-28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.93,593.346,10739.1) CenPtnInPanel=(-28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.92,537.346,10739) CenPtnInPanel=(-28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.92,481.346,10738.8) CenPtnInPanel=(-28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,00 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.36,653.273,10736.8) CenPtnInPanel=(-28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,01 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.36,597.273,10736.7) CenPtnInPanel=(-28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,02 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.36,541.273,10736.5) CenPtnInPanel=(-28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:252,03 Mod[Col,NInCol]:06,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.35,485.273,10736.3) CenPtnInPanel=(-28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 253 { PMT Rich2 R-C } Module(Col:NInCol)=6:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.92,425.346,10738.7) CenPtnInPanel=(-28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.92,369.347,10738.5) CenPtnInPanel=(-28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.92,313.347,10738.3) CenPtnInPanel=(-28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.92,257.347,10738.2) CenPtnInPanel=(-28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,00 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.35,429.274,10736.2) CenPtnInPanel=(-28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,01 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.35,373.274,10736) CenPtnInPanel=(-28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,02 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.35,317.274,10735.9) CenPtnInPanel=(-28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:253,03 Mod[Col,NInCol]:06,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.35,261.274,10735.7) CenPtnInPanel=(-28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 254 { PMT Rich2 R-C } Module(Col:NInCol)=6:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.13,215.312,10750.3) CenPtnInPanel=(-14.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.7,215.383,10725.8) CenPtnInPanel=(-42.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.13,187.312,10750.2) CenPtnInPanel=(-14.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.7,187.383,10725.7) CenPtnInPanel=(-42.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.13,159.312,10750.1) CenPtnInPanel=(-14.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.7,159.383,10725.6) CenPtnInPanel=(-42.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.13,131.312,10750) CenPtnInPanel=(-14.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.7,131.383,10725.5) CenPtnInPanel=(-42.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.13,103.312,10750) CenPtnInPanel=(-14.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.7,103.384,10725.5) CenPtnInPanel=(-42.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.13,75.3122,10749.9) CenPtnInPanel=(-14.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.7,75.3837,10725.4) CenPtnInPanel=(-42.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.13,47.3123,10749.8) CenPtnInPanel=(-14.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,47.3838,10725.3) CenPtnInPanel=(-42.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,19.3124,10749.7) CenPtnInPanel=(-14.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,19.3839,10725.2) CenPtnInPanel=(-42.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,00 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,219.239,10747.8) CenPtnInPanel=(-14.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,01 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.13,219.31,10723.3) CenPtnInPanel=(-42.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,02 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,191.239,10747.7) CenPtnInPanel=(-14.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,03 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.13,191.31,10723.2) CenPtnInPanel=(-42.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,04 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,163.239,10747.7) CenPtnInPanel=(-14.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,05 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.13,163.311,10723.2) CenPtnInPanel=(-42.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,06 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,135.239,10747.6) CenPtnInPanel=(-14.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,07 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.13,135.311,10723.1) CenPtnInPanel=(-42.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,08 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,107.239,10747.5) CenPtnInPanel=(-14.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,09 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.13,107.311,10723) CenPtnInPanel=(-42.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,10 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,79.2395,10747.4) CenPtnInPanel=(-14.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,11 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.13,79.311,10722.9) CenPtnInPanel=(-42.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,12 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,51.2396,10747.3) CenPtnInPanel=(-14.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,13 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,51.3111,10722.8) CenPtnInPanel=(-42.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,14 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.56,23.2397,10747.2) CenPtnInPanel=(-14.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:254,15 Mod[Col,NInCol]:06,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,23.3112,10722.7) CenPtnInPanel=(-42.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 255 { PMT Rich2 R-C } Module(Col:NInCol)=6:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-8.68747,10749.6) CenPtnInPanel=(-14.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-8.61599,10725.1) CenPtnInPanel=(-42.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-36.6873,10749.5) CenPtnInPanel=(-14.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-36.6159,10725.1) CenPtnInPanel=(-42.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-64.6872,10749.5) CenPtnInPanel=(-14.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-64.6157,10725) CenPtnInPanel=(-42.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-92.6871,10749.4) CenPtnInPanel=(-14.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-92.6156,10724.9) CenPtnInPanel=(-42.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-120.687,10749.3) CenPtnInPanel=(-14.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-120.616,10724.8) CenPtnInPanel=(-42.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-148.687,10749.2) CenPtnInPanel=(-14.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-148.615,10724.7) CenPtnInPanel=(-42.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-176.687,10749.1) CenPtnInPanel=(-14.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-176.615,10724.6) CenPtnInPanel=(-42.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3905.12,-204.687,10749.1) CenPtnInPanel=(-14.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3918.69,-204.615,10724.6) CenPtnInPanel=(-42.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,00 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-4.76016,10747.2) CenPtnInPanel=(-14.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,01 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-4.68868,10722.7) CenPtnInPanel=(-42.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,02 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-32.76,10747.1) CenPtnInPanel=(-14.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,03 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-32.6886,10722.6) CenPtnInPanel=(-42.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,04 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-60.7599,10747) CenPtnInPanel=(-14.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,05 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-60.6884,10722.5) CenPtnInPanel=(-42.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,06 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-88.7598,10746.9) CenPtnInPanel=(-14.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,07 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-88.6883,10722.4) CenPtnInPanel=(-42.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,08 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-116.76,10746.8) CenPtnInPanel=(-14.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,09 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-116.688,10722.3) CenPtnInPanel=(-42.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,10 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-144.76,10746.7) CenPtnInPanel=(-14.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,11 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-144.688,10722.3) CenPtnInPanel=(-42.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,12 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-172.759,10746.7) CenPtnInPanel=(-14.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,13 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-172.688,10722.2) CenPtnInPanel=(-42.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,14 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3903.55,-200.759,10746.6) CenPtnInPanel=(-14.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:255,15 Mod[Col,NInCol]:06,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3917.12,-200.688,10722.1) CenPtnInPanel=(-42.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 256 { PMT Rich2 R-C } Module(Col:NInCol)=6:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.9,-246.651,10736.7) CenPtnInPanel=(-28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.9,-302.65,10736.5) CenPtnInPanel=(-28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.9,-358.65,10736.4) CenPtnInPanel=(-28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.9,-414.65,10736.2) CenPtnInPanel=(-28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,00 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.33,-242.723,10734.2) CenPtnInPanel=(-28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,01 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.33,-298.723,10734) CenPtnInPanel=(-28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,02 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.33,-354.723,10733.9) CenPtnInPanel=(-28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:256,03 Mod[Col,NInCol]:06,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.33,-410.723,10733.7) CenPtnInPanel=(-28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 257 { PMT Rich2 R-C } Module(Col:NInCol)=6:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.89,-470.65,10736) CenPtnInPanel=(-28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.89,-526.649,10735.9) CenPtnInPanel=(-28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.89,-582.649,10735.7) CenPtnInPanel=(-28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3911.89,-638.649,10735.5) CenPtnInPanel=(-28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,00 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.32,-466.722,10733.6) CenPtnInPanel=(-28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,01 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.32,-522.722,10733.4) CenPtnInPanel=(-28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,02 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.32,-578.722,10733.2) CenPtnInPanel=(-28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:257,03 Mod[Col,NInCol]:06,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3910.32,-634.722,10733.1) CenPtnInPanel=(-28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 258 { PMT Rich2 R-C } Module(Col:NInCol)=7:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.55,649.201,10788.7) CenPtnInPanel=(28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.55,593.201,10788.6) CenPtnInPanel=(28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.54,537.202,10788.4) CenPtnInPanel=(28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.54,481.202,10788.2) CenPtnInPanel=(28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,00 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.98,653.129,10786.3) CenPtnInPanel=(28.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,01 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.98,597.129,10786.1) CenPtnInPanel=(28.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,02 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.97,541.129,10785.9) CenPtnInPanel=(28.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:258,03 Mod[Col,NInCol]:07,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.97,485.129,10785.8) CenPtnInPanel=(28.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 259 { PMT Rich2 R-C } Module(Col:NInCol)=7:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.54,425.202,10788.1) CenPtnInPanel=(28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.54,369.202,10787.9) CenPtnInPanel=(28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.54,313.203,10787.7) CenPtnInPanel=(28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.54,257.203,10787.6) CenPtnInPanel=(28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,00 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.97,429.129,10785.6) CenPtnInPanel=(28.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,01 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.97,373.13,10785.4) CenPtnInPanel=(28.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,02 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.97,317.13,10785.3) CenPtnInPanel=(28.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:259,03 Mod[Col,NInCol]:07,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.97,261.13,10785.1) CenPtnInPanel=(28.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 260 { PMT Rich2 R-C } Module(Col:NInCol)=7:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.75,215.167,10799.7) CenPtnInPanel=(42.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.32,215.239,10775.2) CenPtnInPanel=(14.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.75,187.167,10799.6) CenPtnInPanel=(42.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.32,187.239,10775.1) CenPtnInPanel=(14.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.75,159.168,10799.5) CenPtnInPanel=(42.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.32,159.239,10775) CenPtnInPanel=(14.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.75,131.168,10799.5) CenPtnInPanel=(42.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.32,131.239,10775) CenPtnInPanel=(14.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.75,103.168,10799.4) CenPtnInPanel=(42.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.32,103.239,10774.9) CenPtnInPanel=(14.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.75,75.1679,10799.3) CenPtnInPanel=(42.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,75.2394,10774.8) CenPtnInPanel=(14.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.75,47.1681,10799.2) CenPtnInPanel=(42.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,47.2395,10774.7) CenPtnInPanel=(14.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,19.1682,10799.1) CenPtnInPanel=(42.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,19.2397,10774.6) CenPtnInPanel=(14.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,00 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.18,219.095,10797.2) CenPtnInPanel=(42.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,01 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.75,219.166,10772.7) CenPtnInPanel=(14.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,02 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.18,191.095,10797.2) CenPtnInPanel=(42.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,03 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.75,191.166,10772.7) CenPtnInPanel=(14.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,04 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.18,163.095,10797.1) CenPtnInPanel=(42.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,05 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.75,163.166,10772.6) CenPtnInPanel=(14.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,06 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.18,135.095,10797) CenPtnInPanel=(42.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,07 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.75,135.166,10772.5) CenPtnInPanel=(14.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,08 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.18,107.095,10796.9) CenPtnInPanel=(42.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,09 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.75,107.167,10772.4) CenPtnInPanel=(14.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,10 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.18,79.0952,10796.8) CenPtnInPanel=(42.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,11 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.75,79.1667,10772.3) CenPtnInPanel=(14.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,12 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.18,51.0954,10796.7) CenPtnInPanel=(42.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,13 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,51.1668,10772.3) CenPtnInPanel=(14.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,14 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,23.0955,10796.7) CenPtnInPanel=(42.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:260,15 Mod[Col,NInCol]:07,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,23.167,10772.2) CenPtnInPanel=(14.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 261 { PMT Rich2 R-C } Module(Col:NInCol)=7:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-8.8317,10799) CenPtnInPanel=(42.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-8.76022,10774.6) CenPtnInPanel=(14.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-36.8316,10799) CenPtnInPanel=(42.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-36.7601,10774.5) CenPtnInPanel=(14.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-64.8315,10798.9) CenPtnInPanel=(42.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-64.76,10774.4) CenPtnInPanel=(14.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-92.8313,10798.8) CenPtnInPanel=(42.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-92.7599,10774.3) CenPtnInPanel=(14.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-120.831,10798.7) CenPtnInPanel=(42.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-120.76,10774.2) CenPtnInPanel=(14.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-148.831,10798.6) CenPtnInPanel=(42.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-148.76,10774.1) CenPtnInPanel=(14.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-176.831,10798.6) CenPtnInPanel=(42.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-176.759,10774.1) CenPtnInPanel=(14.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3877.74,-204.831,10798.5) CenPtnInPanel=(42.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3891.31,-204.759,10774) CenPtnInPanel=(14.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,00 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-4.90439,10796.6) CenPtnInPanel=(42.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,01 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-4.83291,10772.1) CenPtnInPanel=(14.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,02 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-32.9043,10796.5) CenPtnInPanel=(42.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,03 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-32.8328,10772) CenPtnInPanel=(14.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,04 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-60.9041,10796.4) CenPtnInPanel=(42.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,05 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-60.8327,10771.9) CenPtnInPanel=(14.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,06 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-88.904,10796.3) CenPtnInPanel=(42.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,07 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-88.8325,10771.8) CenPtnInPanel=(14.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,08 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-116.904,10796.3) CenPtnInPanel=(42.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,09 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-116.832,10771.8) CenPtnInPanel=(14.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,10 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-144.904,10796.2) CenPtnInPanel=(42.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,11 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-144.832,10771.7) CenPtnInPanel=(14.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,12 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-172.904,10796.1) CenPtnInPanel=(42.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,13 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-172.832,10771.6) CenPtnInPanel=(14.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,14 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3876.17,-200.904,10796) CenPtnInPanel=(42.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:261,15 Mod[Col,NInCol]:07,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3889.74,-200.832,10771.5) CenPtnInPanel=(14.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 262 { PMT Rich2 R-C } Module(Col:NInCol)=7:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.52,-246.795,10786.1) CenPtnInPanel=(28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.52,-302.795,10785.9) CenPtnInPanel=(28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.52,-358.794,10785.8) CenPtnInPanel=(28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.52,-414.794,10785.6) CenPtnInPanel=(28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,00 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.95,-242.868,10783.6) CenPtnInPanel=(28.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,01 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.95,-298.867,10783.5) CenPtnInPanel=(28.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,02 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.95,-354.867,10783.3) CenPtnInPanel=(28.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:262,03 Mod[Col,NInCol]:07,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.95,-410.867,10783.1) CenPtnInPanel=(28.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 263 { PMT Rich2 R-C } Module(Col:NInCol)=7:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.51,-470.794,10785.4) CenPtnInPanel=(28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.51,-526.794,10785.3) CenPtnInPanel=(28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.51,-582.793,10785.1) CenPtnInPanel=(28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3884.51,-638.793,10785) CenPtnInPanel=(28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,00 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.94,-466.867,10783) CenPtnInPanel=(28.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,01 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.94,-522.866,10782.8) CenPtnInPanel=(28.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,02 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.94,-578.866,10782.6) CenPtnInPanel=(28.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:263,03 Mod[Col,NInCol]:07,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3882.94,-634.866,10782.5) CenPtnInPanel=(28.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 264 { PMT Rich2 R-C } Module(Col:NInCol)=8:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.17,649.057,10838.2) CenPtnInPanel=(84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.17,593.057,10838) CenPtnInPanel=(84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.16,537.057,10837.8) CenPtnInPanel=(84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.16,481.058,10837.7) CenPtnInPanel=(84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,00 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.6,652.984,10835.7) CenPtnInPanel=(84.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,01 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.6,596.985,10835.5) CenPtnInPanel=(84.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,02 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.59,540.985,10835.4) CenPtnInPanel=(84.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:264,03 Mod[Col,NInCol]:08,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.59,484.985,10835.2) CenPtnInPanel=(84.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 265 { PMT Rich2 R-C } Module(Col:NInCol)=8:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.16,425.058,10837.5) CenPtnInPanel=(84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.16,369.058,10837.3) CenPtnInPanel=(84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.16,313.058,10837.2) CenPtnInPanel=(84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.16,257.059,10837) CenPtnInPanel=(84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,00 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.59,428.985,10835) CenPtnInPanel=(84.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,01 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.59,372.985,10834.9) CenPtnInPanel=(84.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,02 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.59,316.986,10834.7) CenPtnInPanel=(84.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:265,03 Mod[Col,NInCol]:08,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.59,260.986,10834.5) CenPtnInPanel=(84.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 266 { PMT Rich2 R-C } Module(Col:NInCol)=8:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.37,215.023,10849.1) CenPtnInPanel=(98.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.94,215.095,10824.6) CenPtnInPanel=(70.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.37,187.023,10849) CenPtnInPanel=(98.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.94,187.095,10824.6) CenPtnInPanel=(70.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.37,159.023,10849) CenPtnInPanel=(98.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.94,159.095,10824.5) CenPtnInPanel=(70.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.37,131.023,10848.9) CenPtnInPanel=(98.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.94,131.095,10824.4) CenPtnInPanel=(70.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.37,103.024,10848.8) CenPtnInPanel=(98.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.94,103.095,10824.3) CenPtnInPanel=(70.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.37,75.0237,10848.7) CenPtnInPanel=(98.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,75.0952,10824.2) CenPtnInPanel=(70.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,47.0238,10848.6) CenPtnInPanel=(98.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,47.0953,10824.1) CenPtnInPanel=(70.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,19.0239,10848.6) CenPtnInPanel=(98.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,19.0954,10824.1) CenPtnInPanel=(70.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,00 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.8,218.95,10846.7) CenPtnInPanel=(98.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,01 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.37,219.022,10822.2) CenPtnInPanel=(70.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,02 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.8,190.951,10846.6) CenPtnInPanel=(98.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,03 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.37,191.022,10822.1) CenPtnInPanel=(70.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,04 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.8,162.951,10846.5) CenPtnInPanel=(98.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,05 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.37,163.022,10822) CenPtnInPanel=(70.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,06 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.8,134.951,10846.4) CenPtnInPanel=(98.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,07 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.37,135.022,10821.9) CenPtnInPanel=(70.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,08 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.8,106.951,10846.3) CenPtnInPanel=(98.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,09 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.37,107.022,10821.8) CenPtnInPanel=(70.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,10 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.8,78.951,10846.2) CenPtnInPanel=(98.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,11 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,79.0225,10821.8) CenPtnInPanel=(70.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,12 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.8,50.9511,10846.2) CenPtnInPanel=(98.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,13 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,51.0226,10821.7) CenPtnInPanel=(70.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,14 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,22.9513,10846.1) CenPtnInPanel=(98.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:266,15 Mod[Col,NInCol]:08,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,23.0227,10821.6) CenPtnInPanel=(70.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 267 { PMT Rich2 R-C } Module(Col:NInCol)=8:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-8.97593,10848.5) CenPtnInPanel=(98.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-8.90445,10824) CenPtnInPanel=(70.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-36.9758,10848.4) CenPtnInPanel=(98.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-36.9043,10823.9) CenPtnInPanel=(70.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-64.9757,10848.3) CenPtnInPanel=(98.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-64.9042,10823.8) CenPtnInPanel=(70.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-92.9756,10848.2) CenPtnInPanel=(98.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-92.9041,10823.7) CenPtnInPanel=(70.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-120.975,10848.1) CenPtnInPanel=(98.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-120.904,10823.6) CenPtnInPanel=(70.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-148.975,10848.1) CenPtnInPanel=(98.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-148.904,10823.6) CenPtnInPanel=(70.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-176.975,10848) CenPtnInPanel=(98.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-176.904,10823.5) CenPtnInPanel=(70.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3850.36,-204.975,10847.9) CenPtnInPanel=(98.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3863.93,-204.904,10823.4) CenPtnInPanel=(70.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,00 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-5.04862,10846) CenPtnInPanel=(98.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,01 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-4.97714,10821.5) CenPtnInPanel=(70.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,02 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-33.0485,10845.9) CenPtnInPanel=(98.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,03 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-32.977,10821.4) CenPtnInPanel=(70.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,04 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-61.0484,10845.8) CenPtnInPanel=(98.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,05 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-60.9769,10821.3) CenPtnInPanel=(70.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,06 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-89.0483,10845.8) CenPtnInPanel=(98.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,07 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-88.9768,10821.3) CenPtnInPanel=(70.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,08 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-117.048,10845.7) CenPtnInPanel=(98.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,09 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-116.977,10821.2) CenPtnInPanel=(70.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,10 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-145.048,10845.6) CenPtnInPanel=(98.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,11 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-144.977,10821.1) CenPtnInPanel=(70.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,12 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-173.048,10845.5) CenPtnInPanel=(98.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,13 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-172.976,10821) CenPtnInPanel=(70.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,14 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3848.79,-201.048,10845.4) CenPtnInPanel=(98.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:267,15 Mod[Col,NInCol]:08,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3862.36,-200.976,10820.9) CenPtnInPanel=(70.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 268 { PMT Rich2 R-C } Module(Col:NInCol)=8:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.14,-246.939,10835.5) CenPtnInPanel=(84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.14,-302.939,10835.4) CenPtnInPanel=(84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.14,-358.939,10835.2) CenPtnInPanel=(84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.14,-414.938,10835) CenPtnInPanel=(84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,00 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.57,-243.012,10833.1) CenPtnInPanel=(84.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,01 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.57,-299.012,10832.9) CenPtnInPanel=(84.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,02 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.57,-355.011,10832.7) CenPtnInPanel=(84.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:268,03 Mod[Col,NInCol]:08,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.57,-411.011,10832.6) CenPtnInPanel=(84.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 269 { PMT Rich2 R-C } Module(Col:NInCol)=8:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.13,-470.938,10834.9) CenPtnInPanel=(84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.13,-526.938,10834.7) CenPtnInPanel=(84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.13,-582.938,10834.5) CenPtnInPanel=(84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3857.13,-638.937,10834.4) CenPtnInPanel=(84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,00 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.56,-467.011,10832.4) CenPtnInPanel=(84.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,01 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.56,-523.011,10832.2) CenPtnInPanel=(84.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,02 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.56,-579.01,10832.1) CenPtnInPanel=(84.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:269,03 Mod[Col,NInCol]:08,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3855.56,-635.01,10831.9) CenPtnInPanel=(84.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 270 { PMT Rich2 R-C } Module(Col:NInCol)=9:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.79,648.913,10887.6) CenPtnInPanel=(141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.79,592.913,10887.4) CenPtnInPanel=(141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.78,536.913,10887.2) CenPtnInPanel=(141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.78,480.913,10887.1) CenPtnInPanel=(141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,00 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.22,652.84,10885.1) CenPtnInPanel=(141.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,01 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.22,596.84,10884.9) CenPtnInPanel=(141.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,02 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.21,540.841,10884.8) CenPtnInPanel=(141.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:270,03 Mod[Col,NInCol]:09,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.21,484.841,10884.6) CenPtnInPanel=(141.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 271 { PMT Rich2 R-C } Module(Col:NInCol)=9:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.78,424.914,10886.9) CenPtnInPanel=(141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.78,368.914,10886.8) CenPtnInPanel=(141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.78,312.914,10886.6) CenPtnInPanel=(141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.78,256.914,10886.4) CenPtnInPanel=(141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,00 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.21,428.841,10884.5) CenPtnInPanel=(141.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,01 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.21,372.841,10884.3) CenPtnInPanel=(141.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,02 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.21,316.841,10884.1) CenPtnInPanel=(141.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:271,03 Mod[Col,NInCol]:09,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.21,260.842,10884) CenPtnInPanel=(141.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 272 { PMT Rich2 R-C } Module(Col:NInCol)=9:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.99,214.879,10898.5) CenPtnInPanel=(155.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.56,214.95,10874.1) CenPtnInPanel=(127.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.99,186.879,10898.5) CenPtnInPanel=(155.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.56,186.95,10874) CenPtnInPanel=(127.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.99,158.879,10898.4) CenPtnInPanel=(155.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.56,158.951,10873.9) CenPtnInPanel=(127.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.99,130.879,10898.3) CenPtnInPanel=(155.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.56,130.951,10873.8) CenPtnInPanel=(127.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.99,102.879,10898.2) CenPtnInPanel=(155.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,102.951,10873.7) CenPtnInPanel=(127.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.99,74.8795,10898.1) CenPtnInPanel=(155.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,74.951,10873.6) CenPtnInPanel=(127.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,46.8796,10898.1) CenPtnInPanel=(155.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,46.9511,10873.6) CenPtnInPanel=(127.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,18.8797,10898) CenPtnInPanel=(155.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,18.9512,10873.5) CenPtnInPanel=(127.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,00 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.42,218.806,10896.1) CenPtnInPanel=(155.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,01 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.99,218.878,10871.6) CenPtnInPanel=(127.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,02 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.42,190.806,10896) CenPtnInPanel=(155.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,03 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.99,190.878,10871.5) CenPtnInPanel=(127.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,04 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.42,162.806,10895.9) CenPtnInPanel=(155.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,05 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.99,162.878,10871.4) CenPtnInPanel=(127.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,06 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.42,134.807,10895.8) CenPtnInPanel=(155.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,07 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.99,134.878,10871.3) CenPtnInPanel=(127.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,08 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.42,106.807,10895.8) CenPtnInPanel=(155.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,09 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.99,106.878,10871.3) CenPtnInPanel=(127.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,10 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.42,78.8068,10895.7) CenPtnInPanel=(155.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,11 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,78.8783,10871.2) CenPtnInPanel=(127.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,12 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,50.8069,10895.6) CenPtnInPanel=(155.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,13 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,50.8784,10871.1) CenPtnInPanel=(127.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,14 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,22.807,10895.5) CenPtnInPanel=(155.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:272,15 Mod[Col,NInCol]:09,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,22.8785,10871) CenPtnInPanel=(127.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 273 { PMT Rich2 R-C } Module(Col:NInCol)=9:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-9.12016,10897.9) CenPtnInPanel=(155.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-9.04869,10873.4) CenPtnInPanel=(127.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-37.12,10897.8) CenPtnInPanel=(155.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-37.0486,10873.3) CenPtnInPanel=(127.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-65.1199,10897.7) CenPtnInPanel=(155.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-65.0484,10873.2) CenPtnInPanel=(127.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-93.1198,10897.6) CenPtnInPanel=(155.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-93.0483,10873.2) CenPtnInPanel=(127.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-121.12,10897.6) CenPtnInPanel=(155.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-121.048,10873.1) CenPtnInPanel=(127.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-149.12,10897.5) CenPtnInPanel=(155.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-149.048,10873) CenPtnInPanel=(127.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-177.119,10897.4) CenPtnInPanel=(155.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-177.048,10872.9) CenPtnInPanel=(127.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3822.98,-205.119,10897.3) CenPtnInPanel=(155.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3836.55,-205.048,10872.8) CenPtnInPanel=(127.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,00 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-5.19286,10895.4) CenPtnInPanel=(155.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,01 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-5.12138,10870.9) CenPtnInPanel=(127.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,02 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-33.1927,10895.3) CenPtnInPanel=(155.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,03 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-33.1213,10870.8) CenPtnInPanel=(127.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,04 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-61.1926,10895.3) CenPtnInPanel=(155.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,05 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-61.1211,10870.8) CenPtnInPanel=(127.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,06 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-89.1925,10895.2) CenPtnInPanel=(155.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,07 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-89.121,10870.7) CenPtnInPanel=(127.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,08 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-117.192,10895.1) CenPtnInPanel=(155.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,09 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-117.121,10870.6) CenPtnInPanel=(127.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,10 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-145.192,10895) CenPtnInPanel=(155.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,11 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-145.121,10870.5) CenPtnInPanel=(127.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,12 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-173.192,10894.9) CenPtnInPanel=(155.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,13 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-173.121,10870.4) CenPtnInPanel=(127.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,14 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3821.41,-201.192,10894.8) CenPtnInPanel=(155.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:273,15 Mod[Col,NInCol]:09,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3834.98,-201.121,10870.4) CenPtnInPanel=(127.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 274 { PMT Rich2 R-C } Module(Col:NInCol)=9:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.76,-247.083,10884.9) CenPtnInPanel=(141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.76,-303.083,10884.8) CenPtnInPanel=(141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.76,-359.083,10884.6) CenPtnInPanel=(141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.75,-415.083,10884.5) CenPtnInPanel=(141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,00 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.19,-243.156,10882.5) CenPtnInPanel=(141.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,01 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.19,-299.156,10882.3) CenPtnInPanel=(141.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,02 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.19,-355.156,10882.2) CenPtnInPanel=(141.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:274,03 Mod[Col,NInCol]:09,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.19,-411.155,10882) CenPtnInPanel=(141.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 275 { PMT Rich2 R-C } Module(Col:NInCol)=9:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.75,-471.082,10884.3) CenPtnInPanel=(141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.75,-527.082,10884.1) CenPtnInPanel=(141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.75,-583.082,10884) CenPtnInPanel=(141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3829.75,-639.082,10883.8) CenPtnInPanel=(141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,00 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.18,-467.155,10881.8) CenPtnInPanel=(141.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,01 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.18,-523.155,10881.7) CenPtnInPanel=(141.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,02 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.18,-579.155,10881.5) CenPtnInPanel=(141.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:275,03 Mod[Col,NInCol]:09,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3828.18,-635.154,10881.3) CenPtnInPanel=(141.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 276 { PMT Rich2 R-C } Module(Col:NInCol)=10:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,00 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.41,648.769,10937) CenPtnInPanel=(197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.4,592.769,10936.8) CenPtnInPanel=(197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.4,536.769,10936.7) CenPtnInPanel=(197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.4,480.769,10936.5) CenPtnInPanel=(197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,00 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.84,652.696,10934.5) CenPtnInPanel=(197.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,01 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.84,596.696,10934.4) CenPtnInPanel=(197.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,02 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.83,540.696,10934.2) CenPtnInPanel=(197.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:276,03 Mod[Col,NInCol]:10,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.83,484.697,10934) CenPtnInPanel=(197.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 277 { PMT Rich2 R-C } Module(Col:NInCol)=10:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.4,424.769,10936.3) CenPtnInPanel=(197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.4,368.77,10936.2) CenPtnInPanel=(197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.4,312.77,10936) CenPtnInPanel=(197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.39,256.77,10935.8) CenPtnInPanel=(197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,00 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.83,428.697,10933.9) CenPtnInPanel=(197.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,01 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.83,372.697,10933.7) CenPtnInPanel=(197.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,02 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.83,316.697,10933.5) CenPtnInPanel=(197.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:277,03 Mod[Col,NInCol]:10,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.83,260.698,10933.4) CenPtnInPanel=(197.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 278 { PMT Rich2 R-C } Module(Col:NInCol)=10:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.61,214.735,10948) CenPtnInPanel=(211.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.18,214.806,10923.5) CenPtnInPanel=(183.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.61,186.735,10947.9) CenPtnInPanel=(211.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.18,186.806,10923.4) CenPtnInPanel=(183.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.61,158.735,10947.8) CenPtnInPanel=(211.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.18,158.806,10923.3) CenPtnInPanel=(183.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.61,130.735,10947.7) CenPtnInPanel=(211.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.18,130.806,10923.2) CenPtnInPanel=(183.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.61,102.735,10947.6) CenPtnInPanel=(211.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,102.807,10923.2) CenPtnInPanel=(183.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,74.7352,10947.6) CenPtnInPanel=(211.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,74.8067,10923.1) CenPtnInPanel=(183.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,46.7354,10947.5) CenPtnInPanel=(211.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,46.8068,10923) CenPtnInPanel=(183.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,18.7355,10947.4) CenPtnInPanel=(211.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,18.807,10922.9) CenPtnInPanel=(183.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,00 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.04,218.662,10945.5) CenPtnInPanel=(211.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,01 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.61,218.733,10921) CenPtnInPanel=(183.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,02 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.04,190.662,10945.4) CenPtnInPanel=(211.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,03 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.61,190.734,10920.9) CenPtnInPanel=(183.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,04 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.04,162.662,10945.3) CenPtnInPanel=(211.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,05 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.61,162.734,10920.8) CenPtnInPanel=(183.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,06 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.04,134.662,10945.3) CenPtnInPanel=(211.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,07 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.61,134.734,10920.8) CenPtnInPanel=(183.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,08 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.04,106.662,10945.2) CenPtnInPanel=(211.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,09 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,106.734,10920.7) CenPtnInPanel=(183.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,10 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.04,78.6626,10945.1) CenPtnInPanel=(211.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,11 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,78.734,10920.6) CenPtnInPanel=(183.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,12 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,50.6627,10945) CenPtnInPanel=(211.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,13 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,50.7341,10920.5) CenPtnInPanel=(183.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,14 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,22.6628,10944.9) CenPtnInPanel=(211.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:278,15 Mod[Col,NInCol]:10,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,22.7343,10920.4) CenPtnInPanel=(183.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 279 { PMT Rich2 R-C } Module(Col:NInCol)=10:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-9.2644,10947.3) CenPtnInPanel=(211.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-9.19292,10922.8) CenPtnInPanel=(183.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-37.2643,10947.2) CenPtnInPanel=(211.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-37.1928,10922.7) CenPtnInPanel=(183.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-65.2642,10947.2) CenPtnInPanel=(211.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-65.1927,10922.7) CenPtnInPanel=(183.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-93.264,10947.1) CenPtnInPanel=(211.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-93.1926,10922.6) CenPtnInPanel=(183.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-121.264,10947) CenPtnInPanel=(211.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-121.192,10922.5) CenPtnInPanel=(183.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-149.264,10946.9) CenPtnInPanel=(211.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-149.192,10922.4) CenPtnInPanel=(183.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-177.264,10946.8) CenPtnInPanel=(211.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-177.192,10922.3) CenPtnInPanel=(183.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3795.6,-205.264,10946.7) CenPtnInPanel=(211.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3809.17,-205.192,10922.2) CenPtnInPanel=(183.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,00 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-5.33709,10944.8) CenPtnInPanel=(211.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,01 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-5.26561,10920.4) CenPtnInPanel=(183.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,02 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-33.337,10944.8) CenPtnInPanel=(211.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,03 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-33.2655,10920.3) CenPtnInPanel=(183.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,04 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-61.3368,10944.7) CenPtnInPanel=(211.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,05 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-61.2654,10920.2) CenPtnInPanel=(183.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,06 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-89.3367,10944.6) CenPtnInPanel=(211.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,07 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-89.2652,10920.1) CenPtnInPanel=(183.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,08 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-117.337,10944.5) CenPtnInPanel=(211.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,09 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-117.265,10920) CenPtnInPanel=(183.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,10 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-145.336,10944.4) CenPtnInPanel=(211.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,11 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-145.265,10919.9) CenPtnInPanel=(183.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,12 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-173.336,10944.4) CenPtnInPanel=(211.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,13 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-173.265,10919.9) CenPtnInPanel=(183.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,14 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3794.03,-201.336,10944.3) CenPtnInPanel=(211.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:279,15 Mod[Col,NInCol]:10,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3807.6,-201.265,10919.8) CenPtnInPanel=(183.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 280 { PMT Rich2 R-C } Module(Col:NInCol)=10:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.38,-247.228,10934.4) CenPtnInPanel=(197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.38,-303.227,10934.2) CenPtnInPanel=(197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.38,-359.227,10934) CenPtnInPanel=(197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.37,-415.227,10933.9) CenPtnInPanel=(197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,00 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.81,-243.3,10931.9) CenPtnInPanel=(197.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,01 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.81,-299.3,10931.7) CenPtnInPanel=(197.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,02 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.81,-355.3,10931.6) CenPtnInPanel=(197.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:280,03 Mod[Col,NInCol]:10,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.8,-411.3,10931.4) CenPtnInPanel=(197.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 281 { PMT Rich2 R-C } Module(Col:NInCol)=10:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.37,-471.227,10933.7) CenPtnInPanel=(197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.37,-527.226,10933.5) CenPtnInPanel=(197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.37,-583.226,10933.4) CenPtnInPanel=(197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3802.37,-639.226,10933.2) CenPtnInPanel=(197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,00 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.8,-467.299,10931.2) CenPtnInPanel=(197.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,01 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.8,-523.299,10931.1) CenPtnInPanel=(197.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,02 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.8,-579.299,10930.9) CenPtnInPanel=(197.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:281,03 Mod[Col,NInCol]:10,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3800.8,-635.299,10930.8) CenPtnInPanel=(197.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 282 { PMT Rich2 R-C } Module(Col:NInCol)=11:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,00 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.03,648.624,10986.4) CenPtnInPanel=(254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.02,592.625,10986.3) CenPtnInPanel=(254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.02,536.625,10986.1) CenPtnInPanel=(254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.02,480.625,10985.9) CenPtnInPanel=(254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,00 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.46,652.552,10984) CenPtnInPanel=(254.25,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,01 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.45,596.552,10983.8) CenPtnInPanel=(254.25,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,02 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.45,540.552,10983.6) CenPtnInPanel=(254.25,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:282,03 Mod[Col,NInCol]:11,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.45,484.552,10983.5) CenPtnInPanel=(254.25,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 283 { PMT Rich2 R-C } Module(Col:NInCol)=11:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.02,424.625,10985.8) CenPtnInPanel=(254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.02,368.625,10985.6) CenPtnInPanel=(254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.02,312.626,10985.4) CenPtnInPanel=(254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775.01,256.626,10985.3) CenPtnInPanel=(254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,00 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.45,428.553,10983.3) CenPtnInPanel=(254.25,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,01 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.45,372.553,10983.1) CenPtnInPanel=(254.25,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,02 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.45,316.553,10983) CenPtnInPanel=(254.25,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:283,03 Mod[Col,NInCol]:11,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.44,260.553,10982.8) CenPtnInPanel=(254.25,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 284 { PMT Rich2 R-C } Module(Col:NInCol)=11:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.23,214.59,10997.4) CenPtnInPanel=(268.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.8,214.662,10972.9) CenPtnInPanel=(240.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.23,186.591,10997.3) CenPtnInPanel=(268.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.8,186.662,10972.8) CenPtnInPanel=(240.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.23,158.591,10997.2) CenPtnInPanel=(268.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,05 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.8,158.662,10972.7) CenPtnInPanel=(240.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.23,130.591,10997.1) CenPtnInPanel=(268.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,130.662,10972.7) CenPtnInPanel=(240.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,08 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.23,102.591,10997.1) CenPtnInPanel=(268.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,102.662,10972.6) CenPtnInPanel=(240.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,74.591,10997) CenPtnInPanel=(268.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,74.6625,10972.5) CenPtnInPanel=(240.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,46.5911,10996.9) CenPtnInPanel=(268.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,46.6626,10972.4) CenPtnInPanel=(240.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,18.5912,10996.8) CenPtnInPanel=(268.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,18.6627,10972.3) CenPtnInPanel=(240.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,00 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.66,218.518,10994.9) CenPtnInPanel=(268.25,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,01 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.23,218.589,10970.4) CenPtnInPanel=(240.25,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,02 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.66,190.518,10994.8) CenPtnInPanel=(268.25,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,03 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.23,190.589,10970.4) CenPtnInPanel=(240.25,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,04 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.66,162.518,10994.8) CenPtnInPanel=(268.25,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,05 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.23,162.589,10970.3) CenPtnInPanel=(240.25,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,06 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.66,134.518,10994.7) CenPtnInPanel=(268.25,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,07 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.23,134.59,10970.2) CenPtnInPanel=(240.25,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,08 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.66,106.518,10994.6) CenPtnInPanel=(268.25,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,09 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,106.59,10970.1) CenPtnInPanel=(240.25,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,10 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,78.5183,10994.5) CenPtnInPanel=(268.25,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,11 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,78.5898,10970) CenPtnInPanel=(240.25,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,12 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,50.5184,10994.4) CenPtnInPanel=(268.25,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,13 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,50.5899,10969.9) CenPtnInPanel=(240.25,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,14 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,22.5186,10994.3) CenPtnInPanel=(268.25,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:284,15 Mod[Col,NInCol]:11,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,22.59,10969.9) CenPtnInPanel=(240.25,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 285 { PMT Rich2 R-C } Module(Col:NInCol)=11:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-9.40863,10996.7) CenPtnInPanel=(268.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,-9.33715,10972.2) CenPtnInPanel=(240.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-37.4085,10996.7) CenPtnInPanel=(268.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,-37.337,10972.2) CenPtnInPanel=(240.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-65.4084,10996.6) CenPtnInPanel=(268.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,-65.3369,10972.1) CenPtnInPanel=(240.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-93.4083,10996.5) CenPtnInPanel=(268.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,-93.3368,10972) CenPtnInPanel=(240.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-121.408,10996.4) CenPtnInPanel=(268.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,-121.337,10971.9) CenPtnInPanel=(240.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-149.408,10996.3) CenPtnInPanel=(268.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,-149.337,10971.8) CenPtnInPanel=(240.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-177.408,10996.2) CenPtnInPanel=(268.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.79,-177.336,10971.8) CenPtnInPanel=(240.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3768.22,-205.408,10996.2) CenPtnInPanel=(268.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3781.78,-205.336,10971.7) CenPtnInPanel=(240.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,00 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-5.48132,10994.3) CenPtnInPanel=(268.25,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,01 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-5.40984,10969.8) CenPtnInPanel=(240.25,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,02 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-33.4812,10994.2) CenPtnInPanel=(268.25,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,03 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-33.4097,10969.7) CenPtnInPanel=(240.25,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,04 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-61.4811,10994.1) CenPtnInPanel=(268.25,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,05 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-61.4096,10969.6) CenPtnInPanel=(240.25,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,06 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-89.481,10994) CenPtnInPanel=(268.25,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,07 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-89.4095,10969.5) CenPtnInPanel=(240.25,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,08 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-117.481,10993.9) CenPtnInPanel=(268.25,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,09 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-117.409,10969.4) CenPtnInPanel=(240.25,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,10 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-145.481,10993.9) CenPtnInPanel=(268.25,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,11 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-145.409,10969.4) CenPtnInPanel=(240.25,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,12 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-173.481,10993.8) CenPtnInPanel=(268.25,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,13 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-173.409,10969.3) CenPtnInPanel=(240.25,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,14 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3766.65,-201.48,10993.7) CenPtnInPanel=(268.25,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:285,15 Mod[Col,NInCol]:11,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3780.22,-201.409,10969.2) CenPtnInPanel=(240.25,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 286 { PMT Rich2 R-C } Module(Col:NInCol)=11:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775,-247.372,10983.8) CenPtnInPanel=(254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775,-303.372,10983.6) CenPtnInPanel=(254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3775,-359.371,10983.5) CenPtnInPanel=(254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3774.99,-415.371,10983.3) CenPtnInPanel=(254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,00 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.43,-243.445,10981.3) CenPtnInPanel=(254.25,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,01 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.43,-299.444,10981.2) CenPtnInPanel=(254.25,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,02 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.43,-355.444,10981) CenPtnInPanel=(254.25,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:286,03 Mod[Col,NInCol]:11,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.42,-411.444,10980.8) CenPtnInPanel=(254.25,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 287 { PMT Rich2 R-C } Module(Col:NInCol)=11:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3774.99,-471.371,10983.1) CenPtnInPanel=(254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,01 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3774.99,-527.371,10983) CenPtnInPanel=(254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3774.99,-583.37,10982.8) CenPtnInPanel=(254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,03 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3774.99,-639.37,10982.6) CenPtnInPanel=(254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,00 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.42,-467.444,10980.7) CenPtnInPanel=(254.25,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,01 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.42,-523.443,10980.5) CenPtnInPanel=(254.25,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,02 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.42,-579.443,10980.3) CenPtnInPanel=(254.25,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:287,03 Mod[Col,NInCol]:11,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3773.42,-635.443,10980.2) CenPtnInPanel=(254.25,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 288 { PMT Rich2 R-C } Module(Col:NInCol)=12:0
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,00 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.65,648.48,11035.8) CenPtnInPanel=(310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.64,592.48,11035.7) CenPtnInPanel=(310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.64,536.481,11035.5) CenPtnInPanel=(310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.64,480.481,11035.4) CenPtnInPanel=(310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,00 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.08,652.407,11033.4) CenPtnInPanel=(310.75,644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,01 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.07,596.408,11033.2) CenPtnInPanel=(310.75,588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,02 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.07,540.408,11033) CenPtnInPanel=(310.75,532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:288,03 Mod[Col,NInCol]:12,00 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.07,484.408,11032.9) CenPtnInPanel=(310.75,476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 289 { PMT Rich2 R-C } Module(Col:NInCol)=12:1
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.64,424.481,11035.2) CenPtnInPanel=(310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.64,368.481,11035) CenPtnInPanel=(310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,02 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.64,312.481,11034.9) CenPtnInPanel=(310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.63,256.482,11034.7) CenPtnInPanel=(310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,00 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.07,428.408,11032.7) CenPtnInPanel=(310.75,420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,01 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.07,372.409,11032.6) CenPtnInPanel=(310.75,364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,02 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.07,316.409,11032.4) CenPtnInPanel=(310.75,308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:289,03 Mod[Col,NInCol]:12,01 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.06,260.409,11032.2) CenPtnInPanel=(310.75,252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 290 { PMT Rich2 R-C } Module(Col:NInCol)=12:2
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,00 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.85,214.446,11046.8) CenPtnInPanel=(324.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,01 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.42,214.518,11022.3) CenPtnInPanel=(296.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,02 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.85,186.446,11046.7) CenPtnInPanel=(324.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.42,186.518,11022.2) CenPtnInPanel=(296.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,04 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.85,158.446,11046.7) CenPtnInPanel=(324.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,05 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.42,158.518,11022.2) CenPtnInPanel=(296.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,06 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.85,130.447,11046.6) CenPtnInPanel=(324.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,130.518,11022.1) CenPtnInPanel=(296.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,08 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,102.447,11046.5) CenPtnInPanel=(324.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,102.518,11022) CenPtnInPanel=(296.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,10 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,74.4468,11046.4) CenPtnInPanel=(324.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,11 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,74.5183,11021.9) CenPtnInPanel=(296.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,46.4469,11046.3) CenPtnInPanel=(324.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,46.5184,11021.8) CenPtnInPanel=(296.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,18.447,11046.2) CenPtnInPanel=(324.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,15 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,18.5185,11021.7) CenPtnInPanel=(296.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,00 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.28,218.373,11044.3) CenPtnInPanel=(324.75,210,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,01 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.85,218.445,11019.9) CenPtnInPanel=(296.75,210,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,02 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.28,190.374,11044.3) CenPtnInPanel=(324.75,182,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,03 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.85,190.445,11019.8) CenPtnInPanel=(296.75,182,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,04 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.28,162.374,11044.2) CenPtnInPanel=(324.75,154,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,05 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.85,162.445,11019.7) CenPtnInPanel=(296.75,154,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,06 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.28,134.374,11044.1) CenPtnInPanel=(324.75,126,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,07 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,134.445,11019.6) CenPtnInPanel=(296.75,126,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,08 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.28,106.374,11044) CenPtnInPanel=(324.75,98,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,09 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,106.445,11019.5) CenPtnInPanel=(296.75,98,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,10 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,78.3741,11043.9) CenPtnInPanel=(324.75,70,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,11 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,78.4456,11019.4) CenPtnInPanel=(296.75,70,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,12 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,50.3742,11043.9) CenPtnInPanel=(324.75,42,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,13 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,50.4457,11019.4) CenPtnInPanel=(296.75,42,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,14 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,22.3743,11043.8) CenPtnInPanel=(324.75,14,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:290,15 Mod[Col,NInCol]:12,02 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,22.4458,11019.3) CenPtnInPanel=(296.75,14,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 291 { PMT Rich2 R-C } Module(Col:NInCol)=12:3
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,00 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-9.55286,11046.2) CenPtnInPanel=(324.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,-9.48139,11021.7) CenPtnInPanel=(296.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-37.5527,11046.1) CenPtnInPanel=(324.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,-37.4813,11021.6) CenPtnInPanel=(296.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,04 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-65.5526,11046) CenPtnInPanel=(324.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,05 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,-65.4811,11021.5) CenPtnInPanel=(296.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-93.5525,11045.9) CenPtnInPanel=(324.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,-93.481,11021.4) CenPtnInPanel=(296.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-121.552,11045.8) CenPtnInPanel=(324.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,-121.481,11021.3) CenPtnInPanel=(296.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-149.552,11045.7) CenPtnInPanel=(324.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,-149.481,11021.3) CenPtnInPanel=(296.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-177.552,11045.7) CenPtnInPanel=(324.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.41,-177.481,11021.2) CenPtnInPanel=(296.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,14 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3740.84,-205.552,11045.6) CenPtnInPanel=(324.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3754.4,-205.481,11021.1) CenPtnInPanel=(296.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,00 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-5.62555,11043.7) CenPtnInPanel=(324.75,-14,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,01 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,-5.55408,11019.2) CenPtnInPanel=(296.75,-14,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,02 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-33.6254,11043.6) CenPtnInPanel=(324.75,-42,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,03 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:0,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,-33.554,11019.1) CenPtnInPanel=(296.75,-42,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,04 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-61.6253,11043.5) CenPtnInPanel=(324.75,-70,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,05 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,-61.5538,11019) CenPtnInPanel=(296.75,-70,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,06 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-89.6252,11043.4) CenPtnInPanel=(324.75,-98,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,07 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:1,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,-89.5537,11019) CenPtnInPanel=(296.75,-98,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,08 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-117.625,11043.4) CenPtnInPanel=(324.75,-126,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,09 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,-117.554,11018.9) CenPtnInPanel=(296.75,-126,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,10 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-145.625,11043.3) CenPtnInPanel=(324.75,-154,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,11 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:2,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,-145.553,11018.8) CenPtnInPanel=(296.75,-154,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,12 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,0 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-173.625,11043.2) CenPtnInPanel=(324.75,-182,-30) (x,y,z)RotnInGlo=(0.002935,2.07671,3.13632) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,13 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,1 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.84,-173.553,11018.7) CenPtnInPanel=(296.75,-182,-30) (x,y,z)RotnInGlo=(1.56788,1.56058,1.57077) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,14 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,2 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3739.27,-201.625,11043.1) CenPtnInPanel=(324.75,-210,-30) (x,y,z)RotnInGlo=(1.57371,1.58102,1.57083) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:r Rich2 R-C PD[Mod,NInMod]:291,15 Mod[Col,NInCol]:12,03 PD[EC,NInEC]:3,3 } EffPixArea=8.26562 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3752.83,-201.553,11018.6) CenPtnInPanel=(296.75,-210,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(11.5,11.5) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 292 { PMT Rich2 R-C } Module(Col:NInCol)=12:4
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.62,-247.516,11033.2) CenPtnInPanel=(310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.62,-303.516,11033) CenPtnInPanel=(310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.62,-359.516,11032.9) CenPtnInPanel=(310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.61,-415.515,11032.7) CenPtnInPanel=(310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,00 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.05,-243.589,11030.7) CenPtnInPanel=(310.75,-252,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,01 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.05,-299.589,11030.6) CenPtnInPanel=(310.75,-308,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,02 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.05,-355.588,11030.4) CenPtnInPanel=(310.75,-364,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:292,03 Mod[Col,NInCol]:12,04 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-411.588,11030.3) CenPtnInPanel=(310.75,-420,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
 TestDerivedDets     DEBUG   -> PD Module 293 { PMT Rich2 R-C } Module(Col:NInCol)=12:5
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,00 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.61,-471.515,11032.6) CenPtnInPanel=(310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,01 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.61,-527.515,11032.4) CenPtnInPanel=(310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,02 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.61,-583.515,11032.2) CenPtnInPanel=(310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
-TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,03 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=0.62 CenPtnInGlo=(-3747.61,-639.514,11032.1) CenPtnInPanel=(310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,00 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:0,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-467.588,11030.1) CenPtnInPanel=(310.75,-476,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,01 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:1,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-523.588,11029.9) CenPtnInPanel=(310.75,-532,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,02 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:2,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-579.587,11029.8) CenPtnInPanel=(310.75,-588,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG    -> [ PD { PMT:h Rich2 R-C PD[Mod,NInMod]:293,03 Mod[Col,NInCol]:12,05 PD[EC,NInEC]:3,0 } EffPixArea=36 EffNumPixs=64 NumPixColFrac=3.5 NumPixRowFrac=3.5 LocalZcoord=7 CenPtnInGlo=(-3746.04,-635.587,11029.6) CenPtnInPanel=(310.75,-644,-30) (x,y,z)RotnInGlo=(3.13866,1.06488,0.00526769) (x,y)Acpt=+-(24.25,24.25) QE={ NumBins=368 Min(X,Y)=(1.61445e-06,0) Median(X,Y)=(4.26037e-06,30.501) Max(X,Y)=(6.9063e-06,0) } ]
+TestDerivedDets     DEBUG  { BeamPipe | StartZ=9447.35 EndZ=11881.4 StartR=154 EndR=187 }
 TestDerivedDets     DEBUG  Parameter<double>         'Rich2GasQuartzWindowThickness' = 6
 TestDerivedDets     DEBUG  Parameter<double>         'Rh2PDPanelSizeX' = 800
 TestDerivedDets     DEBUG  Parameter<double>         'Rh2PDPanelSizeY' = 1478.75
 TestDerivedDets     DEBUG ]
-TestDerivedDets     DEBUG Rich::Detector::Rich1Gas [ Rich1 Rich1Gas refIndex={ NumBins=20 Min(X,Y)=(1.6e-06,1.00135) Median(X,Y)=(4.05e-06,1.00141) Max(X,Y)=(6.5e-06,1.00152) } ]
-TestDerivedDets     DEBUG Rich::Detector::Rich2Gas [ Rich2 Rich2Gas refIndex={ NumBins=20 Min(X,Y)=(1.6e-06,1.00045) Median(X,Y)=(4.05e-06,1.00046) Max(X,Y)=(6.5e-06,1.0005) } ]
+TestDerivedDets     DEBUG Rich::Detector::Rich1Gas [ Rich1 Rich1Gas refIndex={ NumBins=300 Min(X,Y)=(1.5e-06,1.0013) Median(X,Y)=(4.49e-06,1.00137) Max(X,Y)=(7.48e-06,1.00153) } ]
+TestDerivedDets     DEBUG Rich::Detector::Rich2Gas [ Rich2 Rich2Gas refIndex={ NumBins=300 Min(X,Y)=(1.5e-06,1.00043) Median(X,Y)=(4.49e-06,1.00045) Max(X,Y)=(7.48e-06,1.0005) } ]
 TestConds           DEBUG NumberOfLinks=792
 ApplicationMgr       INFO Application Manager Stopped successfully
 TestDerivedDets     DEBUG Finalize
 TestConds           DEBUG Finalize
 EventLoopMgr         INFO Histograms converted successfully according to request.
-ToolSvc              INFO Removing all tools created by ToolSvc
 ApplicationMgr       INFO Application Manager Finalized successfully
 ApplicationMgr       INFO Application Manager Terminated successfully
diff --git a/Rich/RichDetectors/tests/refs/radiator-volume-intersections.ref b/Rich/RichDetectors/tests/refs/radiator-volume-intersections.ref
new file mode 100644
index 0000000000000000000000000000000000000000..c7e78d05435d5ede03ac4821349d5fdd4d059a34
--- /dev/null
+++ b/Rich/RichDetectors/tests/refs/radiator-volume-intersections.ref
@@ -0,0 +1,77 @@
+ApplicationMgr    SUCCESS
+====================================================================================================================================
+====================================================================================================================================
+ApplicationMgr       INFO Application Manager Configured successfully
+DetectorPersist...   INFO Added successfully Conversion service:XmlCnvSvc
+DetectorDataSvc   SUCCESS Detector description database: git:/lhcb.xml
+All                  INFO Member list: Gaudi::Hive::FetchDataFromFile/FetchDSTData, LHCb::UnpackRawEvent/UnpackODIN, createODIN/ODINFutureDecode, Rich::Future::TestRadiatorIntersections/TestRadIntersects
+RndmGenSvc.Engine    INFO Generator engine type:CLHEP::RanluxEngine
+RndmGenSvc.Engine    INFO Current Seed:1234567 Luxury:3
+RndmGenSvc           INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine>
+EventClockSvc.F...   INFO Event times generated from 0 with steps of 0
+TestRadIntersects   DEBUG Rich1Gas::addConditionDerivation : Key=Rich1DerivedRadiator
+TestRadIntersects   DEBUG Rich2Gas::addConditionDerivation : Key=Rich2DerivedRadiator
+TestRadIntersects   DEBUG input handles: 1
+TestRadIntersects   DEBUG output handles: 0
+TestRadIntersects   DEBUG Data Deps for TestRadIntersects
+  + INPUT  '/Event/IOVLock'
+EventPersistenc...   INFO Added successfully Conversion service:RootCnvSvc
+ApplicationMgr       INFO Application Manager Initialized successfully
+ApplicationMgr       INFO Application Manager Started successfully
+EventSelector     SUCCESS Reading Event record 1. Record number within stream 1: 1
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (4.8339,-29.1795,990) (0.00492716,-0.0340466,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (4.73536,-28.4986,970)
+TestRadIntersects    INFO  -> exit       = (11.0914,-72.4187,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-98.3335,17.5605,990) (-0.160749,0.0358936,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (-95.1185,16.8426,970)
+TestRadIntersects    INFO  -> exit       = (-302.485,63.1454,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (2.9279,-9.9783,990) (0.00322774,-0.0103524,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (2.86335,-9.77125,970)
+TestRadIntersects    INFO  -> exit       = (6.72049,-22.1424,2165)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-40.8416,14.2797,990) (-0.0587384,0.00969204,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (-39.6668,14.0859,970)
+TestRadIntersects    INFO  -> exit       = (-115.439,26.5886,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (197.9,-182.212,990) (0.204637,-0.188133,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (193.807,-178.449,970)
+TestRadIntersects    INFO  -> exit       = (457.789,-421.141,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-211.711,-52.4182,9450) (-0.0398052,-0.00558938,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (-213.591,-52.6822,9497.23)
+TestRadIntersects    INFO  -> exit       = (-306.416,-65.7165,11829.2)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (877.05,91.0958,9500) (0.285066,0.00889497,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (876.343,91.0737,9497.52)
+TestRadIntersects    INFO  -> exit       = (1541.11,111.817,11829.5)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (2933.82,-1818.83,9450) (0.44724,-0.189439,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (2952.44,-1826.72,9491.64)
+TestRadIntersects    INFO  -> exit       = (3097.93,-1888.34,9816.94)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (1567.06,-230.439,9500) (0.280539,-0.0236485,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (1566.08,-230.356,9496.49)
+TestRadIntersects    INFO  -> exit       = (2220.23,-285.499,11828.3)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-671.092,-96.1549,9450) (-0.133261,-0.0101545,1)
+TestRadIntersects    INFO  -> intersects = SUCCESS
+TestRadIntersects    INFO  -> entry      = (-677.376,-96.6337,9497.16)
+TestRadIntersects    INFO  -> exit       = (-988.138,-120.314,11829.1)
+ApplicationMgr       INFO Application Manager Stopped successfully
+TestRadIntersects   DEBUG Finalize
+EventLoopMgr         INFO Histograms converted successfully according to request.
+ToolSvc              INFO Removing all tools created by ToolSvc
+ApplicationMgr       INFO Application Manager Finalized successfully
+ApplicationMgr       INFO Application Manager Terminated successfully
diff --git a/Rich/RichDetectors/tests/refs/radiator-volume-intersections.ref.dd4hep b/Rich/RichDetectors/tests/refs/radiator-volume-intersections.ref.dd4hep
new file mode 100644
index 0000000000000000000000000000000000000000..8299f7eaf35b3e9f576016f0d09f9a7e0c5240c0
--- /dev/null
+++ b/Rich/RichDetectors/tests/refs/radiator-volume-intersections.ref.dd4hep
@@ -0,0 +1,76 @@
+ApplicationMgr    SUCCESS
+====================================================================================================================================
+====================================================================================================================================
+ApplicationMgr       INFO Application Manager Configured successfully
+DetectorPersist...   INFO Added successfully Conversion service:XmlCnvSvc
+DetectorDataSvc   SUCCESS Detector description database: git:/lhcb.xml
+All                  INFO Member list: Gaudi::Hive::FetchDataFromFile/FetchDSTData, LHCb::UnpackRawEvent/UnpackODIN, createODIN/ODINFutureDecode, LHCb::Det::LbDD4hep::IOVProducer/ReserveIOVDD4hep, Rich::Future::TestRadiatorIntersections/TestRadIntersects
+RndmGenSvc.Engine    INFO Generator engine type:CLHEP::RanluxEngine
+RndmGenSvc.Engine    INFO Current Seed:1234567 Luxury:3
+RndmGenSvc           INFO Using Random engine:HepRndm::Engine<CLHEP::RanluxEngine>
+TestRadIntersects   DEBUG Rich1Gas::addConditionDerivation : Key=/world/BeforeMagnetRegion/Rich1:DerivedRadiator
+TestRadIntersects   DEBUG Rich2Gas::addConditionDerivation : Key=/world/AfterMagnetRegion/Rich2:DerivedRadiator
+TestRadIntersects   DEBUG input handles: 1
+TestRadIntersects   DEBUG output handles: 0
+TestRadIntersects   DEBUG Data Deps for TestRadIntersects
+  + INPUT  '/Event/IOVLockDD4hep'
+EventPersistenc...   INFO Added successfully Conversion service:RootCnvSvc
+ApplicationMgr       INFO Application Manager Initialized successfully
+ApplicationMgr       INFO Application Manager Started successfully
+EventSelector     SUCCESS Reading Event record 1. Record number within stream 1: 1
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (4.8339,-29.1795,990) (0.00492716,-0.0340466,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (4.8339,-29.1795,990)
+TestRadIntersects    INFO  -> exit       = (11.0914,-72.4187,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-98.3335,17.5605,990) (-0.160749,0.0358936,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (-98.3335,17.5605,990)
+TestRadIntersects    INFO  -> exit       = (-302.485,63.1454,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (2.9279,-9.9783,990) (0.00322774,-0.0103524,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (2.9279,-9.9783,990)
+TestRadIntersects    INFO  -> exit       = (7.02713,-23.1258,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-40.8416,14.2797,990) (-0.0587384,0.00969204,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (-40.8416,14.2797,990)
+TestRadIntersects    INFO  -> exit       = (-115.439,26.5886,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (197.9,-182.212,990) (0.204637,-0.188133,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (197.9,-182.212,990)
+TestRadIntersects    INFO  -> exit       = (457.789,-421.141,2260)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-211.711,-52.4182,9450) (-0.0398052,-0.00558938,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (-211.606,-52.4034,9447.35)
+TestRadIntersects    INFO  -> exit       = (-308.491,-66.0079,11881.4)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (877.05,91.0958,9500) (0.285066,0.00889497,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (862.041,90.6275,9447.35)
+TestRadIntersects    INFO  -> exit       = (1555.89,112.278,11881.4)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (2933.82,-1818.83,9450) (0.44724,-0.189439,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (2932.63,-1818.33,9447.35)
+TestRadIntersects    INFO  -> exit       = (4021.22,-2279.42,11881.4)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (1567.06,-230.439,9500) (0.280539,-0.0236485,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (1552.29,-229.194,9447.35)
+TestRadIntersects    INFO  -> exit       = (2235.12,-286.754,11881.4)
+TestRadIntersects    INFO
+TestRadIntersects    INFO Trajectory (-671.092,-96.1549,9450) (-0.133261,-0.0101545,1)
+TestRadIntersects    INFO  -> intersects = 1
+TestRadIntersects    INFO  -> entry      = (-670.739,-96.128,9447.35)
+TestRadIntersects    INFO  -> exit       = (-995.096,-120.844,11881.4)
+ApplicationMgr       INFO Application Manager Stopped successfully
+TestRadIntersects   DEBUG Finalize
+EventLoopMgr         INFO Histograms converted successfully according to request.
+ToolSvc              INFO Removing all tools created by ToolSvc
+ApplicationMgr       INFO Application Manager Finalized successfully
+ApplicationMgr       INFO Application Manager Terminated successfully
diff --git a/Rich/RichFutureMCUtils/src/lib/RichSmartIDMCUtils.cpp b/Rich/RichFutureMCUtils/src/lib/RichSmartIDMCUtils.cpp
index da4fcd9ad9725a9d5fb89b5e0ad1c84e4cc02e83..dc63d23af2de11bb8cf36bdbe8970de2b65901a6 100644
--- a/Rich/RichFutureMCUtils/src/lib/RichSmartIDMCUtils.cpp
+++ b/Rich/RichFutureMCUtils/src/lib/RichSmartIDMCUtils.cpp
@@ -23,7 +23,20 @@ SmartIDUtils::SmartIDUtils( const LHCb::MCRichDigitSummarys& histories ) {
   // to create the map and save it in the TES, to avoid it being created
   // multiple times each event...
   for ( const auto* sum : histories ) {
-    if ( sum ) { m_sumMap[sum->richSmartID()].push_back( sum ); }
+    if ( sum ) {
+      auto id = sum->richSmartID();
+#ifdef USE_DD4HEP
+      // If built for DD4HEP apply correction to PMT module numbers to account
+      // for different numbering scheme between DD4HEP and DetDesc.
+      // This is only required when processing DetDesc MC samples with dd4hep
+      // geometry and should be removed once dd4hep MC samples are available.
+      const Rich::DetectorArray<Rich::PanelArray<LHCb::RichSmartID::DataType>> mod_corr{{{0, 0}, {6, 18}}};
+      const auto pdMod      = id.pdMod() + mod_corr[id.rich()][id.panel()];
+      const auto pdNumInMod = id.pdNumInMod();
+      id.setPD( pdMod, pdNumInMod );
+#endif
+      m_sumMap[id].push_back( sum );
+    }
   }
 }
 
diff --git a/Rich/RichFutureUtils/src/RichRayTracing.cpp b/Rich/RichFutureUtils/src/RichRayTracing.cpp
index 841b79221da0f847dcb41610e1a0b9a71d372aed..6bc820a11eb5ef748ae54315846532826049f2a8 100644
--- a/Rich/RichFutureUtils/src/RichRayTracing.cpp
+++ b/Rich/RichFutureUtils/src/RichRayTracing.cpp
@@ -173,11 +173,11 @@ RayTracing::traceToDetector( SIMD::STDVector<SIMDPointVect>& startPointsDirs, //
 
     // test for beam pipe intersections ?
     if ( mode.beamPipeIntersects() && any_of( mask ) ) {
-      const auto beam_mask = m_rich[rich]->beampipe()->testForIntersection( start_point, sphMir, mask );
-      if ( any_of( beam_mask ) ) {
+      mask &= m_rich[rich]->beampipe().testForIntersection( start_point, sphMir );
+      if ( any_of( mask ) ) {
         // set flag to outside panel...
         // CRJ : Do we need a special result flag ?
-        result.result( LHCb::SIMD::simd_cast<Result::Results::mask_type>( beam_mask ) ) =
+        result.result( LHCb::SIMD::simd_cast<Result::Results::mask_type>( mask ) ) =
             Result::Results( (int)LHCb::RichTraceMode::RayTraceResult::OutsidePDPanel );
       }
     }
@@ -315,11 +315,11 @@ RayTracing::traceToDetector( const Gaudi::XYZPoint&       startPoint, //
 
     // test for beam pipe intersections ?
     if ( mode.beamPipeIntersects() && any_of( mask ) ) {
-      const auto beam_mask = m_rich[rich]->beampipe()->testForIntersection( simdStartPoint, sphMir, mask );
-      if ( any_of( beam_mask ) ) {
+      mask &= m_rich[rich]->beampipe().testForIntersection( simdStartPoint, sphMir );
+      if ( any_of( mask ) ) {
         // set flag to outside panel...
         // CRJ : Do we need a special result flag ?
-        result.result( LHCb::SIMD::simd_cast<Result::Results::mask_type>( beam_mask ) ) =
+        result.result( LHCb::SIMD::simd_cast<Result::Results::mask_type>( mask ) ) =
             Result::Results( (int)LHCb::RichTraceMode::RayTraceResult::OutsidePDPanel );
       }
     }
@@ -396,7 +396,7 @@ RayTracing::_traceToDetector( const Rich::DetectorType  rich,       //
     // test for beam pipe intersections ?
     if ( mode.traceWasOK( result ) && mode.beamPipeIntersects() ) {
       // test for intersections between emission point and spherical reflection point
-      if ( m_rich[rich]->beampipe()->testForIntersection( startPoint, photon.sphMirReflectionPoint() ) ) {
+      if ( m_rich[rich]->beampipe().testForIntersection( startPoint, photon.sphMirReflectionPoint() ) ) {
         result = LHCb::RichTraceMode::RayTraceResult::OutsidePDPanel; // CRJ : Do we need a special
                                                                       // result flag ?
       }